Skip to content
Open
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
84 changes: 83 additions & 1 deletion Packages/OsaurusCore/Resources/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -49041,6 +49041,88 @@
}
}
},
"computer.use.diagnostics.key.label": {
"comment": "Field label in the Computer Use autonomy gate inspector for the keyboard key used by press_key. Kept separate from the generic 'Key' key, which means a credential or API key elsewhere.",
"localizations": {
"de": {
"stringUnit": {
"state": "needs_review",
"value": "Taste"
}
},
"en": {
"stringUnit": {
"state": "translated",
"value": "Key"
}
},
"ko": {
"stringUnit": {
"state": "needs_review",
"value": "키"
}
},
"ru": {
"stringUnit": {
"state": "needs_review",
"value": "Клавиша"
}
},
"zh-Hans": {
"stringUnit": {
"state": "translated",
"value": "按键"
}
},
"zh-Hant": {
"stringUnit": {
"state": "translated",
"value": "按鍵"
}
}
}
},
"computer.use.diagnostics.verb.type": {
"comment": "Action label in the Computer Use autonomy gate inspector for typing text. Kept separate from the generic 'Type' key, which means a model or schema category elsewhere.",
"localizations": {
"de": {
"stringUnit": {
"state": "needs_review",
"value": "Eingeben"
}
},
"en": {
"stringUnit": {
"state": "translated",
"value": "Type"
}
},
"ko": {
"stringUnit": {
"state": "needs_review",
"value": "입력"
}
},
"ru": {
"stringUnit": {
"state": "needs_review",
"value": "Ввести"
}
},
"zh-Hans": {
"stringUnit": {
"state": "translated",
"value": "输入"
}
},
"zh-Hant": {
"stringUnit": {
"state": "translated",
"value": "輸入"
}
}
}
},
"Concurrency": {
"localizations": {
"de": {
Expand Down Expand Up @@ -149923,7 +150005,7 @@
"zh-Hans": {
"stringUnit": {
"state": "translated",
"value": "按键"
"value": "按下按键"
}
},
"zh-Hant": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,11 @@ struct ComputerUseDiagnosticsPanel: View {
}
HStack(alignment: .top, spacing: 10) {
labeledTextField(L("Typed text"), text: $previewText, placeholder: L("For type/set"))
labeledTextField(L("Key"), text: $previewKey, placeholder: L("For press_key"))
labeledTextField(
L("computer.use.diagnostics.key.label"),
text: $previewKey,
placeholder: L("For press_key")
)
}
HStack(alignment: .top, spacing: 10) {
labeledTextField(
Expand Down Expand Up @@ -510,7 +514,7 @@ struct ComputerUseDiagnosticsPanel: View {
case .doubleClick: return L("Double-click")
case .rightClick: return L("Right-click")
case .drag: return L("Drag")
case .type: return L("Type")
case .type: return L("computer.use.diagnostics.verb.type")
case .setValue: return L("Set value")
case .clear: return L("Clear")
case .pressKey: return L("Press key")
Expand Down
Loading