mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-27 09:33:55 +08:00
update:添加多语言支持并增强搜索功能
This commit is contained in:
@@ -29,6 +29,115 @@ export default {
|
||||
'mcpToolCall.executionResult': '3、Execution Result',
|
||||
'mcpToolCall.copyResult': 'Copy Result',
|
||||
'mcpToolCall.noResultYet': 'No result yet',
|
||||
'mcpToolCall.loadingToolList': 'Loading tool list...',
|
||||
|
||||
// Tool names
|
||||
'mcpToolCall.toolName.getDeviceStatus': 'View Device Status',
|
||||
'mcpToolCall.toolName.setVolume': 'Set Volume',
|
||||
'mcpToolCall.toolName.setBrightness': 'Set Brightness',
|
||||
'mcpToolCall.toolName.setTheme': 'Set Theme',
|
||||
'mcpToolCall.toolName.takePhoto': 'Take Photo & Recognize',
|
||||
'mcpToolCall.toolName.getSystemInfo': 'System Info',
|
||||
'mcpToolCall.toolName.reboot': 'Reboot Device',
|
||||
'mcpToolCall.toolName.upgradeFirmware': 'Upgrade Firmware',
|
||||
'mcpToolCall.toolName.getScreenInfo': 'Screen Info',
|
||||
'mcpToolCall.toolName.snapshot': 'Screen Snapshot',
|
||||
'mcpToolCall.toolName.previewImage': 'Preview Image',
|
||||
'mcpToolCall.toolName.setDownloadUrl': 'Set Download URL',
|
||||
|
||||
// Tool categories
|
||||
'mcpToolCall.category.audio': 'Audio',
|
||||
'mcpToolCall.category.display': 'Display',
|
||||
'mcpToolCall.category.camera': 'Camera',
|
||||
'mcpToolCall.category.system': 'System',
|
||||
'mcpToolCall.category.assets': 'Assets',
|
||||
'mcpToolCall.category.deviceInfo': 'Device Info',
|
||||
|
||||
// Table categories and properties
|
||||
'mcpToolCall.table.audioSpeaker': 'Audio Speaker',
|
||||
'mcpToolCall.table.screen': 'Screen',
|
||||
'mcpToolCall.table.network': 'Network',
|
||||
'mcpToolCall.table.audioControl': 'Audio Control',
|
||||
'mcpToolCall.table.screenControl': 'Screen Control',
|
||||
'mcpToolCall.table.systemControl': 'System Control',
|
||||
'mcpToolCall.table.screenInfo': 'Screen Info',
|
||||
'mcpToolCall.table.hardwareInfo': 'Hardware Info',
|
||||
'mcpToolCall.table.memoryInfo': 'Memory Info',
|
||||
'mcpToolCall.table.applicationInfo': 'Application Info',
|
||||
'mcpToolCall.table.networkInfo': 'Network Info',
|
||||
'mcpToolCall.table.displayInfo': 'Display Info',
|
||||
'mcpToolCall.table.deviceInfo': 'Device Info',
|
||||
'mcpToolCall.table.systemInfo': 'System Info',
|
||||
// Table column headers
|
||||
'mcpToolCall.table.component': 'Component',
|
||||
'mcpToolCall.table.property': 'Property',
|
||||
'mcpToolCall.table.value': 'Value',
|
||||
|
||||
'mcpToolCall.prop.volume': 'Volume',
|
||||
'mcpToolCall.prop.brightness': 'Brightness',
|
||||
'mcpToolCall.prop.theme': 'Theme',
|
||||
'mcpToolCall.prop.type': 'Type',
|
||||
'mcpToolCall.prop.ssid': 'SSID',
|
||||
'mcpToolCall.prop.signalStrength': 'Signal Strength',
|
||||
'mcpToolCall.prop.operationResult': 'Operation Result',
|
||||
'mcpToolCall.prop.width': 'Width',
|
||||
'mcpToolCall.prop.height': 'Height',
|
||||
'mcpToolCall.prop.screenType': 'Type',
|
||||
'mcpToolCall.prop.chipModel': 'Chip Model',
|
||||
'mcpToolCall.prop.cpuCores': 'CPU Cores',
|
||||
'mcpToolCall.prop.chipVersion': 'Chip Version',
|
||||
'mcpToolCall.prop.flashSize': 'Flash Size',
|
||||
'mcpToolCall.prop.minFreeHeap': 'Minimum Free Heap',
|
||||
'mcpToolCall.prop.applicationName': 'Application Name',
|
||||
'mcpToolCall.prop.applicationVersion': 'Application Version',
|
||||
'mcpToolCall.prop.compileTime': 'Compile Time',
|
||||
'mcpToolCall.prop.idfVersion': 'IDF Version',
|
||||
'mcpToolCall.prop.macAddress': 'MAC Address',
|
||||
'mcpToolCall.prop.ipAddress': 'IP Address',
|
||||
'mcpToolCall.prop.wifiName': 'WiFi Name',
|
||||
'mcpToolCall.prop.wifiChannel': 'WiFi Channel',
|
||||
'mcpToolCall.prop.screenSize': 'Screen Size',
|
||||
'mcpToolCall.prop.deviceUuid': 'Device UUID',
|
||||
'mcpToolCall.prop.systemLanguage': 'System Language',
|
||||
'mcpToolCall.prop.currentOtaPartition': 'Current OTA Partition',
|
||||
'mcpToolCall.prop.getResult': 'Get Result',
|
||||
'mcpToolCall.prop.url': 'URL',
|
||||
'mcpToolCall.prop.quality': 'Quality',
|
||||
'mcpToolCall.prop.question': 'Question',
|
||||
|
||||
// Tool help texts
|
||||
'mcpToolCall.help.getDeviceStatus': 'View the current running status of the device, including volume, screen, battery and other information.',
|
||||
'mcpToolCall.help.setVolume': 'Adjust the volume of the device, please enter a value between 0-100.',
|
||||
'mcpToolCall.help.setBrightness': 'Adjust the brightness of the device screen, please enter a value between 0-100.',
|
||||
'mcpToolCall.help.setTheme': 'Switch the display theme of the device screen, you can choose light or dark mode.',
|
||||
'mcpToolCall.help.takePhoto': 'Take photos with the device camera and perform recognition analysis, please enter the question you want to ask.',
|
||||
'mcpToolCall.help.getSystemInfo': 'Get the system information of the device, including hardware specifications, software version, etc.',
|
||||
'mcpToolCall.help.reboot': 'Reboot the device, the device will restart after execution.',
|
||||
'mcpToolCall.help.upgradeFirmware': 'Download and upgrade the device firmware from the specified URL, the device will restart automatically after the upgrade.',
|
||||
'mcpToolCall.help.getScreenInfo': 'Get detailed information about the screen, such as resolution, size and other parameters.',
|
||||
'mcpToolCall.help.snapshot': 'Take a screenshot of the current screen and upload it to the specified URL.',
|
||||
'mcpToolCall.help.previewImage': 'Preview images from the specified URL on the device screen.',
|
||||
'mcpToolCall.help.setDownloadUrl': 'Set the download address for device resource files.',
|
||||
|
||||
// Other text
|
||||
'mcpToolCall.text.strong': 'Strong',
|
||||
'mcpToolCall.text.medium': 'Medium',
|
||||
'mcpToolCall.text.weak': 'Weak',
|
||||
'mcpToolCall.text.dark': 'Dark',
|
||||
'mcpToolCall.text.light': 'Light',
|
||||
'mcpToolCall.text.setSuccess': 'Setting successful',
|
||||
'mcpToolCall.text.setFailed': 'Setting failed',
|
||||
'mcpToolCall.text.brightnessSetSuccess': 'Brightness setting successful',
|
||||
'mcpToolCall.text.brightnessSetFailed': 'Brightness setting failed',
|
||||
'mcpToolCall.text.themeSetSuccess': 'Theme setting successful',
|
||||
'mcpToolCall.text.themeSetFailed': 'Theme setting failed',
|
||||
'mcpToolCall.text.rebootCommandSent': 'Reboot command sent',
|
||||
'mcpToolCall.text.rebootFailed': 'Reboot failed',
|
||||
'mcpToolCall.text.monochrome': 'Monochrome Screen',
|
||||
'mcpToolCall.text.color': 'Color Screen',
|
||||
'mcpToolCall.text.getSuccessParseFailed': 'Get successful, but parse failed',
|
||||
'mcpToolCall.text.getFailed': 'Get failed',
|
||||
'mcpToolCall.text.getSuccessFormatError': 'Get successful, but data format is abnormal',
|
||||
|
||||
// Dictionary data dialog related
|
||||
'dictDataDialog.addDictData': 'Add Dictionary Data',
|
||||
|
||||
Reference in New Issue
Block a user