mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
- Add useTranslate() hook for reactive translations in SolidJS - Include example translation files (en.json, de.json) - Update Vite plugin to copy i18n folder during build - Add i18n message handlers to plugin.ts - Demonstrate i18n usage in App.tsx with ~10 translation keys - Update documentation with comprehensive i18n guide - Add i18n to features list in main plugin-dev README The boilerplate now provides a complete working example of multi-language plugin support, making it easy for developers to create internationalized plugins.
30 lines
796 B
JSON
30 lines
796 B
JSON
{
|
|
"APP": {
|
|
"TITLE": "Solid.js Boilerplate Plugin",
|
|
"SUBTITLE": "Erstellt mit der Super Productivity Plugin API"
|
|
},
|
|
"STATS": {
|
|
"TOTAL_TASKS": "Aufgaben Gesamt",
|
|
"COMPLETED_TODAY": "Heute Erledigt",
|
|
"PENDING": "Ausstehend"
|
|
},
|
|
"TASK": {
|
|
"CREATE_NEW": "Neue Aufgabe Erstellen",
|
|
"ENTER_TITLE": "Aufgabentitel eingeben...",
|
|
"NO_PROJECT": "Kein Projekt",
|
|
"CREATE_BUTTON": "Aufgabe Erstellen",
|
|
"RECENT_TASKS": "Letzte Aufgaben",
|
|
"CREATED_SUCCESS": "Aufgabe \"{{title}}\" erstellt!"
|
|
},
|
|
"SETTINGS": {
|
|
"TITLE": "Einstellungen",
|
|
"THEME": "Theme",
|
|
"THEME_LIGHT": "Hell",
|
|
"THEME_DARK": "Dunkel",
|
|
"SHOW_COMPLETED": "Erledigte Aufgaben anzeigen"
|
|
},
|
|
"BUTTONS": {
|
|
"REFRESH": "Daten Aktualisieren"
|
|
},
|
|
"LOADING": "Lädt..."
|
|
}
|