qt-translation-workflow
SolidSet up Qt Linguist workflow with .ts files, lupdate/lrelease integration, and translation management
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# qt-translation-workflow
Set up Qt Linguist translation workflow with .ts files and lrelease integration. This skill configures the complete internationalization pipeline for Qt applications.
## Capabilities
- Configure lupdate for string extraction
- Set up .ts translation files
- Integrate lrelease for .qm compilation
- Generate CMake translation targets
- Configure plural forms handling
- Set up context-based translations
- Generate translation status reports
- Configure Qt Linguist project files
## Input Schema
```json
{
"type": "object",
"properties": {
"projectPath": {
"type": "string",
"description": "Path to the Qt project"
},
"languages": {
"type": "array",
"items": { "type": "string" },
"description": "Target language codes (e.g., ['de', 'fr', 'ja'])"
},
"sourceLanguage": {
"type": "string",
"default": "en",
"description": "Source language code"
},
"translationDir": {
"type": "string",
"default": "translations"
},
"includeQml": {
"type": "boolean",
"default": true
},
"pluralForms": {
"type": "boolean",
"default": true
},
"generateCMake": {
"type": "boolean",
"default": true
}
},
"required": ["projectPath", "languages"]
}
```
## Output Schema
```json
{
"type": "object",
"properties": {
"success": { "type": "boolean" },
"files": {
"type": "array",
"items": {
"type": "obje...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
qt-installer-framework-config
Configure Qt Installer Framework for cross-platform installers with component management, online updates, and custom UI
1,160 Updated today
a5c-ai AI & Automation Solid
qt-qml-component-generator
Generate QML components with proper property bindings, signal/slot connections, and Qt Quick Controls integration
1,160 Updated today
a5c-ai AI & Automation Solid
qt-cmake-project-generator
Generate CMake-based Qt project with proper module dependencies, cross-compilation support, and modern Qt6 configuration
1,160 Updated today
a5c-ai Testing & QA Solid
qt-test-fixture-generator
Generate Qt Test fixtures with mock QObject signals and slots, data-driven tests, and GUI testing setup
1,160 Updated today
a5c-ai AI & Automation Solid
query-translator
Translate SQL queries between different database dialects with function mapping and optimization
1,160 Updated today
a5c-ai