Context Definitions

ContextDefinitionChinese
ConsoleDeveloper tools (F12 tools, debugging)开发者工具
TerminalCommand line interface (SSH, bash, PowerShell)终端/命令行
Web PageUI elements (buttons, forms, input fields)网页界面

Usage by Context

Terminal (CLI)

Preposition: in the terminal

Examples:

  • ✅ “Run the script in your terminal.” (在终端里运行脚本)
  • ✅ “Execute the command in the terminal.” (在终端里执行命令)
  • ✅ “Open the terminal and run this command.” (打开终端运行这个命令)

Web Page (UI/Form)

Prepositions:

  • on the page (for buttons/UI elements)
  • in the form (for forms)
  • in the input field (for specific fields)

Examples:

  • ✅ “Click the button on the page.” (点击网页上的按钮)
  • ✅ “Enter your email in the form.” (在表单里输入邮箱)
  • ✅ “Input the value in the input field.” (在输入框里输入值)
  • ✅ “Fill in the form.” (填写表单)

Console (Developer Tools)

Preposition: in the console

Examples:

  • ✅ “Debug in the console.” (在控制台里调试)
  • ✅ “Check the error in the console.” (在控制台里查看错误)

Common Mistakes

❌ Wrong✅ CorrectNote
Click the button on the consoleClick the button on the pageconsole ≠ web page
Input something on the consoleInput something in the formconsole ≠ form
Run the script on the terminalRun the script in the terminalterminal 用 in

Customer Communication Examples

For Web UI

  • “Please click the Submit button on the page.” ✅
  • “Enter your API key in the form.” ✅
  • “Fill in the required fields.” ✅

For Terminal/CLI

  • “Run this script in your terminal.” ✅
  • “Execute the command in the terminal.” ✅

Decision Tree

1
2
3
4
5
6
7
8
Is it a web page UI (button/form)?
   YES: say "on the page" or "in the form" 

Is it command line (SSH/bash/PowerShell)?
   YES: say "in your terminal" 

Is it developer tools (F12 console)?
   YES: say "in the console" 

Memory Trick

  • on the page → 网页上的 UI 元素
  • in the form → 表单里
  • in the terminal → 终端里(命令行)
  • in the console → 开发者工具里

Practice

Complete the sentences with the correct preposition:

  1. “Run the installation script ___ your terminal.”
  2. “Click the Login button ___ the page.”
  3. “Enter your username ___ the form.”
  4. “Check the JavaScript error ___ the console.”

Answers:

  1. in (terminal uses “in”)
  2. on (web page button uses “on the page”)
  3. in (form uses “in”)
  4. in (console uses “in”)