Skip to content

Commit efa8f9d

Browse files
committed
update files.
1 parent 4bb7385 commit efa8f9d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This application is deeply integrated with popular AI programming models, suppor
1515
* **Tabbed Interface**: Manage multiple projects simultaneously and switch contexts quickly using tabs.
1616
* **Independent Configuration**: Each project can have its own working directory and launch parameters (e.g., Yolo Mode).
1717
* **Python Environment Support**: Deeply integrated with Conda/Anaconda, allowing independent Python environments for different projects.
18-
* **Administrator Launch**: Supports launching tools with administrator privileges on Windows to resolve permission issues.
18+
* **Admin Launch**: Supports launching tools with admin privileges on Windows to resolve permission issues.
1919
* **🔄 Multi-Model & Cross-Platform Support**:
2020
* Integrated with **Claude Code**, **OpenAI Codex**, **Google Gemini CLI**, **OpenCode**, **CodeBuddy**, and **Qoder CLI**.
2121
* **"Original" Provider Mode**: One-click switch back to official configurations. Automatically clears custom proxy settings to ensure a pure official tool experience.

UserManual_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ After selecting a project, configure its specific settings:
5050
1. **Project Directory**: Click **"Change"** to pick the folder where your code resides.
5151
2. **Launch Parameters**:
5252
* **Yolo Mode**: For example, in Claude, this skips all permission prompts (use with caution).
53-
* **Administrator Privileges (Windows)**: When checked, the tool will launch with administrator rights, useful for projects requiring elevated permissions.
53+
* **As Admin (Windows)**: When checked, the tool will launch with administrator rights, useful for projects requiring elevated permissions.
5454
3. **Python Environment**:
5555
* If your project is Python-based, check the **"Python Project"** option.
5656
* **Environment Selection**: The program automatically detects Conda/Anaconda environments on your system. Select the desired environment from the dropdown list, and AICoder will automatically run `conda activate` upon launch.

faq_en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ You need to set up a **liteLLM proxy** service yourself. In Gemini CLI, select *
5050
## 14. Which Python environments are supported?
5151
AICoder currently supports **Conda/Anaconda** environments. After enabling "Python Project" in the project settings, AICoder scans for available conda environments on your system for selection. Environment switching is handled automatically upon launch.
5252

53-
## 15. Why use Administrator privileges to launch?
54-
Some projects may involve system-level file operations or access to restricted directories. Launching with administrator privileges can prevent tools from failing due to insufficient permissions. This feature is currently only supported on Windows.
53+
## 15. Why use admin privileges to launch?
54+
Some projects may involve system-level file operations or access to restricted directories. Launching with admin privileges can prevent tools from failing due to insufficient permissions. This feature is currently only supported on Windows.
5555

5656
---
5757
*For more issues, please visit GitHub Issues: [RapidAI/cceasy/issues](https://github.com/RapidAI/cceasy/issues)*

frontend/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const translations: any = {
8282
"language": "Language",
8383
"runnerStatus": "Cur",
8484
"yoloModeLabel": "Yolo Mode",
85-
"adminModeLabel": "Administrator Privileges",
85+
"adminModeLabel": "As Admin",
8686
"rootModeLabel": "As root",
8787
"pythonProjectLabel": "Python Project",
8888
"pythonEnvLabel": "Env",

platform_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ func (a *App) platformLaunch(binaryName string, yoloMode bool, adminMode bool, p
468468

469469
if ret <= 32 {
470470
a.log(fmt.Sprintf("ShellExecute failed with return value: %d", ret))
471-
a.ShowMessage("Launch Error", "Failed to launch with administrator privileges. Please check UAC settings.")
471+
a.ShowMessage("Launch Error", "Failed to launch with admin privileges. Please check UAC settings.")
472472
}
473473

474474
// Clean up the batch file after a delay (since it's launched asynchronously)

0 commit comments

Comments
 (0)