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
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** AR deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_AR = {
5
+ sectionHeading: 'تحليل سياسي معمّق',
6
+ whatHeading: 'ماذا حدث',
7
+ whoHeading: 'الجهات الفاعلة الرئيسية',
8
+ whenHeading: 'الجدول الزمني',
9
+ whyHeading: 'لماذا هذا مهم — الأسباب الجذرية',
10
+ stakeholderHeading: 'الرابحون والخاسرون',
11
+ winnerLabel: 'رابح',
12
+ loserLabel: 'خاسر',
13
+ neutralLabel: 'محايد',
14
+ impactHeading: 'تقييم الأثر',
15
+ politicalLabel: 'سياسي',
16
+ economicLabel: 'اقتصادي',
17
+ socialLabel: 'اجتماعي',
18
+ legalLabel: 'قانوني',
19
+ geopoliticalLabel: 'جيوسياسي',
20
+ consequencesHeading: 'إجراءات ← عواقب',
21
+ actionLabel: 'إجراء',
22
+ consequenceLabel: 'عاقبة',
23
+ severityColumnLabel: 'شدة',
24
+ mistakesHeading: 'أخطاء في الحسابات وفرص ضائعة',
25
+ alternativeLabel: 'كان ينبغي',
26
+ outlookHeading: 'النظرة الاستراتيجية',
27
+ severityLow: 'منخفض',
28
+ severityMedium: 'متوسط',
29
+ severityHigh: 'مرتفع',
30
+ severityCritical: 'حرج',
31
+ executiveSummaryHeading: 'ملخص تنفيذي',
32
+ confidenceHigh: 'ثقة عالية',
33
+ confidenceMedium: 'ثقة متوسطة',
34
+ confidenceLow: 'ثقة منخفضة',
35
+ evidenceRefsHeading: 'الأدلة',
36
+ counterArgumentsHeading: 'حجج مضادة',
37
+ conclusionLabel: 'استنتاج:',
38
+ premiseLabel: 'مقدمة:',
39
+ inferenceLabel: 'استدلال:',
40
+ reasoningChainsHeading: 'سلاسل الاستدلال',
41
+ scenarioPlanningHeading: 'تخطيط السيناريوهات',
42
+ bestCaseLabel: 'أفضل سيناريو',
43
+ worstCaseLabel: 'أسوأ سيناريو',
44
+ mostLikelyLabel: 'الأكثر احتمالاً',
45
+ wildcardsLabel: 'عوامل غير متوقعة',
46
+ probabilityLabel: 'الاحتمالية',
47
+ triggersLabel: 'المحفزات',
48
+ impliedImpactsLabel: 'التأثيرات المتوقعة',
49
+ timelineLabel: 'الجدول الزمني',
50
+ analysisMethodologyHeading: 'منهجية التحليل',
51
+ iterationCountLabel: 'التكرارات',
52
+ evidenceStrengthLabel: 'قوة الأدلة',
53
+ evidenceStrong: 'قوي',
54
+ evidenceModerate: 'معتدل',
55
+ evidenceWeak: 'ضعيف',
56
+ iterationInitial: 'التقييم الأولي',
57
+ iterationStakeholderChallenge: 'تحدي أصحاب المصلحة',
58
+ iterationEvidenceValidation: 'التحقق من الأدلة',
59
+ iterationSynthesis: 'التوليف',
60
+ overallConfidenceLabel: 'الثقة الإجمالية',
61
+ pendingNotice: 'التحليل معلق — سيتم استكمال هذا القسم بواسطة سير العمل التحريري التحليلي.',
62
+ perspectivesHeading: 'وجهات نظر أصحاب المصلحة',
63
+ outcomeMatrixHeading: 'مصفوفة نتائج أصحاب المصلحة',
64
+ confidenceLabel: 'الثقة',
65
+ politicalGroupsLabel: 'المجموعات السياسية',
66
+ civilSocietyLabel: 'المجتمع المدني',
67
+ industryLabel: 'الصناعة',
68
+ nationalGovtsLabel: 'الحكومات الوطنية',
69
+ citizensLabel: 'المواطنون',
70
+ euInstitutionsLabel: 'مؤسسات الاتحاد الأوروبي',
71
+ positiveLabel: 'إيجابي',
72
+ negativeLabel: 'سلبي',
73
+ mixedLabel: 'مختلط',
74
+ };
75
+ //# sourceMappingURL=ar.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/DA
3
+ * @description DA deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** DA deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_DA: DeepAnalysisStrings;
8
+ //# sourceMappingURL=da.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** DA deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_DA = {
5
+ sectionHeading: 'Dybdegående Politisk Analyse',
6
+ whatHeading: 'Hvad Skete',
7
+ whoHeading: 'Nøgleaktører',
8
+ whenHeading: 'Tidslinje',
9
+ whyHeading: 'Hvorfor Det Betyder Noget — Grundårsager',
10
+ stakeholderHeading: 'Vindere & Tabere',
11
+ winnerLabel: 'Vinder',
12
+ loserLabel: 'Taber',
13
+ neutralLabel: 'Neutral',
14
+ impactHeading: 'Konsekvensvurdering',
15
+ politicalLabel: 'Politisk',
16
+ economicLabel: 'Økonomisk',
17
+ socialLabel: 'Social',
18
+ legalLabel: 'Juridisk',
19
+ geopoliticalLabel: 'Geopolitisk',
20
+ consequencesHeading: 'Handlinger → Konsekvenser',
21
+ actionLabel: 'Handling',
22
+ consequenceLabel: 'Konsekvens',
23
+ severityColumnLabel: 'Alvorlighed',
24
+ mistakesHeading: 'Fejlvurderinger & Forpassede Muligheder',
25
+ alternativeLabel: 'Burde have',
26
+ outlookHeading: 'Strategisk Udsigt',
27
+ severityLow: 'Lav',
28
+ severityMedium: 'Middel',
29
+ severityHigh: 'Høj',
30
+ severityCritical: 'Kritisk',
31
+ executiveSummaryHeading: 'Resumé',
32
+ confidenceHigh: 'Høj Tillid',
33
+ confidenceMedium: 'Middel Tillid',
34
+ confidenceLow: 'Lav Tillid',
35
+ evidenceRefsHeading: 'Beviser',
36
+ counterArgumentsHeading: 'Modargumenter',
37
+ conclusionLabel: 'Konklusion:',
38
+ premiseLabel: 'Præmis:',
39
+ inferenceLabel: 'Slutning:',
40
+ reasoningChainsHeading: 'Ræsonnementskæder',
41
+ scenarioPlanningHeading: 'Scenarieplanlægning',
42
+ bestCaseLabel: 'Bedste Scenarie',
43
+ worstCaseLabel: 'Værste Scenarie',
44
+ mostLikelyLabel: 'Mest Sandsynligt',
45
+ wildcardsLabel: 'Jokere',
46
+ probabilityLabel: 'Sandsynlighed',
47
+ triggersLabel: 'Udløsere',
48
+ impliedImpactsLabel: 'Forventede Konsekvenser',
49
+ timelineLabel: 'Tidslinje',
50
+ analysisMethodologyHeading: 'Analysemetodik',
51
+ iterationCountLabel: 'Iterationer',
52
+ evidenceStrengthLabel: 'Bevisstyrke',
53
+ evidenceStrong: 'Stærk',
54
+ evidenceModerate: 'Moderat',
55
+ evidenceWeak: 'Svag',
56
+ iterationInitial: 'Indledende Vurdering',
57
+ iterationStakeholderChallenge: 'Interessentudfordring',
58
+ iterationEvidenceValidation: 'Bevisvalidering',
59
+ iterationSynthesis: 'Syntese',
60
+ overallConfidenceLabel: 'Samlet Tillid',
61
+ pendingNotice: 'Analyse afventer — denne sektion vil blive udfyldt af det redaktionelle analyse-workflow.',
62
+ perspectivesHeading: 'Interessentperspektiver',
63
+ outcomeMatrixHeading: 'Interessentresultatmatrix',
64
+ confidenceLabel: 'Konfidens',
65
+ politicalGroupsLabel: 'Politiske grupper',
66
+ civilSocietyLabel: 'Civilsamfund',
67
+ industryLabel: 'Industri',
68
+ nationalGovtsLabel: 'Nationale regeringer',
69
+ citizensLabel: 'Borgere',
70
+ euInstitutionsLabel: 'EU-institutioner',
71
+ positiveLabel: 'Positiv',
72
+ negativeLabel: 'Negativ',
73
+ mixedLabel: 'Blandet',
74
+ };
75
+ //# sourceMappingURL=da.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/DE
3
+ * @description DE deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** DE deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_DE: DeepAnalysisStrings;
8
+ //# sourceMappingURL=de.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** DE deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_DE = {
5
+ sectionHeading: 'Vertiefte Politische Analyse',
6
+ whatHeading: 'Was Geschah',
7
+ whoHeading: 'Schlüsselakteure',
8
+ whenHeading: 'Zeitachse',
9
+ whyHeading: 'Warum Es Wichtig Ist — Grundursachen',
10
+ stakeholderHeading: 'Gewinner & Verlierer',
11
+ winnerLabel: 'Gewinner',
12
+ loserLabel: 'Verlierer',
13
+ neutralLabel: 'Neutral',
14
+ impactHeading: 'Folgenabschätzung',
15
+ politicalLabel: 'Politisch',
16
+ economicLabel: 'Wirtschaftlich',
17
+ socialLabel: 'Sozial',
18
+ legalLabel: 'Rechtlich',
19
+ geopoliticalLabel: 'Geopolitisch',
20
+ consequencesHeading: 'Handlungen → Konsequenzen',
21
+ actionLabel: 'Handlung',
22
+ consequenceLabel: 'Konsequenz',
23
+ severityColumnLabel: 'Schweregrad',
24
+ mistakesHeading: 'Fehleinschätzungen & Verpasste Chancen',
25
+ alternativeLabel: 'Hätte sollen',
26
+ outlookHeading: 'Strategischer Ausblick',
27
+ severityLow: 'Niedrig',
28
+ severityMedium: 'Mittel',
29
+ severityHigh: 'Hoch',
30
+ severityCritical: 'Kritisch',
31
+ executiveSummaryHeading: 'Zusammenfassung',
32
+ confidenceHigh: 'Hohe Konfidenz',
33
+ confidenceMedium: 'Mittlere Konfidenz',
34
+ confidenceLow: 'Niedrige Konfidenz',
35
+ evidenceRefsHeading: 'Belege',
36
+ counterArgumentsHeading: 'Gegenargumente',
37
+ conclusionLabel: 'Schlussfolgerung:',
38
+ premiseLabel: 'Prämisse:',
39
+ inferenceLabel: 'Ableitung:',
40
+ reasoningChainsHeading: 'Argumentationsketten',
41
+ scenarioPlanningHeading: 'Szenarioplanung',
42
+ bestCaseLabel: 'Bester Fall',
43
+ worstCaseLabel: 'Schlimmster Fall',
44
+ mostLikelyLabel: 'Wahrscheinlichster Fall',
45
+ wildcardsLabel: 'Unbekannte Faktoren',
46
+ probabilityLabel: 'Wahrscheinlichkeit',
47
+ triggersLabel: 'Auslöser',
48
+ impliedImpactsLabel: 'Erwartete Auswirkungen',
49
+ timelineLabel: 'Zeitachse',
50
+ analysisMethodologyHeading: 'Analysemethodik',
51
+ iterationCountLabel: 'Iterationen',
52
+ evidenceStrengthLabel: 'Beweisstärke',
53
+ evidenceStrong: 'Stark',
54
+ evidenceModerate: 'Mäßig',
55
+ evidenceWeak: 'Schwach',
56
+ iterationInitial: 'Erstbewertung',
57
+ iterationStakeholderChallenge: 'Stakeholder-Herausforderung',
58
+ iterationEvidenceValidation: 'Beweisvalidierung',
59
+ iterationSynthesis: 'Synthese',
60
+ overallConfidenceLabel: 'Gesamtkonfidenz',
61
+ pendingNotice: 'Analyse ausstehend — dieser Abschnitt wird durch den redaktionellen Analyse-Workflow vervollständigt.',
62
+ perspectivesHeading: 'Stakeholder-Perspektiven',
63
+ outcomeMatrixHeading: 'Stakeholder-Ergebnismatrix',
64
+ confidenceLabel: 'Konfidenz',
65
+ politicalGroupsLabel: 'Politische Fraktionen',
66
+ civilSocietyLabel: 'Zivilgesellschaft',
67
+ industryLabel: 'Industrie',
68
+ nationalGovtsLabel: 'Nationale Regierungen',
69
+ citizensLabel: 'Bürger',
70
+ euInstitutionsLabel: 'EU-Institutionen',
71
+ positiveLabel: 'Positiv',
72
+ negativeLabel: 'Negativ',
73
+ mixedLabel: 'Gemischt',
74
+ };
75
+ //# sourceMappingURL=de.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/EN
3
+ * @description EN deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** EN deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_EN: DeepAnalysisStrings;
8
+ //# sourceMappingURL=en.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** EN deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_EN = {
5
+ sectionHeading: 'Deep Political Analysis',
6
+ whatHeading: 'What Happened',
7
+ whoHeading: 'Key Actors',
8
+ whenHeading: 'Timeline',
9
+ whyHeading: 'Why It Matters — Root Causes',
10
+ stakeholderHeading: 'Winners & Losers',
11
+ winnerLabel: 'Winner',
12
+ loserLabel: 'Loser',
13
+ neutralLabel: 'Neutral',
14
+ impactHeading: 'Impact Assessment',
15
+ politicalLabel: 'Political',
16
+ economicLabel: 'Economic',
17
+ socialLabel: 'Social',
18
+ legalLabel: 'Legal',
19
+ geopoliticalLabel: 'Geopolitical',
20
+ consequencesHeading: 'Actions → Consequences',
21
+ actionLabel: 'Action',
22
+ consequenceLabel: 'Consequence',
23
+ severityColumnLabel: 'Severity',
24
+ mistakesHeading: 'Miscalculations & Missed Opportunities',
25
+ alternativeLabel: 'Should have',
26
+ outlookHeading: 'Strategic Outlook',
27
+ severityLow: 'Low',
28
+ severityMedium: 'Medium',
29
+ severityHigh: 'High',
30
+ severityCritical: 'Critical',
31
+ executiveSummaryHeading: 'Executive Summary',
32
+ confidenceHigh: 'High Confidence',
33
+ confidenceMedium: 'Medium Confidence',
34
+ confidenceLow: 'Low Confidence',
35
+ evidenceRefsHeading: 'Evidence',
36
+ counterArgumentsHeading: 'Counter-arguments',
37
+ conclusionLabel: 'Conclusion:',
38
+ premiseLabel: 'Premise:',
39
+ inferenceLabel: 'Inference:',
40
+ reasoningChainsHeading: 'Reasoning Chains',
41
+ scenarioPlanningHeading: 'Scenario Planning',
42
+ bestCaseLabel: 'Best Case',
43
+ worstCaseLabel: 'Worst Case',
44
+ mostLikelyLabel: 'Most Likely',
45
+ wildcardsLabel: 'Wildcards',
46
+ probabilityLabel: 'Probability',
47
+ triggersLabel: 'Triggers',
48
+ impliedImpactsLabel: 'Implied Impacts',
49
+ timelineLabel: 'Timeline',
50
+ analysisMethodologyHeading: 'Analysis Methodology',
51
+ iterationCountLabel: 'Iterations',
52
+ evidenceStrengthLabel: 'Evidence Strength',
53
+ evidenceStrong: 'Strong',
54
+ evidenceModerate: 'Moderate',
55
+ evidenceWeak: 'Weak',
56
+ iterationInitial: 'Initial Assessment',
57
+ iterationStakeholderChallenge: 'Stakeholder Challenge',
58
+ iterationEvidenceValidation: 'Evidence Validation',
59
+ iterationSynthesis: 'Synthesis',
60
+ overallConfidenceLabel: 'Overall Confidence',
61
+ pendingNotice: 'Analysis pending — this section will be completed by the editorial intelligence workflow.',
62
+ perspectivesHeading: 'Multi-Stakeholder Perspectives',
63
+ outcomeMatrixHeading: 'Stakeholder Outcome Matrix',
64
+ confidenceLabel: 'Confidence',
65
+ politicalGroupsLabel: 'Political Groups',
66
+ civilSocietyLabel: 'Civil Society',
67
+ industryLabel: 'Industry',
68
+ nationalGovtsLabel: 'National Governments',
69
+ citizensLabel: 'Citizens',
70
+ euInstitutionsLabel: 'EU Institutions',
71
+ positiveLabel: 'Positive',
72
+ negativeLabel: 'Negative',
73
+ mixedLabel: 'Mixed',
74
+ };
75
+ //# sourceMappingURL=en.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/ES
3
+ * @description ES deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** ES deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_ES: DeepAnalysisStrings;
8
+ //# sourceMappingURL=es.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** ES deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_ES = {
5
+ sectionHeading: 'Análisis Político Profundo',
6
+ whatHeading: 'Qué Ocurrió',
7
+ whoHeading: 'Actores Clave',
8
+ whenHeading: 'Cronología',
9
+ whyHeading: 'Por Qué Importa — Causas Raíz',
10
+ stakeholderHeading: 'Ganadores & Perdedores',
11
+ winnerLabel: 'Ganador',
12
+ loserLabel: 'Perdedor',
13
+ neutralLabel: 'Neutral',
14
+ impactHeading: 'Evaluación de Impacto',
15
+ politicalLabel: 'Político',
16
+ economicLabel: 'Económico',
17
+ socialLabel: 'Social',
18
+ legalLabel: 'Jurídico',
19
+ geopoliticalLabel: 'Geopolítico',
20
+ consequencesHeading: 'Acciones → Consecuencias',
21
+ actionLabel: 'Acción',
22
+ consequenceLabel: 'Consecuencia',
23
+ severityColumnLabel: 'Gravedad',
24
+ mistakesHeading: 'Errores de Cálculo & Oportunidades Perdidas',
25
+ alternativeLabel: 'Debería haber',
26
+ outlookHeading: 'Perspectivas Estratégicas',
27
+ severityLow: 'Bajo',
28
+ severityMedium: 'Medio',
29
+ severityHigh: 'Alto',
30
+ severityCritical: 'Crítico',
31
+ executiveSummaryHeading: 'Resumen Ejecutivo',
32
+ confidenceHigh: 'Confianza Alta',
33
+ confidenceMedium: 'Confianza Media',
34
+ confidenceLow: 'Confianza Baja',
35
+ evidenceRefsHeading: 'Evidencias',
36
+ counterArgumentsHeading: 'Contraargumentos',
37
+ conclusionLabel: 'Conclusión:',
38
+ premiseLabel: 'Premisa:',
39
+ inferenceLabel: 'Inferencia:',
40
+ reasoningChainsHeading: 'Cadenas de Razonamiento',
41
+ scenarioPlanningHeading: 'Planificación de Escenarios',
42
+ bestCaseLabel: 'Mejor Escenario',
43
+ worstCaseLabel: 'Peor Escenario',
44
+ mostLikelyLabel: 'Más Probable',
45
+ wildcardsLabel: 'Factores Imprevistos',
46
+ probabilityLabel: 'Probabilidad',
47
+ triggersLabel: 'Desencadenantes',
48
+ impliedImpactsLabel: 'Impactos Previstos',
49
+ timelineLabel: 'Cronología',
50
+ analysisMethodologyHeading: 'Metodología de Análisis',
51
+ iterationCountLabel: 'Iteraciones',
52
+ evidenceStrengthLabel: 'Fuerza de la Evidencia',
53
+ evidenceStrong: 'Fuerte',
54
+ evidenceModerate: 'Moderada',
55
+ evidenceWeak: 'Débil',
56
+ iterationInitial: 'Evaluación Inicial',
57
+ iterationStakeholderChallenge: 'Desafío de Partes Interesadas',
58
+ iterationEvidenceValidation: 'Validación de Evidencia',
59
+ iterationSynthesis: 'Síntesis',
60
+ overallConfidenceLabel: 'Confianza Global',
61
+ pendingNotice: 'Análisis pendiente — esta sección será completada por el flujo de trabajo de análisis editorial.',
62
+ perspectivesHeading: 'Perspectivas de las Partes Interesadas',
63
+ outcomeMatrixHeading: 'Matriz de Resultados de Partes Interesadas',
64
+ confidenceLabel: 'Confianza',
65
+ politicalGroupsLabel: 'Grupos políticos',
66
+ civilSocietyLabel: 'Sociedad civil',
67
+ industryLabel: 'Industria',
68
+ nationalGovtsLabel: 'Gobiernos nacionales',
69
+ citizensLabel: 'Ciudadanos',
70
+ euInstitutionsLabel: 'Instituciones de la UE',
71
+ positiveLabel: 'Positivo',
72
+ negativeLabel: 'Negativo',
73
+ mixedLabel: 'Mixto',
74
+ };
75
+ //# sourceMappingURL=es.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/FI
3
+ * @description FI deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** FI deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_FI: DeepAnalysisStrings;
8
+ //# sourceMappingURL=fi.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** FI deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_FI = {
5
+ sectionHeading: 'Syvällinen Poliittinen Analyysi',
6
+ whatHeading: 'Mitä Tapahtui',
7
+ whoHeading: 'Keskeiset Toimijat',
8
+ whenHeading: 'Aikajana',
9
+ whyHeading: 'Miksi Sillä On Merkitystä — Juurisyyt',
10
+ stakeholderHeading: 'Voittajat & Häviäjät',
11
+ winnerLabel: 'Voittaja',
12
+ loserLabel: 'Häviäjä',
13
+ neutralLabel: 'Neutraali',
14
+ impactHeading: 'Vaikutusarviointi',
15
+ politicalLabel: 'Poliittinen',
16
+ economicLabel: 'Taloudellinen',
17
+ socialLabel: 'Sosiaalinen',
18
+ legalLabel: 'Oikeudellinen',
19
+ geopoliticalLabel: 'Geopoliittinen',
20
+ consequencesHeading: 'Toimet → Seuraukset',
21
+ actionLabel: 'Toimi',
22
+ consequenceLabel: 'Seuraus',
23
+ severityColumnLabel: 'Vakavuus',
24
+ mistakesHeading: 'Virhearvioinnit & Menetetyt Mahdollisuudet',
25
+ alternativeLabel: 'Olisi pitänyt',
26
+ outlookHeading: 'Strategiset Näkymät',
27
+ severityLow: 'Matala',
28
+ severityMedium: 'Keskitaso',
29
+ severityHigh: 'Korkea',
30
+ severityCritical: 'Kriittinen',
31
+ executiveSummaryHeading: 'Yhteenveto',
32
+ confidenceHigh: 'Korkea Luotettavuus',
33
+ confidenceMedium: 'Keskitason Luotettavuus',
34
+ confidenceLow: 'Matala Luotettavuus',
35
+ evidenceRefsHeading: 'Todisteet',
36
+ counterArgumentsHeading: 'Vasta-argumentit',
37
+ conclusionLabel: 'Johtopäätös:',
38
+ premiseLabel: 'Lähtökohta:',
39
+ inferenceLabel: 'Päätelmä:',
40
+ reasoningChainsHeading: 'Päättelyketjut',
41
+ scenarioPlanningHeading: 'Skenaarion Suunnittelu',
42
+ bestCaseLabel: 'Paras Skenaario',
43
+ worstCaseLabel: 'Pahin Skenaario',
44
+ mostLikelyLabel: 'Todennäköisin',
45
+ wildcardsLabel: 'Jokerikortit',
46
+ probabilityLabel: 'Todennäköisyys',
47
+ triggersLabel: 'Laukaisijat',
48
+ impliedImpactsLabel: 'Odotetut Vaikutukset',
49
+ timelineLabel: 'Aikajana',
50
+ analysisMethodologyHeading: 'Analyysimenetelmä',
51
+ iterationCountLabel: 'Iteraatiot',
52
+ evidenceStrengthLabel: 'Todistusvoima',
53
+ evidenceStrong: 'Vahva',
54
+ evidenceModerate: 'Kohtalainen',
55
+ evidenceWeak: 'Heikko',
56
+ iterationInitial: 'Alustava Arviointi',
57
+ iterationStakeholderChallenge: 'Sidosryhmähaaste',
58
+ iterationEvidenceValidation: 'Todisteiden Validointi',
59
+ iterationSynthesis: 'Synteesi',
60
+ overallConfidenceLabel: 'Kokonaisluotettavuus',
61
+ pendingNotice: 'Analyysi odottaa — tämä osio täydennetään toimituksellisen analyysin työnkulussa.',
62
+ perspectivesHeading: 'Sidosryhmänäkökulmat',
63
+ outcomeMatrixHeading: 'Sidosryhmätulosmatriisi',
64
+ confidenceLabel: 'Luotettavuus',
65
+ politicalGroupsLabel: 'Poliittiset ryhmät',
66
+ civilSocietyLabel: 'Kansalaisyhteiskunta',
67
+ industryLabel: 'Teollisuus',
68
+ nationalGovtsLabel: 'Kansalliset hallitukset',
69
+ citizensLabel: 'Kansalaiset',
70
+ euInstitutionsLabel: 'EU:n toimielimet',
71
+ positiveLabel: 'Positiivinen',
72
+ negativeLabel: 'Negatiivinen',
73
+ mixedLabel: 'Sekalainen',
74
+ };
75
+ //# sourceMappingURL=fi.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/FR
3
+ * @description FR deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** FR deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_FR: DeepAnalysisStrings;
8
+ //# sourceMappingURL=fr.d.ts.map
@@ -0,0 +1,75 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** FR deep-analysis strings */
4
+ export const DEEP_ANALYSIS_STRINGS_FR = {
5
+ sectionHeading: 'Analyse Politique Approfondie',
6
+ whatHeading: "Ce Qui S'est Passé",
7
+ whoHeading: 'Acteurs Clés',
8
+ whenHeading: 'Chronologie',
9
+ whyHeading: "Pourquoi C'est Important — Causes Profondes",
10
+ stakeholderHeading: 'Gagnants & Perdants',
11
+ winnerLabel: 'Gagnant',
12
+ loserLabel: 'Perdant',
13
+ neutralLabel: 'Neutre',
14
+ impactHeading: "Évaluation d'Impact",
15
+ politicalLabel: 'Politique',
16
+ economicLabel: 'Économique',
17
+ socialLabel: 'Social',
18
+ legalLabel: 'Juridique',
19
+ geopoliticalLabel: 'Géopolitique',
20
+ consequencesHeading: 'Actions → Conséquences',
21
+ actionLabel: 'Action',
22
+ consequenceLabel: 'Conséquence',
23
+ severityColumnLabel: 'Gravité',
24
+ mistakesHeading: 'Erreurs de Calcul & Opportunités Manquées',
25
+ alternativeLabel: 'Aurait dû',
26
+ outlookHeading: 'Perspectives Stratégiques',
27
+ severityLow: 'Faible',
28
+ severityMedium: 'Moyen',
29
+ severityHigh: 'Élevé',
30
+ severityCritical: 'Critique',
31
+ executiveSummaryHeading: 'Synthèse',
32
+ confidenceHigh: 'Confiance Élevée',
33
+ confidenceMedium: 'Confiance Moyenne',
34
+ confidenceLow: 'Confiance Faible',
35
+ evidenceRefsHeading: 'Preuves',
36
+ counterArgumentsHeading: 'Contre-arguments',
37
+ conclusionLabel: 'Conclusion :',
38
+ premiseLabel: 'Prémisse :',
39
+ inferenceLabel: 'Inférence :',
40
+ reasoningChainsHeading: 'Chaînes de Raisonnement',
41
+ scenarioPlanningHeading: 'Planification de Scénarios',
42
+ bestCaseLabel: 'Meilleur Scénario',
43
+ worstCaseLabel: 'Pire Scénario',
44
+ mostLikelyLabel: 'Plus Probable',
45
+ wildcardsLabel: 'Imprévus',
46
+ probabilityLabel: 'Probabilité',
47
+ triggersLabel: 'Déclencheurs',
48
+ impliedImpactsLabel: 'Impacts Attendus',
49
+ timelineLabel: 'Chronologie',
50
+ analysisMethodologyHeading: "Méthodologie d'Analyse",
51
+ iterationCountLabel: 'Itérations',
52
+ evidenceStrengthLabel: 'Force des Preuves',
53
+ evidenceStrong: 'Fort',
54
+ evidenceModerate: 'Modéré',
55
+ evidenceWeak: 'Faible',
56
+ iterationInitial: 'Évaluation Initiale',
57
+ iterationStakeholderChallenge: 'Défi des Parties Prenantes',
58
+ iterationEvidenceValidation: 'Validation des Preuves',
59
+ iterationSynthesis: 'Synthèse',
60
+ overallConfidenceLabel: 'Confiance Globale',
61
+ pendingNotice: "Analyse en attente — cette section sera complétée par le flux de travail d'analyse éditoriale.",
62
+ perspectivesHeading: 'Perspectives des Parties Prenantes',
63
+ outcomeMatrixHeading: 'Matrice des Résultats des Parties Prenantes',
64
+ confidenceLabel: 'Confiance',
65
+ politicalGroupsLabel: 'Groupes politiques',
66
+ civilSocietyLabel: 'Société civile',
67
+ industryLabel: 'Industrie',
68
+ nationalGovtsLabel: 'Gouvernements nationaux',
69
+ citizensLabel: 'Citoyens',
70
+ euInstitutionsLabel: "Institutions de l'UE",
71
+ positiveLabel: 'Positif',
72
+ negativeLabel: 'Négatif',
73
+ mixedLabel: 'Mixte',
74
+ };
75
+ //# sourceMappingURL=fr.js.map
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @module Constants/Articles/DeepAnalysis/HE
3
+ * @description HE deep-analysis strings.
4
+ */
5
+ import type { DeepAnalysisStrings } from '../../../types/index.js';
6
+ /** HE deep-analysis strings */
7
+ export declare const DEEP_ANALYSIS_STRINGS_HE: DeepAnalysisStrings;
8
+ //# sourceMappingURL=he.d.ts.map