mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-21 02:20:12 +00:00
Add a plugin-based issue provider architecture that allows plugins to register as issue providers alongside the existing built-in providers. - Plugin API: types for search, display, comments, two-way sync, and field mappings in @super-productivity/plugin-api - Registry service to manage plugin provider lifecycle - HTTP proxy with SSRF protection for plugin network requests - Adapter service implementing IssueServiceInterface for plugins - Sync adapter for plugin-based two-way sync - Plugin config UI in the issue provider edit dialog - Plugin providers shown in setup overview and issue panel Migrate GitHub from built-in to plugin as first proof: - Bundled github-issue-provider plugin with full feature parity - Reducer migration converts old GitHub data to plugin format while preserving legacy fields for cross-version compatibility - Auto-enable plugin when existing GitHub providers are detected - Plugin registers under 'GITHUB' key via MigratedIssueProviderKey - GitHub translations moved to plugin i18n bundles Mark Two-Way Sync as experimental in the UI.
25 lines
1.6 KiB
JSON
25 lines
1.6 KiB
JSON
{
|
|
"CFG": {
|
|
"REPO": "nombreUsuario/nombreRepositorio",
|
|
"TOKEN": "Token de Acceso",
|
|
"FILTER_USERNAME": "Nombre de usuario (p. ej., para filtrar cambios hechos por ti mismo)",
|
|
"BACKLOG_QUERY": "Backlog query (default: \"sort:updated state:open assignee:@me\")",
|
|
"HOW_TO_GET_TOKEN": "How to get a token"
|
|
},
|
|
"DISPLAY": {
|
|
"SUMMARY": "Resumen",
|
|
"STATE": "Estado",
|
|
"ASSIGNEE": "Asignado",
|
|
"LABELS": "Etiquetas",
|
|
"MILESTONE": "Milestone",
|
|
"CREATOR": "Created by",
|
|
"DESCRIPTION": "Descripción"
|
|
},
|
|
"FORM_HELP": "<p>Aquí puedes configurar SuperProductivity para listar incidencias abiertas de GitHub para un repositorio específico en el panel de creación de tareas en la vista de planificación diaria. Se listarán como sugerencias y proporcionarán un enlace a la incidencia así como más información sobre ella.</p> <p>Además puedes importar automáticamente todas las incidencias abiertas.</p><p>Para superar los límites de uso y para acceder puedes proporcionar un token de acceso. <a href='https://docs.github.com/en/free-pro-team@latest/developers/apps/scopes-for-oauth-apps'>Más info sobre sus ámbitos se puede encontrar aquí</a>.",
|
|
"ERRORS": {
|
|
"CONFIG_ERROR": "GitHub: Error al mapear los datos. ¿Es correcto el nombre de tu repositorio?",
|
|
"ERR_UNKNOWN": "GitHub: Error desconocido {{statusCode}} {{errorMsg}}. ¿Se ha excedido el límite de tasa de la API?",
|
|
"TWO_WAY_SYNC_INSUFFICIENT_PERMISSIONS": "GitHub: Must have admin rights to update issues. Your token needs the 'repo' scope.",
|
|
"AUTO_CREATE_ISSUE_FAILED": "GitHub: Failed to auto-create issue"
|
|
}
|
|
}
|