{
  "app": {
    "name": "GitCoach",
    "tagline": "Your Interactive Git Assistant",
    "version": "v{{version}}",
    "welcome": "Welcome to GitCoach!",
    "goodbye": "Goodbye! Happy coding!"
  },
  "menu": {
    "title": "Main Menu",
    "status": "Status",
    "statusDesc": "View current changes",
    "add": "Add",
    "addDesc": "Stage files for commit",
    "commit": "Commit",
    "commitDesc": "Save your changes",
    "push": "Push",
    "pushDesc": "Upload to remote",
    "pull": "Pull",
    "pullDesc": "Download changes",
    "branch": "Branch",
    "branchDesc": "Manage branches",
    "undo": "Undo",
    "undoDesc": "Undo actions",
    "history": "History",
    "historyDesc": "View commit history",
    "stash": "Stash",
    "stashDesc": "Save work temporarily",
    "config": "Settings",
    "configDesc": "Configure GitCoach",
    "stats": "Statistics",
    "statsDesc": "View your progress",
    "help": "Help",
    "helpDesc": "Get assistance",
    "quit": "Quit",
    "quitDesc": "Exit GitCoach",
    "back": "Back",
    "backDesc": "Return to previous menu",

    "statusBeginner": "Status - See current state of your files",
    "statusIntermediate": "Status - View changes",
    "statusExpert": "git status",

    "addBeginner": "Add - Prepare files for saving",
    "addIntermediate": "Add - Stage files",
    "addExpert": "git add",

    "commitBeginner": "Commit - Save your changes with a message",
    "commitIntermediate": "Commit - Save changes",
    "commitExpert": "git commit",

    "pushBeginner": "Push - Send changes to remote server",
    "pushIntermediate": "Push - Send to remote",
    "pushExpert": "git push",

    "pullBeginner": "Pull - Download changes from server",
    "pullIntermediate": "Pull - Download changes",
    "pullExpert": "git pull",

    "branchBeginner": "Branch - Work on separate versions",
    "branchIntermediate": "Branch - Manage branches",
    "branchExpert": "git branch",

    "remote": "Remote",
    "remoteDesc": "Configure remote repository",
    "remoteBeginner": "Remote - Configure remote repository",
    "remoteIntermediate": "Remote - Configure remote",
    "remoteExpert": "git remote",

    "undoBeginner": "Undo - Reverse actions safely",
    "undoIntermediate": "Undo - Reverse actions",
    "undoExpert": "git reset/restore",

    "historyBeginner": "History - See past commits",
    "historyIntermediate": "History - View commits",
    "historyExpert": "git log",

    "stashBeginner": "Stash - Temporarily save work",
    "stashIntermediate": "Stash - Save temporarily",
    "stashExpert": "git stash",

    "configBeginner": "Settings - Configure GitCoach",
    "configIntermediate": "Settings - Configure",
    "configExpert": "config",

    "statsBeginner": "Statistics - View your progress",
    "statsIntermediate": "Statistics - View stats",
    "statsExpert": "stats",

    "helpBeginner": "Help - Get assistance",
    "helpIntermediate": "Help - Get help",
    "helpExpert": "help",

    "quitBeginner": "Quit - Exit GitCoach",
    "quitIntermediate": "Quit - Exit",
    "quitExpert": "quit"
  },
  "levels": {
    "beginner": "Beginner",
    "beginnerDesc": "Verbose explanations and step-by-step guidance",
    "intermediate": "Intermediate",
    "intermediateDesc": "Helpful tips with moderate explanations",
    "expert": "Expert",
    "expertDesc": "Minimal output, only warnings and errors"
  },
  "themes": {
    "colored": "Colored",
    "coloredDesc": "Colorful output with syntax highlighting",
    "monochrome": "Monochrome",
    "monochromeDesc": "Plain text output without colors"
  },
  "commands": {
    "status": {
      "title": "Repository Status",
      "clean": "Working tree is clean. Nothing to commit.",
      "staged": "Staged changes (ready to commit):",
      "unstaged": "Unstaged changes:",
      "untracked": "Untracked files:",
      "branch": "On branch: {{branch}}",
      "ahead": "Your branch is ahead of '{{remote}}' by {{count}} commit(s).",
      "behind": "Your branch is behind '{{remote}}' by {{count}} commit(s).",
      "diverged": "Your branch and '{{remote}}' have diverged."
    },
    "add": {
      "title": "Stage Files",
      "selectFiles": "Select files to stage:",
      "noFiles": "No files to stage.",
      "allFiles": "Stage all files",
      "success": "Successfully staged {{count}} file(s).",
      "staged": "Staged: {{file}}",
      "filesToStage": "{{count}} file(s) to stage:",
      "addAll": "git add -A",
      "addPatch": "git add -p",
      "staging": "Staging {{count}} file(s)..."
    },
    "commit": {
      "title": "Commit Changes",
      "noStaged": "No staged changes to commit. Use 'Add' first.",
      "enterMessage": "Enter commit message:",
      "generateAI": "Generate commit message with AI",
      "generating": "Generating commit message...",
      "suggested": "Suggested message: {{message}}",
      "useGenerated": "Use this message?",
      "editMessage": "Edit message",
      "success": "Successfully committed: {{message}}",
      "cancelled": "Commit cancelled.",
      "emptyToCancel": "(Leave empty to cancel)",
      "messageTooShort": "Commit message must be at least 3 characters",
      "copilotUnavailable": "GitHub Copilot CLI not available - enter message manually",
      "aiGenerationFailed": "AI generation failed - enter message manually",
      "enterManually": "Enter your commit message:",
      "conflictsDetected": "Merge conflicts detected! Resolve them before committing.",
      "conflictedFiles": "Conflicted files:",
      "stagedCount": "{{count}} file(s) staged:",
      "committing": "Committing changes...",
      "commitAI": "git commit (AI)",
      "commitManual": "git commit -m",
      "convertToConventional": "Convert to conventional commit format?",
      "keepAsIs": "No, keep as is",
      "typeFeature": "feat: (new feature)",
      "typeFix": "fix: (bug fix)",
      "typeDocs": "docs: (documentation)",
      "typeRefactor": "refactor: (code refactor)",
      "typeChore": "chore: (maintenance)"
    },
    "push": {
      "title": "Push Changes",
      "confirm": "Push {{count}} commit(s) to {{remote}}/{{branch}}?",
      "nothingToPush": "Nothing to push. Your branch is up to date.",
      "pushing": "Pushing to {{remote}}...",
      "success": "Successfully pushed to {{remote}}/{{branch}}.",
      "failed": "Push failed: {{error}}",
      "forcePush": "Force push",
      "forcePushWarning": "Force push will overwrite remote history. Are you sure?",
      "remoteBehind": "Remote has {{count}} new commit(s). You should pull first!",
      "behindAction": "What would you like to do?",
      "pullThenPush": "Pull first, then push",
      "noUpstream": "Branch '{{branch}}' has no upstream. {{count}} commit(s) will be pushed.",
      "firstPush": "First Push",
      "noRemoteConfigured": "No remote repository configured.",
      "addRemoteQuestion": "Would you like to add a remote origin to push to?",
      "forceConfirmFinal": "Are you absolutely sure? This cannot be undone.",
      "forcePushing": "Force pushing to {{remote}}...",
      "commitsToDownload": "{{count}} commit(s) to download from {{remote}}/{{branch}}"
    },
    "pull": {
      "title": "Pull Changes",
      "pulling": "Pulling from {{remote}}...",
      "success": "Successfully pulled {{count}} commit(s).",
      "upToDate": "Already up to date.",
      "conflicts": "Merge conflicts detected. Please resolve them manually.",
      "failed": "Pull failed: {{error}}",
      "noRemoteConfigured": "No remote repository configured. You need to add a remote to pull from.",
      "selectRemote": "Select the remote to pull from:",
      "noUpstream": "Branch '{{branch}}' has no upstream tracking branch configured.",
      "setUpstreamQuestion": "Set upstream to {{remote}}/{{branch}}?",
      "diverged": "Your branch and the remote have diverged.",
      "divergedExplain": "You have {{ahead}} local commit(s) and {{behind}} remote commit(s) to integrate.",
      "mergeOrRebase": "How would you like to integrate the remote changes?",
      "optionMerge": "Merge (creates a merge commit)",
      "optionRebase": "Rebase (replay your commits on top)",
      "conflictsDetected": "{{count}} file(s) have merge conflicts that need to be resolved.",
      "conflictedFiles": "Files with conflicts:",
      "resolveInstructions": "To resolve conflicts:\n1. Open each conflicted file in your editor\n2. Look for conflict markers: <<<<<<< (your changes), ======= (separator), >>>>>>> (remote changes)\n3. Choose which version to keep (or combine both), then delete ALL markers\n4. Save the file\n5. Run 'git add' on each resolved file\n6. Run 'git commit' to finalize the merge",
      "resolveOptions": "What would you like to do?",
      "abortMerge": "Abort merge and restore previous state",
      "abortSuccess": "Merge aborted successfully. Your branch is back to its previous state.",
      "continueMerge": "I'll resolve the conflicts manually",
      "mergeInProgress": "A merge is currently in progress.",
      "rebaseInProgress": "A rebase is currently in progress.",
      "uncommittedWarning": "You have uncommitted changes. They may be lost during pull.",
      "uncommittedOptions": "What would you like to do with your uncommitted changes?",
      "optionCommit": "Commit changes first",
      "optionStash": "Stash changes temporarily",
      "optionContinue": "Continue anyway (risky)",
      "guidedResolution": "Resolve conflicts step by step (guided)"
    },
    "conflicts": {
      "title": "Conflict Resolution",
      "fileProgress": "File {{current}}/{{total}}:",
      "localVersion": "Your version (local):",
      "remoteVersion": "Remote version:",
      "chooseResolution": "What do you want to keep?",
      "keepLocal": "Keep my version (local)",
      "keepRemote": "Keep the remote version",
      "keepBoth": "Keep both (combine)",
      "editManually": "Edit manually in my editor",
    "askCopilot": "Ask Copilot AI",
    "acceptSuggestion": "Accept this suggestion?",
    "copilotSuggests": "Copilot suggests",
      "fileResolved": "{{file}} resolved ({{current}}/{{total}})",
      "allResolved": "All {{count}} conflict(s) resolved!",
      "finalizeCommit": "Finalize the merge with git commit?",
      "markersRemaining": "Conflict markers still found in {{file}}. Please remove all <<<<<<< ======= >>>>>>> markers.",
      "pressEnterWhenDone": "Press Enter when you are done editing...",
      "editInstructions": "Open {{file}} in your editor, resolve the conflicts, save, then come back here."
    },
    "branch": {
      "title": "Branch Management",
      "current": "Current branch: {{branch}}",
      "list": "Available branches:",
      "create": "Create new branch",
      "switch": "Switch branch",
      "delete": "Delete branch",
      "merge": "Merge a branch",
      "enterName": "Enter branch name:",
      "createSuccess": "Created branch: {{branch}}",
      "switchSuccess": "Switched to branch: {{branch}}",
      "deleteSuccess": "Deleted branch: {{branch}}",
      "deleteConfirm": "Delete branch '{{branch}}'? This cannot be undone.",
      "cannotDeleteCurrent": "Cannot delete the current branch.",
      "noOtherBranches": "No other branches available.",
      "mergeExplain": "Merge combines changes from another branch into your current branch.\nYou are on '{{branch}}'. Which branch do you want to merge here?",
      "selectToMerge": "Select branch to merge:",
      "willExecute": "Will execute:",
      "mergeConfirm": "Merge branch '{{branch}}'? Continue?",
      "merging": "Merging {{branch}}...",
      "mergeSuccess": "Branch '{{branch}}' merged successfully!",
      "mergeConflicts": "Merge conflicts detected! Resolve them before continuing.",
      "conflictedFiles": "Conflicted files:",
      "invalidName": "Invalid branch name",
      "creating": "Creating branch {{branch}}...",
      "switching": "Switching to {{branch}}...",
      "deleting": "Deleting branch {{branch}}...",
      "noBranchesAvailable": "No other branches available"
    },
    "remote": {
      "title": "Remote Management",
      "selectAction": "What would you like to do?",
      "viewCurrent": "View current remote",
      "addOrigin": "Add remote origin",
      "changeUrl": "Change remote URL",
      "removeRemote": "Remove remote",
      "currentRemote": "Remote origin: {{url}}",
      "noRemoteConfigured": "No remote configured.",
      "changeRemoteConfirm": "Change the remote origin URL?",
      "remoteRemoved": "Remote 'origin' removed.",
      "confirmRemove": "Remove remote 'origin'? You won't be able to push/pull.",
      "noRemoteToRemove": "No remote configured to remove."
    },
    "undo": {
      "title": "Undo Actions",
      "selectAction": "What would you like to undo?",
      "softReset": "Undo last commit (keep files)",
      "softResetDesc": "Removes commit but keeps your changes staged",
      "hardReset": "Undo last commit (delete all)",
      "hardResetDesc": "Removes commit AND deletes all changes",
      "unstage": "Unstage files",
      "unstageDesc": "Remove files from staging area",
      "restore": "Discard file changes",
      "restoreDesc": "Revert files to last commit",
      "whatItDoes": "What this does:",
      "softResetExplain": "This will undo your last commit but keep all your file changes. You can then edit and commit again.",
      "hardResetWarning": "This will permanently delete your last commit AND all uncommitted changes. This cannot be undone!",
      "unstageExplain": "This will remove selected files from the staging area. Your changes will remain in the working directory.",
      "restoreWarning": "This will permanently discard all changes to selected files. Your work will be lost!",
      "noCommits": "No commits to undo.",
      "lastCommit": "Last commit:",
      "confirmSoftReset": "Undo this commit? (files will be kept)",
      "confirmHardReset": "Are you sure? This will DELETE all changes!",
      "confirmHardReset2": "FINAL WARNING: Type 'yes' to confirm permanent deletion",
      "softResetSuccess": "Commit undone! Your changes are still staged.",
      "hardResetSuccess": "Commit and all changes have been deleted.",
      "filesKept": "Your files are still staged. You can edit and commit again.",
      "noStagedFiles": "No files are currently staged.",
      "stagedFiles": "Staged files:",
      "selectFilesToUnstage": "Select files to unstage:",
      "unstageSuccess": "{{count}} file(s) unstaged successfully.",
      "noModifiedFiles": "No modified files to restore.",
      "modifiedFiles": "Modified files:",
      "selectFilesToRestore": "Select files to restore:",
      "confirmRestore": "Discard changes to {{count}} file(s)? This cannot be undone!",
      "restoreSuccess": "{{count}} file(s) restored to last commit."
    },
    "history": {
      "title": "Commit History",
      "recentCommits": "Recent commits:",
      "noCommits": "No commits yet in this repository.",
      "viewMore": "Load more commits",
      "selectCommit": "Select a commit to view details:",
      "commitDetails": "Commit Details",
      "commitNotFound": "Commit not found.",
      "changedFiles": "Changed files in this commit:",
      "commitLabel": "Commit:",
      "authorLabel": "Author:",
      "dateLabel": "Date:",
      "messageLabel": "Message:",
      "fullDiffHint": "(Use git show {{hash}} for full diff)"
    },
    "stash": {
      "title": "Stash - Save Work Temporarily",
      "selectAction": "What would you like to do?",
      "save": "Save current work",
      "saveDesc": "Stash all uncommitted changes",
      "list": "View stashes",
      "listDesc": "See all saved stashes",
      "apply": "Apply a stash",
      "applyDesc": "Restore changes (keep stash)",
      "pop": "Pop latest stash",
      "popDesc": "Restore and delete latest stash",
      "drop": "Delete a stash",
      "dropDesc": "Permanently remove a stash",
      "whatItDoes": "What this does:",
      "saveExplain": "This will save all your uncommitted changes and clean your working directory. You can restore them later.",
      "applyExplain": "This will restore the selected stash but keep it in the stash list.",
      "popExplain": "This will restore the latest stash and remove it from the list.",
      "dropWarning": "This will permanently delete the selected stash. This cannot be undone!",
      "nothingToStash": "No changes to stash. Your working tree is already clean.",
      "enterMessage": "Enter a description (optional):",
      "saveSuccess": "Changes stashed successfully!",
      "workingTreeClean": "Your working directory is now clean.",
      "noStashes": "No stashes saved.",
      "yourStashes": "Your stashes:",
      "selectStash": "Select a stash to apply:",
      "selectStashToDrop": "Select a stash to delete:",
      "applySuccess": "Stash applied successfully!",
      "stashKept": "The stash is still saved. Use 'pop' to apply and remove.",
      "popSuccess": "Stash applied and removed!",
      "confirmDrop": "Delete this stash? This cannot be undone!",
      "dropSuccess": "Stash deleted."
    }
  },
  "time": {
    "justNow": "just now",
    "minutesAgo": "{{count}} min ago",
    "hoursAgo": "{{count}} hours ago",
    "daysAgo": "{{count}} days ago",
    "weeksAgo": "{{count}} weeks ago",
    "monthsAgo": "{{count}} months ago"
  },
  "warnings": {
    "title": "Warning",
    "dangerous": "dangerous",
    "uncommittedChanges": "You have uncommitted changes that will be lost!",
    "uncommittedChangesAction": "Commit or stash your changes before proceeding.",
    "forcePush": "Force push will overwrite remote history!",
    "forcePushAction": "This action cannot be undone. Make sure you know what you're doing.",
    "wrongBranch": "You are on branch '{{current}}', not '{{expected}}'.",
    "wrongBranchAction": "Switch to the correct branch before proceeding.",
    "detachedHead": "You are in a detached HEAD state!",
    "detachedHeadAction": "Create a branch to save your work.",
    "noRemote": "No remote repository configured.",
    "notGitRepo": "This directory is not a Git repository.",
    "copilotUnavailable": "GitHub Copilot CLI is not available. Some features may be limited.",
    "mergeInProgress": "A merge is currently in progress.",
    "mergeInProgressAction": "Complete the merge with 'git commit' or abort with 'git merge --abort'.",
    "rebaseInProgress": "A rebase is currently in progress.",
    "rebaseInProgressAction": "Continue with 'git rebase --continue' or abort with 'git rebase --abort'.",
    "cherryPickInProgress": "A cherry-pick is currently in progress.",
    "cherryPickInProgressAction": "Continue with 'git cherry-pick --continue' or abort with 'git cherry-pick --abort'.",
    "bisectInProgress": "A bisect session is currently in progress.",
    "bisectInProgressAction": "Continue bisecting or end with 'git bisect reset'."
  },
  "errors": {
    "title": "Error",
    "generic": "An error occurred: {{message}}",
    "gitNotInstalled": "Git is not installed or not in PATH.",
    "networkError": "Network error. Please check your connection.",
    "permissionDenied": "Permission denied. Check your credentials.",
    "invalidInput": "Invalid input: {{message}}",
    "branchExists": "Branch '{{branch}}' already exists.",
    "branchNotFound": "Branch '{{branch}}' not found.",
    "mergeConflict": "Merge conflict in {{file}}.",
    "unknownError": "An unknown error occurred.",
    "authenticationFailed": "Authentication failed. Check your credentials or SSH key. Run 'git config --list' to verify your remote URL.",
    "pushRejected": "Push was rejected. The remote contains commits you don't have locally. Pull first, then push again.",
    "alreadyExists": "The resource already exists. Choose a different name or delete the existing one first.",
    "fileNotFound": "File or path not found. Check the file name and make sure it exists in the repository.",
    "diskFull": "No disk space left. Free up some space and try again.",
    "lockFileExists": "A Git lock file exists (.git/index.lock). Another Git process may be running. If not, delete the lock file manually.",
    "timeout": "The operation timed out. Check your network connection and try again.",
    "rateLimited": "Rate limit reached. Wait a moment and try again.",
    "detachedHead": "You are in a detached HEAD state. Create a branch to save your work before continuing.",
    "explainWithAI": "Would you like an AI explanation of this error?",
    "analyzing": "Analyzing error...",
    "explanation": "Explanation",
    "noExplanation": "Could not explain the error",
    "explainFailed": "Failed to get explanation"
  },
  "success": {
    "title": "Success",
    "operationComplete": "Operation completed successfully.",
    "saved": "Changes saved.",
    "configUpdated": "Configuration updated."
  },
  "setup": {
    "welcome": "Welcome to GitCoach Setup!",
    "selectLanguage": "Select your preferred language:",
    "selectTheme": "Select your preferred theme:",
    "selectLevel": "What is your Git experience level?",
    "complete": "Setup complete! You're ready to use GitCoach.",
    "tip": "Tip: You can change these settings anytime in the config menu.",
    "notGitRepo": "This directory is not a Git repository.",
    "menuTitle": "What would you like to do?",
    "init": "Init",
    "initDesc": "Initialize a new Git repository",
    "clone": "Clone",
    "cloneDesc": "Clone an existing repository",
    "quitDesc": "Exit GitCoach",
    "initInProgress": "Initializing Git repository...",
    "initSuccess": "Git repository initialized successfully!",
    "addRemoteQuestion": "Would you like to add a remote origin?",
    "remoteUrlPrompt": "Enter the remote URL (GitHub, GitLab, etc.):",
    "remoteUrlRequired": "Remote URL is required.",
    "remoteUrlInvalid": "Please enter a valid Git URL.",
    "remoteAdded": "Remote 'origin' added: {{url}}",
    "repoReady": "Your repository is ready! You can now start working.",
    "cloneUrlPrompt": "Enter the repository URL to clone:",
    "cloneUrlRequired": "Repository URL is required.",
    "cloneDirPrompt": "Enter directory name (leave empty for default):",
    "cloneInProgress": "Cloning repository...",
    "cloneSuccess": "Repository cloned successfully to '{{dir}}'!",
    "cloneNextStep": "Run 'cd {{dir}}' then 'gitcoach' to start.",
    "gitignoreQuestion": "Would you like to create a .gitignore file?",
    "gitignoreType": "Select project type:",
    "gitignoreNode": "Node.js",
    "gitignorePython": "Python",
    "gitignoreJava": "Java",
    "gitignoreGeneric": "Generic",
    "gitignoreCreated": ".gitignore file created!",
    "copilotTitle": "GitHub Copilot CLI",
    "copilotDetected": "GitHub Copilot CLI is installed and ready!",
    "copilotNotInstalled": "GitHub Copilot CLI is not installed.",
    "copilotBenefits": "Copilot CLI enables AI-powered features:\n• Generate intelligent commit messages\n• Answer your Git questions\n• Get contextual suggestions",
    "copilotInstallQuestion": "Would you like to install GitHub Copilot CLI now?",
    "copilotSkipped": "Continuing without Copilot CLI. You can install it later.",
    "copilotInstalling": "Installing GitHub Copilot CLI...",
    "copilotInstallSuccess": "GitHub Copilot CLI installed successfully!",
    "copilotInstallNote": "You may need to authenticate with 'copilot login' on first use.",
    "copilotNotAuthenticated": "GitHub Copilot CLI is installed but you are not logged in. Run 'copilot login' to authenticate.",
    "copilotInstallFailed": "Failed to install GitHub Copilot CLI",
    "copilotInstallFailedDetail": "The automatic installation failed. This may be due to permissions or network issues.",
    "copilotManualInstall": "To install manually, run:\nnpm install -g @github/copilot",
    "gitignoreOverwrite": ".gitignore exists. Overwrite?"
  },
  "config": {
    "title": "Settings",
    "language": "Language",
    "theme": "Theme",
    "experienceLevel": "Experience Level",
    "showTips": "Show Tips",
    "confirmDestructive": "Confirm Destructive Actions",
    "autoCommitMsg": "Auto-generate Commit Messages",
    "defaultBranch": "Default Branch",
    "reset": "Reset to Defaults",
    "resetConfirm": "Reset all settings to defaults?",
    "copilotRefresh": "Re-check Copilot CLI",
    "copilotAvailable": "GitHub Copilot CLI is available and ready!",
    "copilotNotAvailable": "GitHub Copilot CLI is not available.",
    "copilotChecking": "Checking Copilot CLI availability..."
  },
  "stats": {
    "title": "Your Statistics",
    "totalCommits": "Total Commits",
    "errorsPrevented": "Errors Prevented",
    "aiCommits": "AI-Generated Commits",
    "timeSaved": "Estimated Time Saved",
    "noData": "No statistics yet. Start using GitCoach!",
    "aiPercentage": "AI-assisted commits: {{percentage}}%",
    "mistakesAvoided": "You've avoided {{count}} potential mistake(s)!"
  },
  "tipTitle": "Tip",
  "tips": {
    "beginner": {
      "status": "Use 'Status' to see what files have changed before committing.",
      "add": "Stage files with 'Add' before committing. Think of staging as preparing your changes.",
      "commit": "Write clear commit messages that explain WHY you made the change.",
      "push": "Push regularly to back up your work on the remote server.",
      "pull": "Pull before starting work to avoid merge conflicts.",
      "branch": "Use branches to work on features without affecting the main code."
    },
    "intermediate": {
      "commit": "Use conventional commits (feat:, fix:, docs:) for better history.",
      "rebase": "Consider rebasing for a cleaner history before merging."
    }
  },
  "help": {
    "title": "Help",
    "selectAction": "What would you like to do?",
    "askQuestion": "Ask a Git question (AI)",
    "quickHelp": "Quick reference",
    "about": "About GitCoach",
    "askHint": "Ask any Git question in natural language. Leave empty to cancel.",
    "askExamples": "Examples: \"How do I undo my last commit?\" or \"What is a rebase?\"",
    "enterQuestion": "Your question:",
    "questionTooShort": "Please enter a more detailed question",
    "thinking": "Thinking...",
    "answer": "Answer",
    "noAnswer": "Could not get an answer",
    "errorAsking": "Error getting answer",
    "copilotUnavailable": "GitHub Copilot CLI is not available. Install it to ask questions.",
    "quickRefTitle": "Quick Reference",
    "navigation": "Navigation:",
    "navArrows": "Use arrow keys to navigate menus",
    "navEnter": "Press Enter to select an option",
    "navCtrlC": "Press Ctrl+C to exit at any time",
    "mainCommands": "Main Commands:",
    "additionalCommands": "Additional Commands:",
    "tips": "Tips:",
    "tip1": "GitCoach warns you before dangerous operations",
    "tip2": "AI can generate commit messages from your changes",
    "tip3": "Change experience level in settings for more/less guidance",
    "aboutDesc": "GitCoach is an interactive CLI tool that helps developers master Git",
    "aboutDesc2": "through guided menus, intelligent suggestions, and real-time error prevention.",
    "features": "Features:",
    "feature1": "Interactive menus for all Git operations",
    "feature2": "AI-generated commit messages with Copilot CLI",
    "feature3": "Error prevention and warnings",
    "feature4": "Multilingual support (EN, FR, ES)",
    "feature5": "Beginner, Intermediate, and Expert modes",
    "aboutTitle": "About GitCoach",
    "builtFor": "Built for the GitHub Copilot CLI Challenge 2026"
  },
  "prompts": {
    "confirm": "Are you sure?",
    "yes": "Yes",
    "no": "No",
    "yesKey": "Y",
    "noKey": "n",
    "cancel": "Cancel",
    "continue": "Continue",
    "pressEnter": "Press Enter to continue...",
    "select": "Select an option",
    "enterValue": "Enter value"
  },
  "analysis": {
    "untrackedFiles": "{{count}} untracked file(s) found",
    "modifiedNotStaged": "{{count}} modified file(s) not staged",
    "readyToCommit": "{{count}} file(s) ready to commit",
    "aheadOfRemote": "{{count}} commit(s) ahead of remote",
    "behindRemote": "{{count}} commit(s) behind remote",
    "startCoding": "Start coding",
    "cleanAndUpToDate": "Working tree is clean and up to date"
  },
  "copilot": {
    "aiExplanation": "Copilot explains",
    "analyzing": "Analyzing error...",
    "analyzingChanges": "Analyzing changes...",
    "diffSummary": "Changes summary"
  },
  "detachedHead": {
    "title": "Detached HEAD",
    "explanation": "You are in a detached HEAD state.\n\nThis means you are not on any branch. Your commits may be lost if you switch branches.\n\nThis often happens after an interrupted rebase or checking out a specific commit.",
    "selectAction": "What would you like to do?",
    "createBranch": "Create a new branch",
    "returnToMain": "Return to main branch",
    "stashAndReturn": "Save changes and return",
    "ignore": "Ignore and continue",
    "enterBranchName": "Enter name for the new branch:",
    "branchCreated": "Branch '{{branch}}' created! Your commits are now safe.",
    "returnedToMain": "Returned to {{branch}}.",
    "stashedAndReturned": "Changes saved and returned to {{branch}}.",
    "commandExecuted": "Command executed: {{command}}",
    "stashMessage": "Detached HEAD changes"
  }
}
