mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-31 19:50:44 +00:00
Migrate the ClickUp issue provider from a tightly-coupled Angular service to the external plugin architecture, following the pattern established by the GitHub provider migration. - Delete all built-in ClickUp files (api service, models, components, tests, constants) from src/app/features/issue/providers/clickup/ - Create new plugin in packages/plugin-dev/clickup-issue-provider/ with pure-function API layer, plugin registration, i18n, and tests - Add migration in issue-provider.reducer.ts to convert old ClickUp provider config to plugin shape (preserves legacy fields for rollback) - Move CLICKUP from BuiltInIssueProviderKey to MigratedIssueProviderKey - Register clickup-issue-provider as bundled plugin - Fix isDone detection: use status.type instead of status.status so custom closed statuses like "Shipped" are correctly detected - Show disabled plugin issue providers in setup overview for discoverability — clicking auto-enables and opens config dialog
19 lines
564 B
JSON
19 lines
564 B
JSON
{
|
|
"CFG": {
|
|
"API_KEY": "Clé API",
|
|
"API_KEY_LINK": "Obtenir votre clé API personnelle",
|
|
"TEAM_IDS": "IDs d'espace de travail/équipe (séparés par des virgules, vide pour tous)",
|
|
"USER_ID": "ID utilisateur (pour filtrer par responsable)"
|
|
},
|
|
"DISPLAY": {
|
|
"SUMMARY": "Résumé",
|
|
"STATUS": "Statut",
|
|
"PRIORITY": "Priorité",
|
|
"ASSIGNEE": "Attribué à",
|
|
"LABELS": "Étiquettes",
|
|
"DESCRIPTION": "Description"
|
|
},
|
|
"ERRORS": {
|
|
"ERR_UNKNOWN": "ClickUp : Erreur inconnue. Vérifiez votre clé API et réessayez."
|
|
}
|
|
}
|