euparliamentmonitor 0.9.19 → 0.9.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (158) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -3
  3. package/scripts/aggregator/editorial-brief-resolver.d.ts +38 -0
  4. package/scripts/aggregator/editorial-brief-resolver.js +32 -0
  5. package/scripts/aggregator/generator/render-one.js +35 -0
  6. package/scripts/aggregator/html/localize-body.d.ts +32 -0
  7. package/scripts/aggregator/html/localize-body.js +69 -0
  8. package/scripts/aggregator/html/shell.d.ts +10 -0
  9. package/scripts/aggregator/html/shell.js +11 -1
  10. package/scripts/aggregator/markdown-renderer.d.ts +23 -24
  11. package/scripts/aggregator/markdown-renderer.js +39 -25
  12. package/scripts/aggregator/metadata/artifact-highlight.d.ts +15 -22
  13. package/scripts/aggregator/metadata/artifact-highlight.js +14 -230
  14. package/scripts/aggregator/metadata/artifact-walker.d.ts +34 -0
  15. package/scripts/aggregator/metadata/artifact-walker.js +177 -0
  16. package/scripts/aggregator/metadata/editorial-highlight.d.ts +15 -0
  17. package/scripts/aggregator/metadata/editorial-highlight.js +53 -0
  18. package/scripts/aggregator/metadata/priority-finding-highlight.js +7 -2
  19. package/scripts/aggregator/metadata/resolve-helpers.js +9 -3
  20. package/scripts/aggregator/metadata/text-utils.js +7 -0
  21. package/scripts/aggregator/metadata/translated-sibling.d.ts +23 -0
  22. package/scripts/aggregator/metadata/translated-sibling.js +39 -0
  23. package/scripts/aggregator/reader-guide/builder.js +3 -1
  24. package/scripts/aggregator/reader-guide/labels.d.ts +7 -0
  25. package/scripts/aggregator/reader-guide/labels.js +22 -0
  26. package/scripts/aggregator/reader-intelligence-guide.d.ts +1 -1
  27. package/scripts/aggregator/reader-intelligence-guide.js +1 -1
  28. package/scripts/aggregator/seo-entity-extractor.d.ts +45 -0
  29. package/scripts/aggregator/seo-entity-extractor.js +211 -0
  30. package/scripts/constants/articles/breaking-strings-central.d.ts +8 -0
  31. package/scripts/constants/articles/breaking-strings-central.js +105 -0
  32. package/scripts/constants/articles/breaking-strings-east.d.ts +8 -0
  33. package/scripts/constants/articles/breaking-strings-east.js +203 -0
  34. package/scripts/constants/articles/breaking-strings-nordic.d.ts +8 -0
  35. package/scripts/constants/articles/breaking-strings-nordic.js +252 -0
  36. package/scripts/constants/articles/breaking-strings-west.d.ts +8 -0
  37. package/scripts/constants/articles/breaking-strings-west.js +154 -0
  38. package/scripts/constants/articles/breaking.d.ts +0 -1
  39. package/scripts/constants/articles/breaking.js +9 -6
  40. package/scripts/constants/articles/dashboard/ar.d.ts +8 -0
  41. package/scripts/constants/articles/dashboard/ar.js +71 -0
  42. package/scripts/constants/articles/dashboard/da.d.ts +8 -0
  43. package/scripts/constants/articles/dashboard/da.js +71 -0
  44. package/scripts/constants/articles/dashboard/de.d.ts +8 -0
  45. package/scripts/constants/articles/dashboard/de.js +71 -0
  46. package/scripts/constants/articles/dashboard/en.d.ts +8 -0
  47. package/scripts/constants/articles/dashboard/en.js +71 -0
  48. package/scripts/constants/articles/dashboard/es.d.ts +8 -0
  49. package/scripts/constants/articles/dashboard/es.js +71 -0
  50. package/scripts/constants/articles/dashboard/fi.d.ts +8 -0
  51. package/scripts/constants/articles/dashboard/fi.js +71 -0
  52. package/scripts/constants/articles/dashboard/fr.d.ts +8 -0
  53. package/scripts/constants/articles/dashboard/fr.js +71 -0
  54. package/scripts/constants/articles/dashboard/he.d.ts +8 -0
  55. package/scripts/constants/articles/dashboard/he.js +71 -0
  56. package/scripts/constants/articles/dashboard/index.d.ts +7 -0
  57. package/scripts/constants/articles/dashboard/index.js +33 -0
  58. package/scripts/constants/articles/dashboard/ja.d.ts +8 -0
  59. package/scripts/constants/articles/dashboard/ja.js +71 -0
  60. package/scripts/constants/articles/dashboard/ko.d.ts +8 -0
  61. package/scripts/constants/articles/dashboard/ko.js +71 -0
  62. package/scripts/constants/articles/dashboard/nl.d.ts +8 -0
  63. package/scripts/constants/articles/dashboard/nl.js +71 -0
  64. package/scripts/constants/articles/dashboard/no.d.ts +8 -0
  65. package/scripts/constants/articles/dashboard/no.js +71 -0
  66. package/scripts/constants/articles/dashboard/sv.d.ts +8 -0
  67. package/scripts/constants/articles/dashboard/sv.js +71 -0
  68. package/scripts/constants/articles/dashboard/zh.d.ts +8 -0
  69. package/scripts/constants/articles/dashboard/zh.js +71 -0
  70. package/scripts/constants/articles/dashboard.d.ts +7 -2
  71. package/scripts/constants/articles/dashboard.js +4 -8
  72. package/scripts/constants/articles/deep-analysis/ar.d.ts +8 -0
  73. package/scripts/constants/articles/deep-analysis/ar.js +75 -0
  74. package/scripts/constants/articles/deep-analysis/da.d.ts +8 -0
  75. package/scripts/constants/articles/deep-analysis/da.js +75 -0
  76. package/scripts/constants/articles/deep-analysis/de.d.ts +8 -0
  77. package/scripts/constants/articles/deep-analysis/de.js +75 -0
  78. package/scripts/constants/articles/deep-analysis/en.d.ts +8 -0
  79. package/scripts/constants/articles/deep-analysis/en.js +75 -0
  80. package/scripts/constants/articles/deep-analysis/es.d.ts +8 -0
  81. package/scripts/constants/articles/deep-analysis/es.js +75 -0
  82. package/scripts/constants/articles/deep-analysis/fi.d.ts +8 -0
  83. package/scripts/constants/articles/deep-analysis/fi.js +75 -0
  84. package/scripts/constants/articles/deep-analysis/fr.d.ts +8 -0
  85. package/scripts/constants/articles/deep-analysis/fr.js +75 -0
  86. package/scripts/constants/articles/deep-analysis/he.d.ts +8 -0
  87. package/scripts/constants/articles/deep-analysis/he.js +75 -0
  88. package/scripts/constants/articles/deep-analysis/index.d.ts +7 -0
  89. package/scripts/constants/articles/deep-analysis/index.js +33 -0
  90. package/scripts/constants/articles/deep-analysis/ja.d.ts +8 -0
  91. package/scripts/constants/articles/deep-analysis/ja.js +75 -0
  92. package/scripts/constants/articles/deep-analysis/ko.d.ts +8 -0
  93. package/scripts/constants/articles/deep-analysis/ko.js +75 -0
  94. package/scripts/constants/articles/deep-analysis/nl.d.ts +8 -0
  95. package/scripts/constants/articles/deep-analysis/nl.js +75 -0
  96. package/scripts/constants/articles/deep-analysis/no.d.ts +8 -0
  97. package/scripts/constants/articles/deep-analysis/no.js +75 -0
  98. package/scripts/constants/articles/deep-analysis/sv.d.ts +8 -0
  99. package/scripts/constants/articles/deep-analysis/sv.js +75 -0
  100. package/scripts/constants/articles/deep-analysis/zh.d.ts +8 -0
  101. package/scripts/constants/articles/deep-analysis/zh.js +75 -0
  102. package/scripts/constants/articles/deep-analysis.d.ts +4 -3
  103. package/scripts/constants/articles/deep-analysis.js +3 -7
  104. package/scripts/constants/articles/localized-keywords-central.d.ts +8 -0
  105. package/scripts/constants/articles/localized-keywords-central.js +118 -0
  106. package/scripts/constants/articles/localized-keywords-nordic.d.ts +8 -0
  107. package/scripts/constants/articles/localized-keywords-nordic.js +303 -0
  108. package/scripts/constants/articles/localized-keywords.js +4 -2
  109. package/scripts/constants/articles/swot-builder-central.d.ts +8 -0
  110. package/scripts/constants/articles/swot-builder-central.js +90 -0
  111. package/scripts/constants/articles/swot-builder-nordic.d.ts +8 -0
  112. package/scripts/constants/articles/swot-builder-nordic.js +216 -0
  113. package/scripts/constants/articles/swot.js +4 -2
  114. package/scripts/constants/articles/week-ahead-eu.d.ts +12 -0
  115. package/scripts/constants/articles/week-ahead-eu.js +278 -0
  116. package/scripts/constants/articles/week-ahead-global.d.ts +12 -0
  117. package/scripts/constants/articles/week-ahead-global.js +278 -0
  118. package/scripts/constants/articles/week-ahead.d.ts +4 -7
  119. package/scripts/constants/articles/week-ahead.js +11 -535
  120. package/scripts/constants/world-bank/category-map-analysis.d.ts +9 -0
  121. package/scripts/constants/world-bank/category-map-analysis.js +204 -0
  122. package/scripts/constants/world-bank/category-map-legislative.d.ts +9 -0
  123. package/scripts/constants/world-bank/category-map-legislative.js +130 -0
  124. package/scripts/constants/world-bank/category-map-periodic.d.ts +9 -0
  125. package/scripts/constants/world-bank/category-map-periodic.js +176 -0
  126. package/scripts/constants/world-bank/category-map.d.ts +3 -26
  127. package/scripts/constants/world-bank/category-map.js +8 -501
  128. package/scripts/discover-untranslated-briefs.js +123 -4
  129. package/scripts/generators/news-indexes/per-language.js +21 -7
  130. package/scripts/generators/political-intelligence/html.js +39 -8
  131. package/scripts/generators/sitemap/html.js +25 -7
  132. package/scripts/mcp/ep/client.d.ts +0 -1
  133. package/scripts/mcp/ep/client.js +0 -65
  134. package/scripts/mcp/ep/error-classifier.d.ts +2 -2
  135. package/scripts/mcp/ep/error-classifier.js +2 -2
  136. package/scripts/mcp/ep/tools-list.d.ts +13 -0
  137. package/scripts/mcp/ep/tools-list.js +79 -0
  138. package/scripts/mcp/ep-mcp-client.d.ts +1 -0
  139. package/scripts/mcp/ep-mcp-client.js +1 -0
  140. package/scripts/mcp/imf/client.d.ts +3 -64
  141. package/scripts/mcp/imf/client.js +18 -207
  142. package/scripts/mcp/imf/http-transport.d.ts +92 -0
  143. package/scripts/mcp/imf/http-transport.js +232 -0
  144. package/scripts/mcp/transport/connection.d.ts +25 -53
  145. package/scripts/mcp/transport/connection.js +90 -250
  146. package/scripts/mcp/transport/process.d.ts +62 -0
  147. package/scripts/mcp/transport/process.js +147 -0
  148. package/scripts/mcp/transport/reconnect.d.ts +73 -0
  149. package/scripts/mcp/transport/reconnect.js +96 -0
  150. package/scripts/validate-brief-translations.js +122 -6
  151. package/scripts/constants/articles/breaking-strings-eu.d.ts +0 -7
  152. package/scripts/constants/articles/breaking-strings-global.d.ts +0 -7
  153. package/scripts/constants/articles/dashboard-builder-eu.d.ts +0 -7
  154. package/scripts/constants/articles/dashboard-builder-global.d.ts +0 -7
  155. package/scripts/constants/articles/deep-analysis-strings-eu.d.ts +0 -7
  156. package/scripts/constants/articles/deep-analysis-strings-global.d.ts +0 -7
  157. package/scripts/constants/articles/localized-keywords-eu.d.ts +0 -7
  158. package/scripts/constants/articles/swot-builder-eu.d.ts +0 -7
@@ -8,5 +8,4 @@
8
8
  import type { LanguageMap, LangTitleSubtitle, BreakingStrings } from '../../types/index.js';
9
9
  export declare const BREAKING_NEWS_TITLES: LanguageMap<(date: string) => LangTitleSubtitle>;
10
10
  export declare const BREAKING_STRINGS: LanguageMap<BreakingStrings>;
11
- /** Localized body-text strings for the committee-analysis deep-analysis section */
12
11
  //# sourceMappingURL=breaking.d.ts.map
@@ -58,12 +58,15 @@ export const BREAKING_NEWS_TITLES = {
58
58
  subtitle: '投票异常、联盟变化和关键MEP活动的情报分析',
59
59
  }),
60
60
  };
61
- /** Committee reports titles per language */
62
- import { BREAKING_STRINGS_EU } from './breaking-strings-eu.js';
63
- import { BREAKING_STRINGS_GLOBAL } from './breaking-strings-global.js';
61
+ /** Breaking news strings per language */
62
+ import { BREAKING_STRINGS_NORDIC } from './breaking-strings-nordic.js';
63
+ import { BREAKING_STRINGS_CENTRAL } from './breaking-strings-central.js';
64
+ import { BREAKING_STRINGS_WEST } from './breaking-strings-west.js';
65
+ import { BREAKING_STRINGS_EAST } from './breaking-strings-east.js';
64
66
  export const BREAKING_STRINGS = {
65
- ...BREAKING_STRINGS_EU,
66
- ...BREAKING_STRINGS_GLOBAL,
67
+ ...BREAKING_STRINGS_NORDIC,
68
+ ...BREAKING_STRINGS_CENTRAL,
69
+ ...BREAKING_STRINGS_WEST,
70
+ ...BREAKING_STRINGS_EAST,
67
71
  };
68
- /** Localized body-text strings for the committee-analysis deep-analysis section */
69
72
  //# sourceMappingURL=breaking.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/AR
3
+ * @description AR dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** AR dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_AR: DashboardBuilderStrings;
8
+ //# sourceMappingURL=ar.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** AR dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_AR = {
5
+ votingOverview: 'نظرة عامة على التصويت',
6
+ totalVotes: 'إجمالي الأصوات',
7
+ adopted: 'معتمدة',
8
+ rejected: 'مرفوضة',
9
+ anomalies: 'شذوذات',
10
+ politicalGroupCohesion: 'تماسك المجموعات السياسية',
11
+ groupCohesionRates: 'معدلات تماسك المجموعات',
12
+ cohesionPct: 'التماسك %',
13
+ scheduledActivity: 'النشاط المجدول',
14
+ plenaryEvents: 'فعاليات الجلسة العامة',
15
+ committeeMeetings: 'اجتماعات اللجان',
16
+ documents: 'الوثائق',
17
+ pipelineProcedures: 'إجراءات خط الأنابيب',
18
+ parliamentaryQuestions: 'الأسئلة البرلمانية',
19
+ questionsFiled: 'الأسئلة المقدمة',
20
+ bottleneckProcedures: 'إجراءات الاختناق',
21
+ feedActivity: 'نشاط التغذية',
22
+ adoptedTexts: 'النصوص المعتمدة',
23
+ events: 'الفعاليات',
24
+ procedures: 'الإجراءات',
25
+ mepUpdates: 'تحديثات الأعضاء',
26
+ activitySummary: 'ملخص النشاط',
27
+ totalItems: 'إجمالي العناصر',
28
+ feedBreakdown: 'توزيع التغذية',
29
+ items: 'العناصر',
30
+ pipelineHealth: 'صحة خط الأنابيب',
31
+ healthScore: 'درجة الصحة',
32
+ throughput: 'معدل الإنتاجية',
33
+ status: 'الحالة',
34
+ pipelineStrong: 'قوي',
35
+ pipelineModerate: 'معتدل',
36
+ pipelineWeak: 'ضعيف',
37
+ committeeOverview: 'نظرة عامة على اللجان',
38
+ totalCommittees: 'إجمالي اللجان',
39
+ activeCommittees: 'اللجان النشطة',
40
+ activityRate: 'معدل النشاط',
41
+ documentsProduced: 'الوثائق المنتجة',
42
+ documentOutputByCommittee: 'إنتاج الوثائق حسب اللجنة',
43
+ documentsPerCommittee: 'الوثائق لكل لجنة',
44
+ coalitionAlignment: 'توافق التحالف',
45
+ alignmentScore: 'درجة التوافق',
46
+ votingBlocs: 'كتل التصويت',
47
+ coalitionShift: 'تحول التحالف',
48
+ coalitionStrengthening: 'تعزيز',
49
+ coalitionWeakening: 'إضعاف',
50
+ coalitionStable: 'مستقر',
51
+ coalitionRadarChart: 'رادار التحالف',
52
+ pipelineStatus: 'حالة الإجراءات',
53
+ onTrack: 'في المسار',
54
+ delayed: 'متأخر',
55
+ blocked: 'محظور',
56
+ fastTracked: 'مسار سريع',
57
+ pipelineStatusChart: 'مخطط حالة الإجراءات',
58
+ trendAnalysis: 'تحليل الاتجاهات',
59
+ weekOverWeek: 'أسبوع إلى أسبوع',
60
+ monthOverMonth: 'شهر إلى شهر',
61
+ trendImproving: 'تحسن',
62
+ trendDeclining: 'تراجع',
63
+ trendStableLabel: 'مستقر',
64
+ activityTrendChart: 'اتجاه النشاط',
65
+ stakeholderImpact: 'تأثير أصحاب المصلحة',
66
+ impactScore: 'درجة التأثير',
67
+ impactPositive: 'إيجابي',
68
+ impactNegative: 'سلبي',
69
+ impactNeutral: 'محايد',
70
+ };
71
+ //# sourceMappingURL=ar.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/DA
3
+ * @description DA dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** DA dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_DA: DashboardBuilderStrings;
8
+ //# sourceMappingURL=da.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** DA dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_DA = {
5
+ votingOverview: 'Afstemningsoversigt',
6
+ totalVotes: 'Samlede stemmer',
7
+ adopted: 'Vedtaget',
8
+ rejected: 'Afvist',
9
+ anomalies: 'Anomalier',
10
+ politicalGroupCohesion: 'Politisk gruppesamhørighed',
11
+ groupCohesionRates: 'Gruppesamhørighed',
12
+ cohesionPct: 'Samhørighed %',
13
+ scheduledActivity: 'Planlagt aktivitet',
14
+ plenaryEvents: 'Plenarmøder',
15
+ committeeMeetings: 'Udvalgsmøder',
16
+ documents: 'Dokumenter',
17
+ pipelineProcedures: 'Pipeline-procedurer',
18
+ parliamentaryQuestions: 'Parlamentariske spørgsmål',
19
+ questionsFiled: 'Indsendte spørgsmål',
20
+ bottleneckProcedures: 'Flaskehalsprocedurer',
21
+ feedActivity: 'Feed-aktivitet',
22
+ adoptedTexts: 'Vedtagne tekster',
23
+ events: 'Begivenheder',
24
+ procedures: 'Procedurer',
25
+ mepUpdates: 'MEP-opdateringer',
26
+ activitySummary: 'Aktivitetsoversigt',
27
+ totalItems: 'Samlede elementer',
28
+ feedBreakdown: 'Feed-fordeling',
29
+ items: 'Elementer',
30
+ pipelineHealth: 'Pipeline-sundhed',
31
+ healthScore: 'Sundhedsscore',
32
+ throughput: 'Gennemløb',
33
+ status: 'Status',
34
+ pipelineStrong: 'Stærk',
35
+ pipelineModerate: 'Moderat',
36
+ pipelineWeak: 'Svag',
37
+ committeeOverview: 'Udvalgsoversigt',
38
+ totalCommittees: 'Samlede udvalg',
39
+ activeCommittees: 'Aktive udvalg',
40
+ activityRate: 'Aktivitetsrate',
41
+ documentsProduced: 'Producerede dokumenter',
42
+ documentOutputByCommittee: 'Dokumentproduktion per udvalg',
43
+ documentsPerCommittee: 'Dokumenter per udvalg',
44
+ coalitionAlignment: 'Koalitionsafstemning',
45
+ alignmentScore: 'Indretningsscore',
46
+ votingBlocs: 'Afstemningsblokke',
47
+ coalitionShift: 'Koalitionsskift',
48
+ coalitionStrengthening: 'Styrkelse',
49
+ coalitionWeakening: 'Svækkelse',
50
+ coalitionStable: 'Stabil',
51
+ coalitionRadarChart: 'Koalitionsradar',
52
+ pipelineStatus: 'Pipeline-status',
53
+ onTrack: 'På sporet',
54
+ delayed: 'Forsinket',
55
+ blocked: 'Blokeret',
56
+ fastTracked: 'Fremskyndet',
57
+ pipelineStatusChart: 'Pipeline-statusdiagram',
58
+ trendAnalysis: 'Trendanalyse',
59
+ weekOverWeek: 'Uge-til-uge',
60
+ monthOverMonth: 'Måned-til-måned',
61
+ trendImproving: 'Forbedring',
62
+ trendDeclining: 'Fald',
63
+ trendStableLabel: 'Stabil',
64
+ activityTrendChart: 'Aktivitetstrend',
65
+ stakeholderImpact: 'Interessentpåvirkning',
66
+ impactScore: 'Påvirkningsscore',
67
+ impactPositive: 'Positiv',
68
+ impactNegative: 'Negativ',
69
+ impactNeutral: 'Neutral',
70
+ };
71
+ //# sourceMappingURL=da.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/DE
3
+ * @description DE dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** DE dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_DE: DashboardBuilderStrings;
8
+ //# sourceMappingURL=de.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** DE dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_DE = {
5
+ votingOverview: 'Abstimmungsübersicht',
6
+ totalVotes: 'Gesamtabstimmungen',
7
+ adopted: 'Angenommen',
8
+ rejected: 'Abgelehnt',
9
+ anomalies: 'Anomalien',
10
+ politicalGroupCohesion: 'Fraktionskohäsion',
11
+ groupCohesionRates: 'Fraktionskohäsionsraten',
12
+ cohesionPct: 'Kohäsion %',
13
+ scheduledActivity: 'Geplante Aktivität',
14
+ plenaryEvents: 'Plenarveranstaltungen',
15
+ committeeMeetings: 'Ausschusssitzungen',
16
+ documents: 'Dokumente',
17
+ pipelineProcedures: 'Pipeline-Verfahren',
18
+ parliamentaryQuestions: 'Parlamentarische Anfragen',
19
+ questionsFiled: 'Eingereichte Anfragen',
20
+ bottleneckProcedures: 'Engpassverfahren',
21
+ feedActivity: 'Feed-Aktivität',
22
+ adoptedTexts: 'Angenommene Texte',
23
+ events: 'Veranstaltungen',
24
+ procedures: 'Verfahren',
25
+ mepUpdates: 'MdEP-Aktualisierungen',
26
+ activitySummary: 'Aktivitätszusammenfassung',
27
+ totalItems: 'Gesamtelemente',
28
+ feedBreakdown: 'Feed-Aufschlüsselung',
29
+ items: 'Elemente',
30
+ pipelineHealth: 'Pipeline-Gesundheit',
31
+ healthScore: 'Gesundheitswert',
32
+ throughput: 'Durchsatz',
33
+ status: 'Status',
34
+ pipelineStrong: 'Stark',
35
+ pipelineModerate: 'Mäßig',
36
+ pipelineWeak: 'Schwach',
37
+ committeeOverview: 'Ausschussübersicht',
38
+ totalCommittees: 'Gesamtausschüsse',
39
+ activeCommittees: 'Aktive Ausschüsse',
40
+ activityRate: 'Aktivitätsrate',
41
+ documentsProduced: 'Produzierte Dokumente',
42
+ documentOutputByCommittee: 'Dokumentenproduktion je Ausschuss',
43
+ documentsPerCommittee: 'Dokumente je Ausschuss',
44
+ coalitionAlignment: 'Koalitionsausrichtung',
45
+ alignmentScore: 'Ausrichtungswert',
46
+ votingBlocs: 'Abstimmungsblöcke',
47
+ coalitionShift: 'Koalitionswandel',
48
+ coalitionStrengthening: 'Stärkung',
49
+ coalitionWeakening: 'Schwächung',
50
+ coalitionStable: 'Stabil',
51
+ coalitionRadarChart: 'Koalitionsradar',
52
+ pipelineStatus: 'Pipeline-Status',
53
+ onTrack: 'Im Zeitplan',
54
+ delayed: 'Verzögert',
55
+ blocked: 'Blockiert',
56
+ fastTracked: 'Beschleunigt',
57
+ pipelineStatusChart: 'Pipeline-Statusdiagramm',
58
+ trendAnalysis: 'Trendanalyse',
59
+ weekOverWeek: 'Woche-zu-Woche',
60
+ monthOverMonth: 'Monat-zu-Monat',
61
+ trendImproving: 'Verbesserung',
62
+ trendDeclining: 'Rückgang',
63
+ trendStableLabel: 'Stabil',
64
+ activityTrendChart: 'Aktivitätstrend',
65
+ stakeholderImpact: 'Stakeholder-Einfluss',
66
+ impactScore: 'Einflusswert',
67
+ impactPositive: 'Positiv',
68
+ impactNegative: 'Negativ',
69
+ impactNeutral: 'Neutral',
70
+ };
71
+ //# sourceMappingURL=de.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/EN
3
+ * @description EN dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** EN dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_EN: DashboardBuilderStrings;
8
+ //# sourceMappingURL=en.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** EN dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_EN = {
5
+ votingOverview: 'Voting Overview',
6
+ totalVotes: 'Total Votes',
7
+ adopted: 'Adopted',
8
+ rejected: 'Rejected',
9
+ anomalies: 'Anomalies',
10
+ politicalGroupCohesion: 'Political Group Cohesion',
11
+ groupCohesionRates: 'Group Cohesion Rates',
12
+ cohesionPct: 'Cohesion %',
13
+ scheduledActivity: 'Scheduled Activity',
14
+ plenaryEvents: 'Plenary Events',
15
+ committeeMeetings: 'Committee Meetings',
16
+ documents: 'Documents',
17
+ pipelineProcedures: 'Pipeline Procedures',
18
+ parliamentaryQuestions: 'Parliamentary Questions',
19
+ questionsFiled: 'Questions Filed',
20
+ bottleneckProcedures: 'Bottleneck Procedures',
21
+ feedActivity: 'Feed Activity',
22
+ adoptedTexts: 'Adopted Texts',
23
+ events: 'Events',
24
+ procedures: 'Procedures',
25
+ mepUpdates: 'MEP Updates',
26
+ activitySummary: 'Activity Summary',
27
+ totalItems: 'Total Items',
28
+ feedBreakdown: 'Feed Breakdown',
29
+ items: 'Items',
30
+ pipelineHealth: 'Pipeline Health',
31
+ healthScore: 'Health Score',
32
+ throughput: 'Throughput',
33
+ status: 'Status',
34
+ pipelineStrong: 'Strong',
35
+ pipelineModerate: 'Moderate',
36
+ pipelineWeak: 'Weak',
37
+ committeeOverview: 'Committee Overview',
38
+ totalCommittees: 'Total Committees',
39
+ activeCommittees: 'Active Committees',
40
+ activityRate: 'Activity Rate',
41
+ documentsProduced: 'Documents Produced',
42
+ documentOutputByCommittee: 'Document Output by Committee',
43
+ documentsPerCommittee: 'Documents per Committee',
44
+ coalitionAlignment: 'Coalition Alignment',
45
+ alignmentScore: 'Alignment Score',
46
+ votingBlocs: 'Voting Blocs',
47
+ coalitionShift: 'Coalition Shift',
48
+ coalitionStrengthening: 'Strengthening',
49
+ coalitionWeakening: 'Weakening',
50
+ coalitionStable: 'Stable',
51
+ coalitionRadarChart: 'Coalition Radar',
52
+ pipelineStatus: 'Pipeline Status',
53
+ onTrack: 'On Track',
54
+ delayed: 'Delayed',
55
+ blocked: 'Blocked',
56
+ fastTracked: 'Fast-Tracked',
57
+ pipelineStatusChart: 'Pipeline Status Chart',
58
+ trendAnalysis: 'Trend Analysis',
59
+ weekOverWeek: 'Week-over-Week',
60
+ monthOverMonth: 'Month-over-Month',
61
+ trendImproving: 'Improving',
62
+ trendDeclining: 'Declining',
63
+ trendStableLabel: 'Stable',
64
+ activityTrendChart: 'Activity Trend',
65
+ stakeholderImpact: 'Stakeholder Impact',
66
+ impactScore: 'Impact Score',
67
+ impactPositive: 'Positive',
68
+ impactNegative: 'Negative',
69
+ impactNeutral: 'Neutral',
70
+ };
71
+ //# sourceMappingURL=en.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/ES
3
+ * @description ES dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** ES dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_ES: DashboardBuilderStrings;
8
+ //# sourceMappingURL=es.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** ES dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_ES = {
5
+ votingOverview: 'Resumen de votaciones',
6
+ totalVotes: 'Total de votos',
7
+ adopted: 'Adoptados',
8
+ rejected: 'Rechazados',
9
+ anomalies: 'Anomalías',
10
+ politicalGroupCohesion: 'Cohesión de grupos políticos',
11
+ groupCohesionRates: 'Tasas de cohesión de grupos',
12
+ cohesionPct: 'Cohesión %',
13
+ scheduledActivity: 'Actividad programada',
14
+ plenaryEvents: 'Eventos plenarios',
15
+ committeeMeetings: 'Reuniones de comisión',
16
+ documents: 'Documentos',
17
+ pipelineProcedures: 'Procedimientos en curso',
18
+ parliamentaryQuestions: 'Preguntas parlamentarias',
19
+ questionsFiled: 'Preguntas presentadas',
20
+ bottleneckProcedures: 'Procedimientos con cuello de botella',
21
+ feedActivity: 'Actividad del feed',
22
+ adoptedTexts: 'Textos adoptados',
23
+ events: 'Eventos',
24
+ procedures: 'Procedimientos',
25
+ mepUpdates: 'Actualizaciones de eurodiputados',
26
+ activitySummary: 'Resumen de actividad',
27
+ totalItems: 'Total de elementos',
28
+ feedBreakdown: 'Desglose del feed',
29
+ items: 'Elementos',
30
+ pipelineHealth: 'Salud del pipeline',
31
+ healthScore: 'Puntuación de salud',
32
+ throughput: 'Rendimiento',
33
+ status: 'Estado',
34
+ pipelineStrong: 'Fuerte',
35
+ pipelineModerate: 'Moderado',
36
+ pipelineWeak: 'Débil',
37
+ committeeOverview: 'Resumen de comisiones',
38
+ totalCommittees: 'Total de comisiones',
39
+ activeCommittees: 'Comisiones activas',
40
+ activityRate: 'Tasa de actividad',
41
+ documentsProduced: 'Documentos producidos',
42
+ documentOutputByCommittee: 'Producción documental por comisión',
43
+ documentsPerCommittee: 'Documentos por comisión',
44
+ coalitionAlignment: 'Alineación de coalición',
45
+ alignmentScore: 'Puntuación de alineación',
46
+ votingBlocs: 'Bloques de votación',
47
+ coalitionShift: 'Cambio de coalición',
48
+ coalitionStrengthening: 'Fortalecimiento',
49
+ coalitionWeakening: 'Debilitamiento',
50
+ coalitionStable: 'Estable',
51
+ coalitionRadarChart: 'Radar de coalición',
52
+ pipelineStatus: 'Estado del proceso',
53
+ onTrack: 'En plazo',
54
+ delayed: 'Retrasado',
55
+ blocked: 'Bloqueado',
56
+ fastTracked: 'Acelerado',
57
+ pipelineStatusChart: 'Diagrama de proceso',
58
+ trendAnalysis: 'Análisis de tendencias',
59
+ weekOverWeek: 'Semana a semana',
60
+ monthOverMonth: 'Mes a mes',
61
+ trendImproving: 'Mejora',
62
+ trendDeclining: 'Declive',
63
+ trendStableLabel: 'Estable',
64
+ activityTrendChart: 'Tendencia de actividad',
65
+ stakeholderImpact: 'Impacto en partes interesadas',
66
+ impactScore: 'Puntuación de impacto',
67
+ impactPositive: 'Positivo',
68
+ impactNegative: 'Negativo',
69
+ impactNeutral: 'Neutral',
70
+ };
71
+ //# sourceMappingURL=es.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/FI
3
+ * @description FI dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** FI dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_FI: DashboardBuilderStrings;
8
+ //# sourceMappingURL=fi.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** FI dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_FI = {
5
+ votingOverview: 'Äänestyskatsaus',
6
+ totalVotes: 'Äänestykset yhteensä',
7
+ adopted: 'Hyväksytyt',
8
+ rejected: 'Hylätyt',
9
+ anomalies: 'Poikkeamat',
10
+ politicalGroupCohesion: 'Poliittisten ryhmien yhtenäisyys',
11
+ groupCohesionRates: 'Ryhmäyhtenäisyys',
12
+ cohesionPct: 'Yhtenäisyys %',
13
+ scheduledActivity: 'Aikataulutettu toiminta',
14
+ plenaryEvents: 'Täysistuntotapahtumat',
15
+ committeeMeetings: 'Valiokuntakokoukset',
16
+ documents: 'Asiakirjat',
17
+ pipelineProcedures: 'Pipeline-menettelyt',
18
+ parliamentaryQuestions: 'Parlamentaariset kysymykset',
19
+ questionsFiled: 'Jätetyt kysymykset',
20
+ bottleneckProcedures: 'Pullonkaulamenettelyt',
21
+ feedActivity: 'Syöteaktiivisuus',
22
+ adoptedTexts: 'Hyväksytyt tekstit',
23
+ events: 'Tapahtumat',
24
+ procedures: 'Menettelyt',
25
+ mepUpdates: 'MEP-päivitykset',
26
+ activitySummary: 'Toimintayhteenveto',
27
+ totalItems: 'Kohteet yhteensä',
28
+ feedBreakdown: 'Syötejakauma',
29
+ items: 'Kohteet',
30
+ pipelineHealth: 'Pipeline-terveys',
31
+ healthScore: 'Terveyspisteet',
32
+ throughput: 'Läpäisyaste',
33
+ status: 'Tila',
34
+ pipelineStrong: 'Vahva',
35
+ pipelineModerate: 'Kohtalainen',
36
+ pipelineWeak: 'Heikko',
37
+ committeeOverview: 'Valiokuntakatsaus',
38
+ totalCommittees: 'Valiokunnat yhteensä',
39
+ activeCommittees: 'Aktiiviset valiokunnat',
40
+ activityRate: 'Aktiivisuusaste',
41
+ documentsProduced: 'Tuotetut asiakirjat',
42
+ documentOutputByCommittee: 'Asiakirjatuotanto valiokunnittain',
43
+ documentsPerCommittee: 'Asiakirjat per valiokunta',
44
+ coalitionAlignment: 'Koalition suuntaus',
45
+ alignmentScore: 'Suuntauspisteet',
46
+ votingBlocs: 'Äänestysblokki',
47
+ coalitionShift: 'Koalitiomuutos',
48
+ coalitionStrengthening: 'Vahvistuminen',
49
+ coalitionWeakening: 'Heikkeneminen',
50
+ coalitionStable: 'Vakaa',
51
+ coalitionRadarChart: 'Koalitiotutkataulukko',
52
+ pipelineStatus: 'Pipeline-tila',
53
+ onTrack: 'Aikataulussa',
54
+ delayed: 'Viivästynyt',
55
+ blocked: 'Estetty',
56
+ fastTracked: 'Pikakaistalla',
57
+ pipelineStatusChart: 'Pipeline-tila kaavio',
58
+ trendAnalysis: 'Trendikatsaus',
59
+ weekOverWeek: 'Viikko edelliseen',
60
+ monthOverMonth: 'Kuukausi edelliseen',
61
+ trendImproving: 'Paranee',
62
+ trendDeclining: 'Heikentyy',
63
+ trendStableLabel: 'Vakaa',
64
+ activityTrendChart: 'Toimintakäyrä',
65
+ stakeholderImpact: 'Sidosryhmävaikutus',
66
+ impactScore: 'Vaikutuspisteet',
67
+ impactPositive: 'Positiivinen',
68
+ impactNegative: 'Negatiivinen',
69
+ impactNeutral: 'Neutraali',
70
+ };
71
+ //# sourceMappingURL=fi.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/FR
3
+ * @description FR dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** FR dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_FR: DashboardBuilderStrings;
8
+ //# sourceMappingURL=fr.d.ts.map
@@ -0,0 +1,71 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** FR dashboard-builder strings */
4
+ export const DASHBOARD_BUILDER_STRINGS_FR = {
5
+ votingOverview: 'Aperçu des votes',
6
+ totalVotes: 'Total des votes',
7
+ adopted: 'Adoptés',
8
+ rejected: 'Rejetés',
9
+ anomalies: 'Anomalies',
10
+ politicalGroupCohesion: 'Cohésion des groupes politiques',
11
+ groupCohesionRates: 'Taux de cohésion des groupes',
12
+ cohesionPct: 'Cohésion %',
13
+ scheduledActivity: 'Activité programmée',
14
+ plenaryEvents: 'Événements pléniers',
15
+ committeeMeetings: 'Réunions de commission',
16
+ documents: 'Documents',
17
+ pipelineProcedures: 'Procédures en cours',
18
+ parliamentaryQuestions: 'Questions parlementaires',
19
+ questionsFiled: 'Questions déposées',
20
+ bottleneckProcedures: "Procédures en goulot d'étranglement",
21
+ feedActivity: 'Activité du flux',
22
+ adoptedTexts: 'Textes adoptés',
23
+ events: 'Événements',
24
+ procedures: 'Procédures',
25
+ mepUpdates: 'Mises à jour des députés',
26
+ activitySummary: "Résumé d'activité",
27
+ totalItems: 'Total des éléments',
28
+ feedBreakdown: 'Répartition du flux',
29
+ items: 'Éléments',
30
+ pipelineHealth: 'Santé du pipeline',
31
+ healthScore: 'Score de santé',
32
+ throughput: 'Débit',
33
+ status: 'Statut',
34
+ pipelineStrong: 'Fort',
35
+ pipelineModerate: 'Modéré',
36
+ pipelineWeak: 'Faible',
37
+ committeeOverview: 'Aperçu des commissions',
38
+ totalCommittees: 'Total des commissions',
39
+ activeCommittees: 'Commissions actives',
40
+ activityRate: "Taux d'activité",
41
+ documentsProduced: 'Documents produits',
42
+ documentOutputByCommittee: 'Production documentaire par commission',
43
+ documentsPerCommittee: 'Documents par commission',
44
+ coalitionAlignment: 'Alignement de coalition',
45
+ alignmentScore: "Score d'alignement",
46
+ votingBlocs: 'Blocs de vote',
47
+ coalitionShift: 'Évolution de coalition',
48
+ coalitionStrengthening: 'Renforcement',
49
+ coalitionWeakening: 'Affaiblissement',
50
+ coalitionStable: 'Stable',
51
+ coalitionRadarChart: 'Radar de coalition',
52
+ pipelineStatus: 'État du pipeline',
53
+ onTrack: 'Dans les délais',
54
+ delayed: 'Retardé',
55
+ blocked: 'Bloqué',
56
+ fastTracked: 'Accéléré',
57
+ pipelineStatusChart: 'Diagramme du pipeline',
58
+ trendAnalysis: 'Analyse des tendances',
59
+ weekOverWeek: 'Semaine sur semaine',
60
+ monthOverMonth: 'Mois sur mois',
61
+ trendImproving: 'Amélioration',
62
+ trendDeclining: 'Déclin',
63
+ trendStableLabel: 'Stable',
64
+ activityTrendChart: "Tendance d'activité",
65
+ stakeholderImpact: 'Impact sur les parties prenantes',
66
+ impactScore: "Score d'impact",
67
+ impactPositive: 'Positif',
68
+ impactNegative: 'Négatif',
69
+ impactNeutral: 'Neutre',
70
+ };
71
+ //# sourceMappingURL=fr.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/Dashboard/HE
3
+ * @description HE dashboard-builder strings.
4
+ */
5
+ import type { DashboardBuilderStrings } from '../../../types/index.js';
6
+ /** HE dashboard-builder strings */
7
+ export declare const DASHBOARD_BUILDER_STRINGS_HE: DashboardBuilderStrings;
8
+ //# sourceMappingURL=he.d.ts.map