localizationGetByKey
Retrieve specific translation items by key from a file using this tool. Input the file path and key to fetch the required localization data directly.
Instructions
根據Key查詢特定翻譯項目
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | ||
key | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"type": "string"
},
"key": {
"type": "string"
}
},
"required": [
"filePath",
"key"
],
"type": "object"
}