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,278 @@
1
+ // SPDX-FileCopyrightText: 2024-2026 Hack23 AB
2
+ // SPDX-License-Identifier: Apache-2.0
3
+ /** Global language week-ahead titles */
4
+ export const WEEK_AHEAD_TITLES_GLOBAL = {
5
+ es: (start, end) => ({
6
+ title: `Semana Próxima: ${start} a ${end}`,
7
+ subtitle: 'Calendario del Parlamento Europeo, reuniones de comisión y debates plenarios para la próxima semana',
8
+ }),
9
+ nl: (start, end) => ({
10
+ title: `Week Vooruit: ${start} tot ${end}`,
11
+ subtitle: 'Europees Parlement kalender, commissievergaderingen en plenaire debatten voor de komende week',
12
+ }),
13
+ ar: (start, end) => ({
14
+ title: `الأسبوع القادم: ${start} إلى ${end}`,
15
+ subtitle: 'جدول أعمال البرلمان الأوروبي واجتماعات اللجان والنقاشات العامة للأسبوع القادم',
16
+ }),
17
+ he: (start, end) => ({
18
+ title: `השבוע הקרוב: ${start} עד ${end}`,
19
+ subtitle: 'לוח הזמנים של הפרלמנט האירופי, ישיבות ועדות ודיוני מליאה לשבוע הקרוב',
20
+ }),
21
+ ja: (start, end) => ({
22
+ title: `今週の予定: ${start} ~ ${end}`,
23
+ subtitle: '欧州議会のカレンダー、委員会会合、本会議の討論',
24
+ }),
25
+ ko: (start, end) => ({
26
+ title: `다음 주 일정: ${start} ~ ${end}`,
27
+ subtitle: '유럽 의회 일정, 위원회 회의 및 본회의 토론',
28
+ }),
29
+ zh: (start, end) => ({
30
+ title: `下周预告: ${start} 至 ${end}`,
31
+ subtitle: '欧洲议会日历、委员会会议和全体辩论',
32
+ }),
33
+ };
34
+ /** Global language week-ahead strings */
35
+ export const WEEK_AHEAD_STRINGS_GLOBAL = {
36
+ es: {
37
+ lede: 'El Parlamento Europeo se prepara para una semana activa con múltiples reuniones de comisión y sesiones plenarias programadas',
38
+ plenarySessions: 'Sesiones Plenarias',
39
+ committeeMeetings: 'Reuniones de Comisión',
40
+ legislativeDocuments: 'Documentos Legislativos Próximos',
41
+ legislativePipeline: 'Pipeline Legislativo',
42
+ parliamentaryQuestions: 'Preguntas Parlamentarias',
43
+ noPlenary: 'No hay sesiones plenarias programadas para este período.',
44
+ bottleneckIndicator: '⚠ Cuello de botella',
45
+ whatToWatch: 'Qué Observar',
46
+ },
47
+ nl: {
48
+ lede: 'Het Europees Parlement bereidt zich voor op een actieve week met meerdere commissievergaderingen en plenaire vergaderingen gepland',
49
+ plenarySessions: 'Plenaire Vergaderingen',
50
+ committeeMeetings: 'Commissievergaderingen',
51
+ legislativeDocuments: 'Aankomende Wetgevende Documenten',
52
+ legislativePipeline: 'Wetgevende Pipeline',
53
+ parliamentaryQuestions: 'Parlementaire Vragen',
54
+ noPlenary: 'Geen plenaire vergaderingen gepland voor deze periode.',
55
+ bottleneckIndicator: '⚠ Knelpunt',
56
+ whatToWatch: 'Wat Te Volgen',
57
+ },
58
+ ar: {
59
+ lede: 'يستعد البرلمان الأوروبي لأسبوع نشط مع العديد من اجتماعات اللجان والجلسات العامة المجدولة',
60
+ plenarySessions: 'الجلسات العامة',
61
+ committeeMeetings: 'اجتماعات اللجان',
62
+ legislativeDocuments: 'الوثائق التشريعية القادمة',
63
+ legislativePipeline: 'خط الأنابيب التشريعي',
64
+ parliamentaryQuestions: 'الأسئلة البرلمانية',
65
+ noPlenary: 'لا توجد جلسات عامة مجدولة لهذه الفترة.',
66
+ bottleneckIndicator: '⚠ عنق زجاجة',
67
+ whatToWatch: 'ما يجب متابعته',
68
+ },
69
+ he: {
70
+ lede: 'הפרלמנט האירופי מתכונן לשבוע פעיל עם מספר ישיבות ועדות וישיבות מליאה מתוכננות',
71
+ plenarySessions: 'ישיבות מליאה',
72
+ committeeMeetings: 'ישיבות ועדות',
73
+ legislativeDocuments: 'מסמכים חקיקתיים קרובים',
74
+ legislativePipeline: 'צינור חקיקה',
75
+ parliamentaryQuestions: 'שאילתות פרלמנטריות',
76
+ noPlenary: 'אין ישיבות מליאה מתוכננות לתקופה זו.',
77
+ bottleneckIndicator: '⚠ צוואר בקבוק',
78
+ whatToWatch: 'מה לעקוב',
79
+ },
80
+ ja: {
81
+ lede: '欧州議会は、複数の委員会会合と本会議が予定されている活発な一週間に備えています',
82
+ plenarySessions: '本会議',
83
+ committeeMeetings: '委員会会合',
84
+ legislativeDocuments: '今後の立法文書',
85
+ legislativePipeline: '立法パイプライン',
86
+ parliamentaryQuestions: '議会質問',
87
+ noPlenary: 'この期間に本会議は予定されていません。',
88
+ bottleneckIndicator: '⚠ ボトルネック',
89
+ whatToWatch: '注目すべきポイント',
90
+ },
91
+ ko: {
92
+ lede: '유럽 의회는 다수의 위원회 회의와 본회의가 예정된 활발한 한 주를 준비하고 있습니다',
93
+ plenarySessions: '본회의',
94
+ committeeMeetings: '위원회 회의',
95
+ legislativeDocuments: '예정된 입법 문서',
96
+ legislativePipeline: '입법 파이프라인',
97
+ parliamentaryQuestions: '의회 질문',
98
+ noPlenary: '이 기간에 예정된 본회의가 없습니다.',
99
+ bottleneckIndicator: '⚠ 병목 현상',
100
+ whatToWatch: '주목할 사항',
101
+ },
102
+ zh: {
103
+ lede: '欧洲议会正在为活跃的一周做准备,多场委员会会议和全体会议已排定日程',
104
+ plenarySessions: '全体会议',
105
+ committeeMeetings: '委员会会议',
106
+ legislativeDocuments: '即将发布的立法文件',
107
+ legislativePipeline: '立法管道',
108
+ parliamentaryQuestions: '议会质询',
109
+ noPlenary: '该时段没有预定的全体会议。',
110
+ bottleneckIndicator: '⚠ 瓶颈',
111
+ whatToWatch: '值得关注',
112
+ },
113
+ };
114
+ /** Global language week-ahead stakeholder strings */
115
+ export const WEEK_AHEAD_STAKEHOLDER_STRINGS_GLOBAL = {
116
+ es: {
117
+ heading: 'Análisis de Impacto en Partes Interesadas',
118
+ temperatureLabel: 'Temperatura Política',
119
+ impactHeader: 'Impacto',
120
+ stakeholderHeader: 'Parte Interesada',
121
+ reasonHeader: 'Razón',
122
+ tempLow: 'Baja',
123
+ tempModerate: 'Moderada',
124
+ tempHigh: 'Alta',
125
+ tempVeryHigh: 'Muy alta',
126
+ stakeholderPoliticalGroups: 'Grupos políticos',
127
+ stakeholderCivilSociety: 'Sociedad civil',
128
+ stakeholderIndustry: 'Industria',
129
+ stakeholderEuCitizens: 'Ciudadanos de la UE',
130
+ stakeholderNationalGovernments: 'Gobiernos nacionales',
131
+ stakeholderEuInstitutions: 'Instituciones de la UE',
132
+ reasonEventsScheduled: '{count} evento(s) parlamentario(s) programado(s)',
133
+ reasonDocumentsUnderReview: '{count} documento(s) legislativo(s) en revisión',
134
+ reasonIndustryRegulatoryAgenda: 'La agenda regulatoria puede afectar el entorno empresarial',
135
+ reasonCitizensDecisionsShapePolicy: 'Las decisiones parlamentarias configuran la política a nivel de la UE',
136
+ reasonDocumentsRequireTransposition: '{count} documento(s) pueden requerir transposición nacional',
137
+ reasonInstitutionsCoordination: 'Se requiere coordinación interinstitucional',
138
+ },
139
+ nl: {
140
+ heading: 'Stakeholder-Impactanalyse',
141
+ temperatureLabel: 'Politieke Temperatuur',
142
+ impactHeader: 'Impact',
143
+ stakeholderHeader: 'Stakeholder',
144
+ reasonHeader: 'Reden',
145
+ tempLow: 'Laag',
146
+ tempModerate: 'Gematigd',
147
+ tempHigh: 'Hoog',
148
+ tempVeryHigh: 'Zeer hoog',
149
+ stakeholderPoliticalGroups: 'Politieke groepen',
150
+ stakeholderCivilSociety: 'Maatschappelijk middenveld',
151
+ stakeholderIndustry: 'Industrie',
152
+ stakeholderEuCitizens: 'EU-burgers',
153
+ stakeholderNationalGovernments: 'Nationale regeringen',
154
+ stakeholderEuInstitutions: 'EU-instellingen',
155
+ reasonEventsScheduled: '{count} parlementaire evenement(en) gepland',
156
+ reasonDocumentsUnderReview: '{count} wetgevingsdocument(en) in behandeling',
157
+ reasonIndustryRegulatoryAgenda: 'Regelgevingsagenda kan het bedrijfsklimaat beïnvloeden',
158
+ reasonCitizensDecisionsShapePolicy: 'Parlementaire beslissingen vormen EU-breed beleid',
159
+ reasonDocumentsRequireTransposition: '{count} document(en) kunnen nationale omzetting vereisen',
160
+ reasonInstitutionsCoordination: 'Interinstitutionele coördinatie vereist',
161
+ },
162
+ ar: {
163
+ heading: 'تحليل تأثير أصحاب المصلحة',
164
+ temperatureLabel: 'الحرارة السياسية',
165
+ impactHeader: 'التأثير',
166
+ stakeholderHeader: 'صاحب المصلحة',
167
+ reasonHeader: 'السبب',
168
+ tempLow: 'منخفضة',
169
+ tempModerate: 'معتدلة',
170
+ tempHigh: 'مرتفعة',
171
+ tempVeryHigh: 'مرتفعة جداً',
172
+ stakeholderPoliticalGroups: 'المجموعات السياسية',
173
+ stakeholderCivilSociety: 'المجتمع المدني',
174
+ stakeholderIndustry: 'الصناعة',
175
+ stakeholderEuCitizens: 'مواطنو الاتحاد الأوروبي',
176
+ stakeholderNationalGovernments: 'الحكومات الوطنية',
177
+ stakeholderEuInstitutions: 'مؤسسات الاتحاد الأوروبي',
178
+ reasonEventsScheduled: '{count} حدث/أحداث برلمانية مجدولة',
179
+ reasonDocumentsUnderReview: '{count} وثيقة/وثائق تشريعية قيد المراجعة',
180
+ reasonIndustryRegulatoryAgenda: 'قد يؤثر جدول الأعمال التنظيمي على بيئة الأعمال',
181
+ reasonCitizensDecisionsShapePolicy: 'القرارات البرلمانية تشكل السياسة على مستوى الاتحاد الأوروبي',
182
+ reasonDocumentsRequireTransposition: '{count} وثيقة/وثائق قد تتطلب نقلاً وطنياً',
183
+ reasonInstitutionsCoordination: 'التنسيق بين المؤسسات مطلوب',
184
+ },
185
+ he: {
186
+ heading: 'ניתוח השפעה על בעלי עניין',
187
+ temperatureLabel: 'טמפרטורה פוליטית',
188
+ impactHeader: 'השפעה',
189
+ stakeholderHeader: 'בעל עניין',
190
+ reasonHeader: 'סיבה',
191
+ tempLow: 'נמוכה',
192
+ tempModerate: 'מתונה',
193
+ tempHigh: 'גבוהה',
194
+ tempVeryHigh: 'גבוהה מאוד',
195
+ stakeholderPoliticalGroups: 'קבוצות פוליטיות',
196
+ stakeholderCivilSociety: 'חברה אזרחית',
197
+ stakeholderIndustry: 'תעשייה',
198
+ stakeholderEuCitizens: 'אזרחי האיחוד האירופי',
199
+ stakeholderNationalGovernments: 'ממשלות לאומיות',
200
+ stakeholderEuInstitutions: 'מוסדות האיחוד האירופי',
201
+ reasonEventsScheduled: '{count} אירוע/ים פרלמנטרי/ים מתוכנן/ים',
202
+ reasonDocumentsUnderReview: '{count} מסמך/ים חקיקתי/ים בבדיקה',
203
+ reasonIndustryRegulatoryAgenda: 'סדר היום הרגולטורי עשוי להשפיע על סביבת העסקים',
204
+ reasonCitizensDecisionsShapePolicy: 'החלטות פרלמנטריות מעצבות מדיניות ברחבי האיחוד האירופי',
205
+ reasonDocumentsRequireTransposition: '{count} מסמך/ים עשויים לדרוש אימוץ לאומי',
206
+ reasonInstitutionsCoordination: 'נדרש תיאום בין-מוסדי',
207
+ },
208
+ ja: {
209
+ heading: 'ステークホルダー影響分析',
210
+ temperatureLabel: '政治的温度',
211
+ impactHeader: '影響度',
212
+ stakeholderHeader: 'ステークホルダー',
213
+ reasonHeader: '理由',
214
+ tempLow: '低い',
215
+ tempModerate: '中程度',
216
+ tempHigh: '高い',
217
+ tempVeryHigh: '非常に高い',
218
+ stakeholderPoliticalGroups: '政治グループ',
219
+ stakeholderCivilSociety: '市民社会',
220
+ stakeholderIndustry: '産業界',
221
+ stakeholderEuCitizens: 'EU市民',
222
+ stakeholderNationalGovernments: '各国政府',
223
+ stakeholderEuInstitutions: 'EU機関',
224
+ reasonEventsScheduled: '{count}件の議会イベントが予定',
225
+ reasonDocumentsUnderReview: '{count}件の立法文書が審査中',
226
+ reasonIndustryRegulatoryAgenda: '規制アジェンダがビジネス環境に影響する可能性',
227
+ reasonCitizensDecisionsShapePolicy: '議会の決定がEU全体の政策を形成',
228
+ reasonDocumentsRequireTransposition: '{count}件の文書が国内法化を必要とする可能性',
229
+ reasonInstitutionsCoordination: '機関間の調整が必要',
230
+ },
231
+ ko: {
232
+ heading: '이해관계자 영향 분석',
233
+ temperatureLabel: '정치적 온도',
234
+ impactHeader: '영향',
235
+ stakeholderHeader: '이해관계자',
236
+ reasonHeader: '사유',
237
+ tempLow: '낮음',
238
+ tempModerate: '보통',
239
+ tempHigh: '높음',
240
+ tempVeryHigh: '매우 높음',
241
+ stakeholderPoliticalGroups: '정치 그룹',
242
+ stakeholderCivilSociety: '시민사회',
243
+ stakeholderIndustry: '산업계',
244
+ stakeholderEuCitizens: 'EU 시민',
245
+ stakeholderNationalGovernments: '각국 정부',
246
+ stakeholderEuInstitutions: 'EU 기관',
247
+ reasonEventsScheduled: '{count}건의 의회 행사 예정',
248
+ reasonDocumentsUnderReview: '{count}건의 입법 문서 검토 중',
249
+ reasonIndustryRegulatoryAgenda: '규제 의제가 비즈니스 환경에 영향을 줄 수 있음',
250
+ reasonCitizensDecisionsShapePolicy: '의회 결정이 EU 전체 정책을 형성',
251
+ reasonDocumentsRequireTransposition: '{count}건의 문서가 국내 이행을 요구할 수 있음',
252
+ reasonInstitutionsCoordination: '기관 간 조정 필요',
253
+ },
254
+ zh: {
255
+ heading: '利益相关方影响分析',
256
+ temperatureLabel: '政治温度',
257
+ impactHeader: '影响',
258
+ stakeholderHeader: '利益相关方',
259
+ reasonHeader: '原因',
260
+ tempLow: '低',
261
+ tempModerate: '中等',
262
+ tempHigh: '高',
263
+ tempVeryHigh: '非常高',
264
+ stakeholderPoliticalGroups: '政治团体',
265
+ stakeholderCivilSociety: '公民社会',
266
+ stakeholderIndustry: '产业界',
267
+ stakeholderEuCitizens: '欧盟公民',
268
+ stakeholderNationalGovernments: '各国政府',
269
+ stakeholderEuInstitutions: '欧盟机构',
270
+ reasonEventsScheduled: '{count}项议会活动已安排',
271
+ reasonDocumentsUnderReview: '{count}份立法文件正在审查',
272
+ reasonIndustryRegulatoryAgenda: '监管议程可能影响商业环境',
273
+ reasonCitizensDecisionsShapePolicy: '议会决定塑造欧盟范围的政策',
274
+ reasonDocumentsRequireTransposition: '{count}份文件可能需要国内转化',
275
+ reasonInstitutionsCoordination: '需要机构间协调',
276
+ },
277
+ };
278
+ //# sourceMappingURL=week-ahead-global.js.map
@@ -1,15 +1,12 @@
1
1
  /**
2
2
  * @module Constants/Articles/WeekAhead
3
- * @description Week-Ahead article: 14-language title generator, body strings, and per-stakeholder strings.
4
- *
5
- * Per-language strings live together so a translator can update one language
6
- * for this article type without touching any other article type.
3
+ * @description Week-ahead strings for all 14 languages assembled from EU and global sub-modules.
7
4
  */
8
5
  import type { LanguageMap, LangTitleSubtitle, WeekAheadStrings, WeekAheadStakeholderStrings } from '../../types/index.js';
6
+ /** Week-ahead titles for all 14 languages */
9
7
  export declare const WEEK_AHEAD_TITLES: LanguageMap<(start: string, end: string) => LangTitleSubtitle>;
10
- /** Week-ahead localized strings per language */
8
+ /** Week-ahead strings for all 14 languages */
11
9
  export declare const WEEK_AHEAD_STRINGS: LanguageMap<WeekAheadStrings>;
12
- /** Localized strings for the week-ahead stakeholder impact section */
10
+ /** Week-ahead stakeholder strings for all 14 languages */
13
11
  export declare const WEEK_AHEAD_STAKEHOLDER_STRINGS: LanguageMap<WeekAheadStakeholderStrings>;
14
- /** Localized section heading strings for breaking news articles */
15
12
  //# sourceMappingURL=week-ahead.d.ts.map