Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 39 additions & 39 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "roo-cline",
"displayName": "Roo Code",
"description": "A whole dev team of AI agents in your editor. Previously Roo Cline.",
"displayName": "%extension.displayName%",
"description": "%extension.description%",
"publisher": "RooVeterinaryInc",
"version": "3.11.13",
"icon": "assets/icons/icon.png",
Expand Down Expand Up @@ -54,18 +54,18 @@
"submenus": [
{
"id": "roo-code.contextMenu",
"label": "Roo Code"
"label": "%views.contextMenu.label%"
},
{
"id": "roo-code.terminalMenu",
"label": "Roo Code"
"label": "%views.terminalMenu.label%"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "roo-cline-ActivityBar",
"title": "Roo Code",
"title": "%views.activitybar.title%",
"icon": "assets/icons/icon.svg"
}
]
Expand All @@ -82,103 +82,103 @@
"commands": [
{
"command": "roo-cline.plusButtonClicked",
"title": "New Task",
"title": "%command.newTask.title%",
"icon": "$(add)"
},
{
"command": "roo-cline.mcpButtonClicked",
"title": "MCP Servers",
"title": "%command.mcpServers.title%",
"icon": "$(server)"
},
{
"command": "roo-cline.promptsButtonClicked",
"title": "Prompts",
"title": "%command.prompts.title%",
"icon": "$(notebook)"
},
{
"command": "roo-cline.historyButtonClicked",
"title": "History",
"title": "%command.history.title%",
"icon": "$(history)"
},
{
"command": "roo-cline.popoutButtonClicked",
"title": "Open in Editor",
"title": "%command.openInEditor.title%",
"icon": "$(link-external)"
},
{
"command": "roo-cline.settingsButtonClicked",
"title": "Settings",
"title": "%command.settings.title%",
"icon": "$(settings-gear)"
},
{
"command": "roo-cline.helpButtonClicked",
"title": "Documentation",
"title": "%command.documentation.title%",
"icon": "$(question)"
},
{
"command": "roo-cline.openInNewTab",
"title": "Open In New Tab",
"category": "Roo Code"
"title": "%command.openInNewTab.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.explainCode",
"title": "Explain Code",
"category": "Roo Code"
"title": "%command.explainCode.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.fixCode",
"title": "Fix Code",
"category": "Roo Code"
"title": "%command.fixCode.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.improveCode",
"title": "Improve Code",
"category": "Roo Code"
"title": "%command.improveCode.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.addToContext",
"title": "Add To Context",
"category": "Roo Code"
"title": "%command.addToContext.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.newTask",
"title": "New Task",
"category": "Roo Code"
"title": "%command.newTask.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.terminalAddToContext",
"title": "Add Terminal Content to Context",
"title": "%command.terminal.addToContext.title%",
"category": "Terminal"
},
{
"command": "roo-cline.terminalFixCommand",
"title": "Fix This Command",
"title": "%command.terminal.fixCommand.title%",
"category": "Terminal"
},
{
"command": "roo-cline.terminalExplainCommand",
"title": "Explain This Command",
"title": "%command.terminal.explainCommand.title%",
"category": "Terminal"
},
{
"command": "roo-cline.terminalFixCommandInCurrentTask",
"title": "Fix This Command (Current Task)",
"title": "%command.terminal.fixCommandInCurrentTask.title%",
"category": "Terminal"
},
{
"command": "roo-cline.terminalExplainCommandInCurrentTask",
"title": "Explain This Command (Current Task)",
"title": "%command.terminal.explainCommandInCurrentTask.title%",
"category": "Terminal"
},
{
"command": "roo-cline.setCustomStoragePath",
"title": "Set Custom Storage Path",
"category": "Roo Code"
"title": "%command.setCustomStoragePath.title%",
"category": "%extension.displayName%"
},
{
"command": "roo-cline.focusInput",
"title": "Focus Input Field",
"category": "Roo Code"
"title": "%command.focusInput.title%",
"category": "%extension.displayName%"
}
],
"menus": {
Expand Down Expand Up @@ -310,7 +310,7 @@
]
},
"configuration": {
"title": "Roo Code",
"title": "%configuration.title%",
"properties": {
"roo-cline.allowedCommands": {
"type": "array",
Expand All @@ -325,26 +325,26 @@
"git diff",
"git show"
],
"description": "Commands that can be auto-executed when 'Always approve execute operations' is enabled"
"description": "%commands.allowedCommands.description%"
},
"roo-cline.vsCodeLmModelSelector": {
"type": "object",
"properties": {
"vendor": {
"type": "string",
"description": "The vendor of the language model (e.g. copilot)"
"description": "%settings.vsCodeLmModelSelector.vendor.description%"
},
"family": {
"type": "string",
"description": "The family of the language model (e.g. gpt-4)"
"description": "%settings.vsCodeLmModelSelector.family.description%"
}
},
"description": "Settings for VSCode Language Model API"
"description": "%settings.vsCodeLmModelSelector.description%"
},
"roo-cline.customStoragePath": {
"type": "string",
"default": "",
"description": "Custom storage path. Leave empty to use the default location. Supports absolute paths (e.g. 'D:\\RooCodeStorage')"
"description": "%settings.customStoragePath.description%"
}
}
}
Expand Down
32 changes: 32 additions & 0 deletions package.nls.ca.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extension.displayName": "Roo Code",
"extension.description": "Un equip complet de desenvolupament d'agents d'IA al teu editor. Anteriorment Roo Cline.",
"command.newTask.title": "Nova Tasca",
"command.explainCode.title": "Explicar Codi",
"command.fixCode.title": "Corregir Codi",
"command.improveCode.title": "Millorar Codi",
"command.addToContext.title": "Afegir al Context",
"command.openInNewTab.title": "Obrir en una Nova Pestanya",
"command.focusInput.title": "Enfocar Camp d'Entrada",
"command.setCustomStoragePath.title": "Establir Ruta d'Emmagatzematge Personalitzada",
"command.terminal.addToContext.title": "Afegir Contingut del Terminal al Context",
"command.terminal.fixCommand.title": "Corregir Aquesta Ordre",
"command.terminal.explainCommand.title": "Explicar Aquesta Ordre",
"command.terminal.fixCommandInCurrentTask.title": "Corregir Aquesta Ordre (Tasca Actual)",
"command.terminal.explainCommandInCurrentTask.title": "Explicar Aquesta Ordre (Tasca Actual)",
"views.activitybar.title": "Roo Code",
"views.contextMenu.label": "Roo Code",
"views.terminalMenu.label": "Roo Code",
"command.mcpServers.title": "Servidors MCP",
"command.prompts.title": "Indicacions",
"command.history.title": "Historial",
"command.openInEditor.title": "Obrir a l'Editor",
"command.settings.title": "Configuració",
"command.documentation.title": "Documentació",
"configuration.title": "Roo Code",
"commands.allowedCommands.description": "Ordres que es poden executar automàticament quan 'Aprova sempre les operacions d'execució' està activat",
"settings.vsCodeLmModelSelector.description": "Configuració per a l'API del model de llenguatge VSCode",
"settings.vsCodeLmModelSelector.vendor.description": "El proveïdor del model de llenguatge (p. ex. copilot)",
"settings.vsCodeLmModelSelector.family.description": "La família del model de llenguatge (p. ex. gpt-4)",
"settings.customStoragePath.description": "Ruta d'emmagatzematge personalitzada. Deixeu-la buida per utilitzar la ubicació predeterminada. Admet rutes absolutes (p. ex. 'D:\\RooCodeStorage')"
}
32 changes: 32 additions & 0 deletions package.nls.de.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extension.displayName": "Roo Code",
"extension.description": "Ein komplettes KI-Agenten-Entwicklungsteam in Ihrem Editor. Früher bekannt als Roo Cline.",
"command.newTask.title": "Neue Aufgabe",
"command.explainCode.title": "Code Erklären",
"command.fixCode.title": "Code Reparieren",
"command.improveCode.title": "Code Verbessern",
"command.addToContext.title": "Zum Kontext Hinzufügen",
"command.openInNewTab.title": "In Neuem Tab Öffnen",
"command.focusInput.title": "Eingabefeld Fokussieren",
"command.setCustomStoragePath.title": "Benutzerdefinierten Speicherpfad Festlegen",
"command.terminal.addToContext.title": "Terminal-Inhalt zum Kontext Hinzufügen",
"command.terminal.fixCommand.title": "Diesen Befehl Reparieren",
"command.terminal.explainCommand.title": "Diesen Befehl Erklären",
"command.terminal.fixCommandInCurrentTask.title": "Diesen Befehl Reparieren (Aktuelle Aufgabe)",
"command.terminal.explainCommandInCurrentTask.title": "Diesen Befehl Erklären (Aktuelle Aufgabe)",
"views.activitybar.title": "Roo Code",
"views.contextMenu.label": "Roo Code",
"views.terminalMenu.label": "Roo Code",
"command.mcpServers.title": "MCP Server",
"command.prompts.title": "Prompts",
"command.history.title": "Verlauf",
"command.openInEditor.title": "Im Editor Öffnen",
"command.settings.title": "Einstellungen",
"command.documentation.title": "Dokumentation",
"configuration.title": "Roo Code",
"commands.allowedCommands.description": "Befehle, die automatisch ausgeführt werden können, wenn 'Ausführungsoperationen immer genehmigen' aktiviert ist",
"settings.vsCodeLmModelSelector.description": "Einstellungen für die VSCode-Sprachmodell-API",
"settings.vsCodeLmModelSelector.vendor.description": "Der Anbieter des Sprachmodells (z.B. copilot)",
"settings.vsCodeLmModelSelector.family.description": "Die Familie des Sprachmodells (z.B. gpt-4)",
"settings.customStoragePath.description": "Benutzerdefinierter Speicherpfad. Leer lassen, um den Standardspeicherort zu verwenden. Unterstützt absolute Pfade (z.B. 'D:\\RooCodeStorage')"
}
32 changes: 32 additions & 0 deletions package.nls.es.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extension.displayName": "Roo Code",
"extension.description": "Un equipo completo de desarrollo de agentes de IA en tu editor. Anteriormente Roo Cline.",
"command.newTask.title": "Nueva Tarea",
"command.explainCode.title": "Explicar Código",
"command.fixCode.title": "Corregir Código",
"command.improveCode.title": "Mejorar Código",
"command.addToContext.title": "Añadir al Contexto",
"command.openInNewTab.title": "Abrir en Nueva Pestaña",
"command.focusInput.title": "Enfocar Campo de Entrada",
"command.setCustomStoragePath.title": "Establecer Ruta de Almacenamiento Personalizada",
"command.terminal.addToContext.title": "Añadir Contenido de Terminal al Contexto",
"command.terminal.fixCommand.title": "Corregir Este Comando",
"command.terminal.explainCommand.title": "Explicar Este Comando",
"command.terminal.fixCommandInCurrentTask.title": "Corregir Este Comando (Tarea Actual)",
"command.terminal.explainCommandInCurrentTask.title": "Explicar Este Comando (Tarea Actual)",
"views.activitybar.title": "Roo Code",
"views.contextMenu.label": "Roo Code",
"views.terminalMenu.label": "Roo Code",
"command.mcpServers.title": "Servidores MCP",
"command.prompts.title": "Indicaciones",
"command.history.title": "Historial",
"command.openInEditor.title": "Abrir en Editor",
"command.settings.title": "Configuración",
"command.documentation.title": "Documentación",
"configuration.title": "Roo Code",
"commands.allowedCommands.description": "Comandos que pueden ejecutarse automáticamente cuando 'Aprobar siempre operaciones de ejecución' está activado",
"settings.vsCodeLmModelSelector.description": "Configuración para la API del modelo de lenguaje VSCode",
"settings.vsCodeLmModelSelector.vendor.description": "El proveedor del modelo de lenguaje (ej. copilot)",
"settings.vsCodeLmModelSelector.family.description": "La familia del modelo de lenguaje (ej. gpt-4)",
"settings.customStoragePath.description": "Ruta de almacenamiento personalizada. Dejar vacío para usar la ubicación predeterminada. Admite rutas absolutas (ej. 'D:\\RooCodeStorage')"
}
32 changes: 32 additions & 0 deletions package.nls.fr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extension.displayName": "Roo Code",
"extension.description": "Une équipe complète de développement d'agents IA dans votre éditeur. Anciennement Roo Cline.",
"command.newTask.title": "Nouvelle Tâche",
"command.explainCode.title": "Expliquer le Code",
"command.fixCode.title": "Corriger le Code",
"command.improveCode.title": "Améliorer le Code",
"command.addToContext.title": "Ajouter au Contexte",
"command.openInNewTab.title": "Ouvrir dans un Nouvel Onglet",
"command.focusInput.title": "Focus sur le Champ de Saisie",
"command.setCustomStoragePath.title": "Définir le Chemin de Stockage Personnalisé",
"command.terminal.addToContext.title": "Ajouter le Contenu du Terminal au Contexte",
"command.terminal.fixCommand.title": "Corriger cette Commande",
"command.terminal.explainCommand.title": "Expliquer cette Commande",
"command.terminal.fixCommandInCurrentTask.title": "Corriger cette Commande (Tâche Actuelle)",
"command.terminal.explainCommandInCurrentTask.title": "Expliquer cette Commande (Tâche Actuelle)",
"views.activitybar.title": "Roo Code",
"views.contextMenu.label": "Roo Code",
"views.terminalMenu.label": "Roo Code",
"command.mcpServers.title": "Serveurs MCP",
"command.prompts.title": "Invites",
"command.history.title": "Historique",
"command.openInEditor.title": "Ouvrir dans l'Éditeur",
"command.settings.title": "Paramètres",
"command.documentation.title": "Documentation",
"configuration.title": "Roo Code",
"commands.allowedCommands.description": "Commandes pouvant être exécutées automatiquement lorsque 'Toujours approuver les opérations d'exécution' est activé",
"settings.vsCodeLmModelSelector.description": "Paramètres pour l'API du modèle de langage VSCode",
"settings.vsCodeLmModelSelector.vendor.description": "Le fournisseur du modèle de langage (ex: copilot)",
"settings.vsCodeLmModelSelector.family.description": "La famille du modèle de langage (ex: gpt-4)",
"settings.customStoragePath.description": "Chemin de stockage personnalisé. Laisser vide pour utiliser l'emplacement par défaut. Prend en charge les chemins absolus (ex: 'D:\\RooCodeStorage')"
}
32 changes: 32 additions & 0 deletions package.nls.hi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"extension.displayName": "Roo Code",
"extension.description": "आपके एडिटर में एआई एजेंट्स की पूरी डेवलपमेंट टीम। पहले Roo Cline के नाम से जाना जाता था।",
"command.newTask.title": "नया कार्य",
"command.explainCode.title": "कोड समझाएं",
"command.fixCode.title": "कोड ठीक करें",
"command.improveCode.title": "कोड सुधारें",
"command.addToContext.title": "संदर्भ में जोड़ें",
"command.openInNewTab.title": "नए टैब में खोलें",
"command.focusInput.title": "इनपुट फ़ील्ड पर फोकस करें",
"command.setCustomStoragePath.title": "कस्टम स्टोरेज पाथ सेट करें",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent terminology: The term 'पाथ' is used in line 11 while 'पथ' is used in line 31. Consider standardizing the term ('पथ') across the file for consistency.

Suggested change
"command.setCustomStoragePath.title": "कस्टम स्टोरेज पाथ सेट करें",
"command.setCustomStoragePath.title": "कस्टम स्टोरेज पथ सेट करें",

"command.terminal.addToContext.title": "टर्मिनल सामग्री को संदर्भ में जोड़ें",
"command.terminal.fixCommand.title": "यह कमांड ठीक करें",
"command.terminal.explainCommand.title": "यह कमांड समझाएं",
"command.terminal.fixCommandInCurrentTask.title": "यह कमांड ठीक करें (वर्तमान कार्य)",
"command.terminal.explainCommandInCurrentTask.title": "यह कमांड समझाएं (वर्तमान कार्य)",
"views.activitybar.title": "Roo Code",
"views.contextMenu.label": "Roo Code",
"views.terminalMenu.label": "Roo Code",
"command.mcpServers.title": "एमसीपी सर्वर",
"command.prompts.title": "प्रॉम्प्ट्स",
"command.history.title": "इतिहास",
"command.openInEditor.title": "एडिटर में खोलें",
"command.settings.title": "सेटिंग्स",
"command.documentation.title": "दस्तावेज़ीकरण",
"configuration.title": "Roo Code",
"commands.allowedCommands.description": "वे कमांड जो स्वचालित रूप से निष्पादित की जा सकती हैं जब 'हमेशा निष्पादन संचालन को स्वीकृत करें' सक्रिय हो",
"settings.vsCodeLmModelSelector.description": "VSCode भाषा मॉडल API के लिए सेटिंग्स",
"settings.vsCodeLmModelSelector.vendor.description": "भाषा मॉडल का विक्रेता (उदा. copilot)",
"settings.vsCodeLmModelSelector.family.description": "भाषा मॉडल का परिवार (उदा. gpt-4)",
"settings.customStoragePath.description": "कस्टम स्टोरेज पाथ। डिफ़ॉल्ट स्थान का उपयोग करने के लिए खाली छोड़ें। पूर्ण पथ का समर्थन करता है (उदा. 'D:\\RooCodeStorage')"
}
Loading