Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 | 2x | /**
* @module Infrastructure/PoliticalIntelligence/I18n/PageTranslations
* @category Intelligence Operations / Supporting Infrastructure
* @name Per-language UI strings for the political-intelligence page (14 languages)
*
* @description
* Pure data module — exports `PI_TRANSLATIONS` and the matching
* `PiTranslations` shape. Zero filesystem access, zero side effects.
*
* Round-6 split: extracted from the 2289-LOC monolith
* `scripts/generate-political-intelligence.ts`.
*
* @author Hack23 AB (Infrastructure Team)
* @license Apache-2.0
*/
import type { Language } from '../../types/language.js';
export interface PiTranslations {
readonly title: string;
readonly subtitle: string;
readonly intro: string;
readonly metaDescription: string;
readonly metaKeywords: string;
readonly quickJumpTo: string;
readonly methodologies: string;
readonly methodologiesDesc: string;
readonly templates: string;
readonly templatesDesc: string;
readonly dailyArtifacts: string;
readonly dailyArtifactsDesc: string;
readonly openOnGithub: string;
readonly browseDirectoryOnGithub: string;
readonly browseAllDays: string;
readonly artifacts: string;
readonly stream: string;
readonly home: string;
readonly sitemap: string;
readonly recentDays: string;
readonly olderDays: string;
readonly showMore: string;
readonly backToTop: string;
/** Label for the expandable artifact listing under each stream. */
readonly expandArtifacts: string;
/** Accessible label e.g. "N artifacts in stream" */
readonly artifactsLabel: string;
/** Link label for opening the documents/ subfolder */
readonly documentsFolder: string;
/** Short generic description for per-document analysis artifacts (e.g. hd01au11-analysis.md). */
readonly documentAnalysisDesc: string;
/** Short generic description for per-document raw JSON artifacts. */
readonly documentJsonDesc: string;
/** Generic word "Analysis" used in generated artifact titles. */
readonly analysisWord: string;
/** Generic word "Data" used in generated artifact titles (for .json artifacts). */
readonly dataWord: string;
/** Other-language switcher heading. */
readonly otherLanguages: string;
/** Skip-link anchor label. */
readonly skipToMain: string;
}
export const PI_TRANSLATIONS: Record<Language, PiTranslations> = {
en: {
title: 'Political Intelligence',
subtitle: 'Methodologies, templates, and the full daily analytical output of Riksdagsmonitor',
intro: 'Riksdagsmonitor produces evidence-based political intelligence for the Swedish Parliament and Government using a disciplined analytical framework. This index exposes the complete methodology library, the reusable analysis templates, and every daily intelligence artifact — each linked back to GitHub for full auditability.',
metaDescription: 'Complete index of Riksdagsmonitor political intelligence assets: methodologies, analysis templates, and daily artifacts covering the Swedish Parliament and Government.',
metaKeywords: 'political intelligence, Riksdagsmonitor, OSINT, analysis methodologies, analysis templates, Swedish Parliament, Riksdagen, political analysis, intelligence framework',
quickJumpTo: 'Quick Jump To',
methodologies: 'Methodologies',
methodologiesDesc: 'Canonical frameworks that govern every analysis produced on the platform — from AI-driven protocols and political-risk scoring to threat, SWOT, and reference-quality standards.',
templates: 'Analysis Templates',
templatesDesc: 'Structured output templates used by every agentic workflow to guarantee consistent, Mermaid-rich, confidence-labeled intelligence products.',
dailyArtifacts: 'Daily Analysis Artifacts',
dailyArtifactsDesc: 'Every artifact published under analysis/daily/, grouped by date and content stream (propositions, motions, interpellations, committee reports, evening analysis, realtime snapshots, deep inspections, and more).',
openOnGithub: 'Open on GitHub',
browseDirectoryOnGithub: 'Browse the full directory on GitHub',
browseAllDays: 'Browse every analysis day on GitHub',
artifacts: 'artifacts',
stream: 'stream',
home: 'Home',
sitemap: 'Sitemap',
recentDays: 'Most recent analysis days',
olderDays: 'Earlier analysis days',
showMore: 'Show more',
backToTop: 'Back to top',
expandArtifacts: 'Show individual artifacts',
artifactsLabel: 'artifacts in this stream',
documentsFolder: 'Source documents',
documentAnalysisDesc: 'Per-document intelligence analysis with structured metadata and Mermaid visualisations.',
documentJsonDesc: 'Structured JSON payload extracted from the source parliamentary document.',
analysisWord: 'Analysis',
dataWord: 'Data',
otherLanguages: 'Read this page in another language',
skipToMain: 'Skip to main content',
},
sv: {
title: 'Politisk underrättelse',
subtitle: 'Metoder, mallar och Riksdagsmonitors fullständiga dagliga analysunderlag',
intro: 'Riksdagsmonitor producerar evidensbaserad politisk underrättelse om Sveriges riksdag och regering enligt ett strikt analytiskt ramverk. Detta index visar hela metodbiblioteket, de återanvändbara analysmallarna och varje dagligt underrättelseartifakt — alla länkade till GitHub för full spårbarhet.',
metaDescription: 'Komplett index över Riksdagsmonitors politiska underrättelsetillgångar: metoder, analysmallar och dagliga artifakter om Sveriges riksdag och regering.',
metaKeywords: 'politisk underrättelse, Riksdagsmonitor, OSINT, analysmetoder, analysmallar, riksdagen, Sveriges riksdag, politisk analys, underrättelseramverk',
quickJumpTo: 'Snabbnavigering',
methodologies: 'Metoder',
methodologiesDesc: 'Kanoniska ramverk som styr varje analys på plattformen — från AI-drivna protokoll och politisk riskbedömning till hot-, SWOT- och referenskvalitetsstandarder.',
templates: 'Analysmallar',
templatesDesc: 'Strukturerade outputmallar som används av varje agentiskt arbetsflöde för att garantera konsekventa, Mermaid-rika och förtroendemärkta underrättelseprodukter.',
dailyArtifacts: 'Dagliga analysartefakter',
dailyArtifactsDesc: 'Varje artefakt som publiceras under analysis/daily/, grupperad efter datum och innehållsström (propositioner, motioner, interpellationer, betänkanden, kvällsanalyser, realtidsavbildningar, djupgranskningar m.fl.).',
openOnGithub: 'Öppna på GitHub',
browseDirectoryOnGithub: 'Bläddra i hela katalogen på GitHub',
browseAllDays: 'Bläddra i alla analysdagar på GitHub',
artifacts: 'artefakter',
stream: 'ström',
home: 'Hem',
sitemap: 'Webbplatskarta',
recentDays: 'Senaste analysdagarna',
olderDays: 'Tidigare analysdagar',
showMore: 'Visa fler',
backToTop: 'Tillbaka till toppen',
expandArtifacts: 'Visa enskilda artefakter',
artifactsLabel: 'artefakter i strömmen',
documentsFolder: 'Källdokument',
documentAnalysisDesc: 'Underrättelseanalys per dokument med strukturerad metadata och Mermaid-visualiseringar.',
documentJsonDesc: 'Strukturerad JSON-fil extraherad från det ursprungliga riksdagsdokumentet.',
analysisWord: 'Analys',
dataWord: 'Data',
otherLanguages: 'Läs sidan på ett annat språk',
skipToMain: 'Hoppa till huvudinnehållet',
},
da: {
title: 'Politisk efterretning',
subtitle: 'Metoder, skabeloner og Riksdagsmonitors fulde daglige analyseproduktion',
intro: 'Riksdagsmonitor leverer evidensbaseret politisk efterretning om det svenske Folketing og regering efter et disciplineret analytisk rammeværk. Dette indeks viser hele metodebiblioteket, de genbrugelige analyseskabeloner og alle daglige efterretningsartefakter — alle linket tilbage til GitHub for fuld sporbarhed.',
metaDescription: 'Komplet indeks over Riksdagsmonitors politiske efterretningsaktiver: metoder, analyseskabeloner og daglige artefakter om det svenske parlament og regering.',
metaKeywords: 'politisk efterretning, Riksdagsmonitor, OSINT, analysemetoder, analyseskabeloner, svensk parlament, politisk analyse, efterretningsrammer',
quickJumpTo: 'Hurtig navigation',
methodologies: 'Metoder',
methodologiesDesc: 'Kanoniske rammer, der styrer enhver analyse på platformen — fra AI-drevne protokoller og politisk risikoscoring til trussel-, SWOT- og referencestandarder.',
templates: 'Analyseskabeloner',
templatesDesc: 'Strukturerede outputskabeloner, der bruges af alle agentiske workflows for at sikre konsistente, Mermaid-rige og tillidsmærkede efterretningsprodukter.',
dailyArtifacts: 'Daglige analyseartefakter',
dailyArtifactsDesc: 'Hver artefakt publiceret under analysis/daily/, grupperet efter dato og indholdsstrøm (propositioner, motioner, interpellationer, udvalgsrapporter, aftenanalyser, realtidsoptagelser, dybdeinspektioner m.fl.).',
openOnGithub: 'Åbn på GitHub',
browseDirectoryOnGithub: 'Gennemse hele mappen på GitHub',
browseAllDays: 'Gennemse alle analysedage på GitHub',
artifacts: 'artefakter',
stream: 'strøm',
home: 'Hjem',
sitemap: 'Sitekort',
recentDays: 'Seneste analysedage',
olderDays: 'Ældre analysedage',
showMore: 'Vis mere',
backToTop: 'Tilbage til toppen',
expandArtifacts: 'Vis enkelte artefakter',
artifactsLabel: 'artefakter i strømmen',
documentsFolder: 'Kildedokumenter',
documentAnalysisDesc: 'Efterretningsanalyse per dokument med struktureret metadata og Mermaid-visualiseringer.',
documentJsonDesc: 'Struktureret JSON-payload udtrukket fra det originale parlamentariske dokument.',
analysisWord: 'Analyse',
dataWord: 'Data',
otherLanguages: 'Læs siden på et andet sprog',
skipToMain: 'Spring til hovedindholdet',
},
no: {
title: 'Politisk etterretning',
subtitle: 'Metoder, maler og Riksdagsmonitors fullstendige daglige analyseutbytte',
intro: 'Riksdagsmonitor leverer evidensbasert politisk etterretning om det svenske Riksdagen og regjeringen gjennom et disiplinert analytisk rammeverk. Dette indekset eksponerer hele metodebiblioteket, de gjenbrukbare analysemalene og hver daglig etterretningsartefakt — alle lenket tilbake til GitHub for full sporbarhet.',
metaDescription: 'Komplett indeks over Riksdagsmonitors politiske etterretningsressurser: metoder, analysemaler og daglige artefakter som dekker det svenske parlamentet og regjeringen.',
metaKeywords: 'politisk etterretning, Riksdagsmonitor, OSINT, analysemetoder, analysemaler, svensk parlament, politisk analyse, etterretningsrammeverk',
quickJumpTo: 'Hurtignavigasjon',
methodologies: 'Metoder',
methodologiesDesc: 'Kanoniske rammeverk som styrer hver analyse på plattformen — fra AI-drevne protokoller og politisk risikoskåring til trussel-, SWOT- og referansekvalitetsstandarder.',
templates: 'Analysemaler',
templatesDesc: 'Strukturerte utdatamaler brukt av hvert agentisk arbeidsflyt for å garantere konsistente, Mermaid-rike og tillitsmerkede etterretningsprodukter.',
dailyArtifacts: 'Daglige analyseartefakter',
dailyArtifactsDesc: 'Hver artefakt publisert under analysis/daily/, gruppert etter dato og innholdsstrøm (proposisjoner, motsjoner, interpellasjoner, komitérapporter, kveldsanalyser, sanntidsopptak, dybdegranskninger m.m.).',
openOnGithub: 'Åpne på GitHub',
browseDirectoryOnGithub: 'Bla gjennom hele katalogen på GitHub',
browseAllDays: 'Bla gjennom alle analysedager på GitHub',
artifacts: 'artefakter',
stream: 'strøm',
home: 'Hjem',
sitemap: 'Nettstedskart',
recentDays: 'Nyeste analysedager',
olderDays: 'Eldre analysedager',
showMore: 'Vis flere',
backToTop: 'Tilbake til toppen',
expandArtifacts: 'Vis enkelte artefakter',
artifactsLabel: 'artefakter i strømmen',
documentsFolder: 'Kildedokumenter',
documentAnalysisDesc: 'Etterretningsanalyse per dokument med strukturert metadata og Mermaid-visualiseringer.',
documentJsonDesc: 'Strukturert JSON-nyttelast trukket ut fra det opprinnelige parlamentsdokumentet.',
analysisWord: 'Analyse',
dataWord: 'Data',
otherLanguages: 'Les siden på et annet språk',
skipToMain: 'Hopp til hovedinnholdet',
},
fi: {
title: 'Poliittinen tiedustelu',
subtitle: 'Metodologiat, mallit ja Riksdagsmonitorin koko päivittäinen analyyttinen tuotos',
intro: 'Riksdagsmonitor tuottaa evidenssipohjaista poliittista tiedustelua Ruotsin valtiopäivistä ja hallituksesta kurinalaisessa analyyttisessa viitekehyksessä. Tämä hakemisto paljastaa koko metodologiakirjaston, uudelleenkäytettävät analyysimallit ja jokaisen päivittäisen tiedusteluartifaktin — kaikki linkitettyinä GitHubiin täydelliseksi jäljitettävyyden varmistamiseksi.',
metaDescription: 'Täydellinen hakemisto Riksdagsmonitorin poliittisen tiedustelun resursseista: metodologiat, analyysimallit ja päivittäiset artefaktit Ruotsin parlamentista ja hallituksesta.',
metaKeywords: 'poliittinen tiedustelu, Riksdagsmonitor, OSINT, analyysimenetelmät, analyysimallit, Ruotsin parlamentti, poliittinen analyysi, tiedusteluviitekehys',
quickJumpTo: 'Pikanavigointi',
methodologies: 'Metodologiat',
methodologiesDesc: 'Kanoniset viitekehykset, jotka ohjaavat jokaista alustalla tuotettua analyysiä — AI-pohjaisista protokollista ja poliittisesta riskipisteytyksestä uhka-, SWOT- ja lähdelaatustandardeihin.',
templates: 'Analyysimallit',
templatesDesc: 'Strukturoidut tulosmallit, joita jokainen agenttinen työnkulku käyttää taatakseen johdonmukaiset, Mermaid-rikkaat ja luottamusmerkityt tiedustelutuotteet.',
dailyArtifacts: 'Päivittäiset analyysiartefaktit',
dailyArtifactsDesc: 'Jokainen analysis/daily/ -kansioon julkaistu artefakti ryhmiteltynä päivämäärän ja sisältövirran mukaan (propositiot, aloitteet, interpellaatiot, valiokuntaraportit, ilta-analyysit, reaaliaikaiset otokset, syväntutkimukset ym.).',
openOnGithub: 'Avaa GitHubissa',
browseDirectoryOnGithub: 'Selaa koko hakemistoa GitHubissa',
browseAllDays: 'Selaa kaikkia analyysipäiviä GitHubissa',
artifacts: 'artefaktit',
stream: 'virta',
home: 'Etusivu',
sitemap: 'Sivustokartta',
recentDays: 'Uusimmat analyysipäivät',
olderDays: 'Vanhemmat analyysipäivät',
showMore: 'Näytä lisää',
backToTop: 'Takaisin ylös',
expandArtifacts: 'Näytä yksittäiset artefaktit',
artifactsLabel: 'artefaktit tässä virrassa',
documentsFolder: 'Lähdeasiakirjat',
documentAnalysisDesc: 'Asiakirjakohtainen tiedusteluanalyysi strukturoidulla metatiedolla ja Mermaid-visualisoinneilla.',
documentJsonDesc: 'Strukturoitu JSON-data, joka on poimittu alkuperäisestä parlamentin asiakirjasta.',
analysisWord: 'Analyysi',
dataWord: 'Data',
otherLanguages: 'Lue tämä sivu toisella kielellä',
skipToMain: 'Siirry pääsisältöön',
},
de: {
title: 'Politische Intelligenz',
subtitle: 'Methoden, Vorlagen und die vollständige tägliche Analyseausgabe von Riksdagsmonitor',
intro: 'Riksdagsmonitor erzeugt evidenzbasierte politische Intelligenz über das schwedische Parlament und die Regierung in einem disziplinierten analytischen Rahmenwerk. Dieses Verzeichnis offenbart die gesamte Methodenbibliothek, die wiederverwendbaren Analysevorlagen und jedes tägliche Intelligenzartefakt — alle zur vollständigen Nachvollziehbarkeit auf GitHub verlinkt.',
metaDescription: 'Vollständiges Verzeichnis der politischen Intelligenzressourcen von Riksdagsmonitor: Methoden, Analysevorlagen und tägliche Artefakte zum schwedischen Parlament und zur Regierung.',
metaKeywords: 'politische Intelligenz, Riksdagsmonitor, OSINT, Analysemethoden, Analysevorlagen, schwedisches Parlament, politische Analyse, Intelligenzrahmenwerk',
quickJumpTo: 'Schnellnavigation',
methodologies: 'Methoden',
methodologiesDesc: 'Kanonische Rahmenwerke, die jede Analyse der Plattform steuern — von KI-gestützten Protokollen und politischer Risikobewertung bis zu Bedrohungs-, SWOT- und Referenzqualitätsstandards.',
templates: 'Analysevorlagen',
templatesDesc: 'Strukturierte Ausgabevorlagen, die von jedem agentischen Workflow verwendet werden, um konsistente, Mermaid-reiche und konfidenzmarkierte Intelligenzprodukte zu garantieren.',
dailyArtifacts: 'Tägliche Analyseartefakte',
dailyArtifactsDesc: 'Jedes unter analysis/daily/ veröffentlichte Artefakt, gruppiert nach Datum und Inhaltsstrom (Propositionen, Motionen, Interpellationen, Ausschussberichte, Abendanalysen, Echtzeit-Snapshots, Tiefeninspektionen u.v.m.).',
openOnGithub: 'Auf GitHub öffnen',
browseDirectoryOnGithub: 'Das gesamte Verzeichnis auf GitHub durchsuchen',
browseAllDays: 'Alle Analyse-Tage auf GitHub durchsuchen',
artifacts: 'Artefakte',
stream: 'Strom',
home: 'Startseite',
sitemap: 'Sitemap',
recentDays: 'Neueste Analyse-Tage',
olderDays: 'Ältere Analyse-Tage',
showMore: 'Mehr anzeigen',
backToTop: 'Nach oben',
expandArtifacts: 'Einzelne Artefakte anzeigen',
artifactsLabel: 'Artefakte in diesem Strom',
documentsFolder: 'Quelldokumente',
documentAnalysisDesc: 'Dokumentweise Intelligenzanalyse mit strukturierten Metadaten und Mermaid-Visualisierungen.',
documentJsonDesc: 'Strukturierte JSON-Nutzlast, extrahiert aus dem ursprünglichen Parlamentsdokument.',
analysisWord: 'Analyse',
dataWord: 'Daten',
otherLanguages: 'Diese Seite in einer anderen Sprache lesen',
skipToMain: 'Zum Hauptinhalt springen',
},
fr: {
title: 'Intelligence politique',
subtitle: 'Méthodologies, modèles et la production analytique quotidienne complète de Riksdagsmonitor',
intro: 'Riksdagsmonitor produit une intelligence politique fondée sur des preuves concernant le Parlement et le gouvernement suédois selon un cadre analytique rigoureux. Cet index expose l\'ensemble de la bibliothèque de méthodologies, les modèles d\'analyse réutilisables et chaque artefact de renseignement quotidien — tous liés à GitHub pour une traçabilité complète.',
metaDescription: 'Index complet des actifs d\'intelligence politique de Riksdagsmonitor : méthodologies, modèles d\'analyse et artefacts quotidiens couvrant le Parlement et le gouvernement suédois.',
metaKeywords: 'intelligence politique, Riksdagsmonitor, OSINT, méthodologies d\'analyse, modèles d\'analyse, Parlement suédois, analyse politique, cadre de renseignement',
quickJumpTo: 'Navigation rapide',
methodologies: 'Méthodologies',
methodologiesDesc: 'Cadres canoniques régissant chaque analyse produite sur la plateforme — des protocoles pilotés par IA et du scoring de risque politique aux standards de menace, SWOT et qualité de référence.',
templates: 'Modèles d\'analyse',
templatesDesc: 'Modèles de sortie structurés utilisés par chaque workflow agentique pour garantir des produits de renseignement cohérents, riches en Mermaid et étiquetés en confiance.',
dailyArtifacts: 'Artefacts d\'analyse quotidiens',
dailyArtifactsDesc: 'Chaque artefact publié sous analysis/daily/, regroupé par date et par flux de contenu (propositions, motions, interpellations, rapports de commission, analyses du soir, captures temps réel, inspections approfondies, etc.).',
openOnGithub: 'Ouvrir sur GitHub',
browseDirectoryOnGithub: 'Parcourir tout le répertoire sur GitHub',
browseAllDays: 'Parcourir tous les jours d\'analyse sur GitHub',
artifacts: 'artefacts',
stream: 'flux',
home: 'Accueil',
sitemap: 'Plan du site',
recentDays: 'Jours d\'analyse les plus récents',
olderDays: 'Jours d\'analyse antérieurs',
showMore: 'Afficher plus',
backToTop: 'Retour en haut',
expandArtifacts: 'Afficher les artefacts individuels',
artifactsLabel: 'artefacts dans ce flux',
documentsFolder: 'Documents sources',
documentAnalysisDesc: 'Analyse de renseignement par document avec métadonnées structurées et visualisations Mermaid.',
documentJsonDesc: 'Charge utile JSON structurée extraite du document parlementaire source.',
analysisWord: 'Analyse',
dataWord: 'Données',
otherLanguages: 'Lire cette page dans une autre langue',
skipToMain: 'Aller au contenu principal',
},
es: {
title: 'Inteligencia política',
subtitle: 'Metodologías, plantillas y la producción analítica diaria completa de Riksdagsmonitor',
intro: 'Riksdagsmonitor produce inteligencia política basada en evidencia sobre el Parlamento y el Gobierno sueco bajo un marco analítico disciplinado. Este índice expone toda la biblioteca de metodologías, las plantillas de análisis reutilizables y cada artefacto de inteligencia diario — todos enlazados a GitHub para una trazabilidad completa.',
metaDescription: 'Índice completo de los activos de inteligencia política de Riksdagsmonitor: metodologías, plantillas de análisis y artefactos diarios que cubren el Parlamento y el Gobierno suecos.',
metaKeywords: 'inteligencia política, Riksdagsmonitor, OSINT, metodologías de análisis, plantillas de análisis, Parlamento sueco, análisis político, marco de inteligencia',
quickJumpTo: 'Navegación rápida',
methodologies: 'Metodologías',
methodologiesDesc: 'Marcos canónicos que rigen cada análisis producido en la plataforma — desde protocolos impulsados por IA y puntuación de riesgo político hasta estándares de amenaza, SWOT y calidad de referencia.',
templates: 'Plantillas de análisis',
templatesDesc: 'Plantillas de salida estructuradas utilizadas por cada flujo de trabajo agéntico para garantizar productos de inteligencia consistentes, ricos en Mermaid y etiquetados de confianza.',
dailyArtifacts: 'Artefactos de análisis diarios',
dailyArtifactsDesc: 'Cada artefacto publicado bajo analysis/daily/, agrupado por fecha y flujo de contenido (proposiciones, mociones, interpelaciones, informes de comité, análisis vespertinos, capturas en tiempo real, inspecciones profundas, etc.).',
openOnGithub: 'Abrir en GitHub',
browseDirectoryOnGithub: 'Explorar el directorio completo en GitHub',
browseAllDays: 'Explorar todos los días de análisis en GitHub',
artifacts: 'artefactos',
stream: 'flujo',
home: 'Inicio',
sitemap: 'Mapa del sitio',
recentDays: 'Días de análisis más recientes',
olderDays: 'Días de análisis anteriores',
showMore: 'Mostrar más',
backToTop: 'Volver arriba',
expandArtifacts: 'Mostrar artefactos individuales',
artifactsLabel: 'artefactos en este flujo',
documentsFolder: 'Documentos fuente',
documentAnalysisDesc: 'Análisis de inteligencia por documento con metadatos estructurados y visualizaciones Mermaid.',
documentJsonDesc: 'Carga JSON estructurada extraída del documento parlamentario original.',
analysisWord: 'Análisis',
dataWord: 'Datos',
otherLanguages: 'Leer esta página en otro idioma',
skipToMain: 'Saltar al contenido principal',
},
nl: {
title: 'Politieke inlichtingen',
subtitle: 'Methodologieën, sjablonen en de volledige dagelijkse analytische output van Riksdagsmonitor',
intro: 'Riksdagsmonitor produceert bewijsgebaseerde politieke inlichtingen over het Zweedse Parlement en de regering binnen een gedisciplineerd analytisch raamwerk. Deze index onthult de volledige methodologiebibliotheek, de herbruikbare analysesjablonen en elk dagelijks inlichtingenartefact — alle teruggekoppeld naar GitHub voor volledige traceerbaarheid.',
metaDescription: 'Volledige index van de politieke inlichtingenassets van Riksdagsmonitor: methodologieën, analysesjablonen en dagelijkse artefacten over het Zweedse Parlement en de regering.',
metaKeywords: 'politieke inlichtingen, Riksdagsmonitor, OSINT, analysemethodologieën, analysesjablonen, Zweeds Parlement, politieke analyse, inlichtingenraamwerk',
quickJumpTo: 'Snelnavigatie',
methodologies: 'Methodologieën',
methodologiesDesc: 'Canonieke raamwerken die elke analyse op het platform sturen — van AI-gestuurde protocollen en politieke risicoscoring tot dreigings-, SWOT- en referentiekwaliteitsstandaarden.',
templates: 'Analysesjablonen',
templatesDesc: 'Gestructureerde outputsjablonen gebruikt door elk agentisch werkproces om consistente, Mermaid-rijke en betrouwbaarheidsgelabelde inlichtingenproducten te garanderen.',
dailyArtifacts: 'Dagelijkse analyseartefacten',
dailyArtifactsDesc: 'Elk artefact gepubliceerd onder analysis/daily/, gegroepeerd op datum en inhoudsstroom (proposities, moties, interpellaties, commissierapporten, avondanalyses, real-time snapshots, diepte-inspecties enz.).',
openOnGithub: 'Openen op GitHub',
browseDirectoryOnGithub: 'Blader door de volledige map op GitHub',
browseAllDays: 'Blader door alle analysedagen op GitHub',
artifacts: 'artefacten',
stream: 'stroom',
home: 'Home',
sitemap: 'Sitemap',
recentDays: 'Meest recente analysedagen',
olderDays: 'Oudere analysedagen',
showMore: 'Meer tonen',
backToTop: 'Naar boven',
expandArtifacts: 'Individuele artefacten tonen',
artifactsLabel: 'artefacten in deze stroom',
documentsFolder: 'Brondocumenten',
documentAnalysisDesc: 'Inlichtingenanalyse per document met gestructureerde metadata en Mermaid-visualisaties.',
documentJsonDesc: 'Gestructureerde JSON-payload geëxtraheerd uit het oorspronkelijke parlementaire document.',
analysisWord: 'Analyse',
dataWord: 'Data',
otherLanguages: 'Lees deze pagina in een andere taal',
skipToMain: 'Ga naar hoofdinhoud',
},
ar: {
title: 'الاستخبارات السياسية',
subtitle: 'المنهجيات والقوالب والإنتاج التحليلي اليومي الكامل لـ Riksdagsmonitor',
intro: 'ينتج Riksdagsmonitor استخبارات سياسية قائمة على الأدلة حول البرلمان والحكومة السويديين ضمن إطار تحليلي منضبط. يكشف هذا الفهرس مكتبة المنهجيات الكاملة والقوالب التحليلية القابلة لإعادة الاستخدام وكل عمل استخباراتي يومي — جميعها مرتبطة بـ GitHub لضمان التتبع الكامل.',
metaDescription: 'فهرس كامل لأصول الاستخبارات السياسية في Riksdagsmonitor: المنهجيات وقوالب التحليل والعمل اليومي حول البرلمان والحكومة السويديين.',
metaKeywords: 'استخبارات سياسية، Riksdagsmonitor، OSINT، منهجيات تحليل، قوالب تحليل، البرلمان السويدي، تحليل سياسي، إطار استخباراتي',
quickJumpTo: 'انتقال سريع',
methodologies: 'المنهجيات',
methodologiesDesc: 'أطر قانونية تحكم كل تحليل ينتج على المنصة — من البروتوكولات المدفوعة بالذكاء الاصطناعي وتقييم المخاطر السياسية إلى معايير التهديد وSWOT وجودة المراجع.',
templates: 'قوالب التحليل',
templatesDesc: 'قوالب إخراج منظمة يستخدمها كل سير عمل وكيلي لضمان منتجات استخباراتية متسقة وغنية بـ Mermaid ومُعلَّمة بمستوى الثقة.',
dailyArtifacts: 'عمل تحليلي يومي',
dailyArtifactsDesc: 'كل عمل منشور تحت analysis/daily/، مجمّع حسب التاريخ وتيار المحتوى (مقترحات، عرائض، استجوابات، تقارير لجان، تحليلات مسائية، لقطات فورية، فحوص عميقة وغيرها).',
openOnGithub: 'افتح على GitHub',
browseDirectoryOnGithub: 'تصفح المجلد الكامل على GitHub',
browseAllDays: 'تصفح كل أيام التحليل على GitHub',
artifacts: 'عمل',
stream: 'تيار',
home: 'الرئيسية',
sitemap: 'خريطة الموقع',
recentDays: 'أحدث أيام التحليل',
olderDays: 'أيام تحليل سابقة',
showMore: 'عرض المزيد',
backToTop: 'العودة إلى الأعلى',
expandArtifacts: 'عرض كل القطع الفردية',
artifactsLabel: 'قطع في هذا التيار',
documentsFolder: 'الوثائق المصدرية',
documentAnalysisDesc: 'تحليل استخباراتي لكل وثيقة مع بيانات وصفية منظمة ومخططات Mermaid.',
documentJsonDesc: 'حمولة JSON منظمة مستخرجة من الوثيقة البرلمانية الأصلية.',
analysisWord: 'تحليل',
dataWord: 'بيانات',
otherLanguages: 'اقرأ هذه الصفحة بلغة أخرى',
skipToMain: 'انتقل إلى المحتوى الرئيسي',
},
he: {
title: 'מודיעין פוליטי',
subtitle: 'מתודולוגיות, תבניות וכל הפלט האנליטי היומי של Riksdagsmonitor',
intro: 'Riksdagsmonitor מפיקה מודיעין פוליטי מבוסס ראיות על הפרלמנט והממשלה השוודיים במסגרת אנליטית מדוקדקת. אינדקס זה חושף את כל ספריית המתודולוגיות, את תבניות הניתוח הניתנות לשימוש חוזר וכל ארטיפקט מודיעיני יומי — כולם מקושרים חזרה ל-GitHub לצורך עקיבות מלאה.',
metaDescription: 'אינדקס מלא של נכסי המודיעין הפוליטי של Riksdagsmonitor: מתודולוגיות, תבניות ניתוח וארטיפקטים יומיים המכסים את הפרלמנט והממשלה השוודיים.',
metaKeywords: 'מודיעין פוליטי, Riksdagsmonitor, OSINT, מתודולוגיות ניתוח, תבניות ניתוח, פרלמנט שוודי, ניתוח פוליטי, מסגרת מודיעין',
quickJumpTo: 'ניווט מהיר',
methodologies: 'מתודולוגיות',
methodologiesDesc: 'מסגרות קנוניות המכוונות כל ניתוח שנוצר בפלטפורמה — מפרוטוקולי AI וניקוד סיכון פוליטי ועד תקני איומים, SWOT ואיכות הפניה.',
templates: 'תבניות ניתוח',
templatesDesc: 'תבניות פלט מובנות המשמשות כל זרימת עבודה אגנטית להבטחת מוצרי מודיעין עקביים, עשירי Mermaid ומסומני רמת ביטחון.',
dailyArtifacts: 'ארטיפקטים אנליטיים יומיים',
dailyArtifactsDesc: 'כל ארטיפקט שפורסם תחת analysis/daily/, מקובץ לפי תאריך וזרם תוכן (הצעות חוק, הצעות, שאילתות, דוחות ועדות, ניתוחי ערב, לכידות בזמן אמת, בדיקות עומק ועוד).',
openOnGithub: 'פתח ב-GitHub',
browseDirectoryOnGithub: 'דפדף בספרייה המלאה ב-GitHub',
browseAllDays: 'דפדף בכל ימי הניתוח ב-GitHub',
artifacts: 'ארטיפקטים',
stream: 'זרם',
home: 'בית',
sitemap: 'מפת אתר',
recentDays: 'ימי הניתוח האחרונים',
olderDays: 'ימי ניתוח ישנים יותר',
showMore: 'הצג עוד',
backToTop: 'חזור למעלה',
expandArtifacts: 'הצג ארטיפקטים בודדים',
artifactsLabel: 'ארטיפקטים בזרם',
documentsFolder: 'מסמכי מקור',
documentAnalysisDesc: 'ניתוח מודיעיני לכל מסמך עם מטא-נתונים מובנים ותרשימי Mermaid.',
documentJsonDesc: 'מטען JSON מובנה שנשלף ממסמך הפרלמנט המקורי.',
analysisWord: 'ניתוח',
dataWord: 'נתונים',
otherLanguages: 'קרא דף זה בשפה אחרת',
skipToMain: 'דלג לתוכן הראשי',
},
ja: {
title: '政治インテリジェンス',
subtitle: 'Riksdagsmonitorの方法論、テンプレート、そして日々すべての分析成果',
intro: 'Riksdagsmonitorは、規律ある分析フレームワークのもとで、スウェーデン議会と政府に関する証拠ベースの政治インテリジェンスを生み出しています。このインデックスは、方法論ライブラリ全体、再利用可能な分析テンプレート、そしてすべての日次インテリジェンス成果物を公開しており、完全な追跡可能性を保証するためにすべて GitHub にリンクされています。',
metaDescription: 'Riksdagsmonitor の政治インテリジェンス資産の完全なインデックス:方法論、分析テンプレート、およびスウェーデン議会と政府を対象とする日次成果物。',
metaKeywords: '政治インテリジェンス, Riksdagsmonitor, OSINT, 分析方法論, 分析テンプレート, スウェーデン議会, 政治分析, インテリジェンスフレームワーク',
quickJumpTo: 'クイックナビゲーション',
methodologies: '方法論',
methodologiesDesc: 'プラットフォームで作成されるすべての分析を統制する正典的フレームワーク — AI駆動プロトコルや政治的リスク評価から、脅威、SWOT、参照品質基準まで。',
templates: '分析テンプレート',
templatesDesc: 'すべてのエージェント型ワークフローが使用する構造化出力テンプレート。一貫性があり、Mermaid豊富で、信頼度ラベル付きのインテリジェンス製品を保証します。',
dailyArtifacts: '日次分析成果物',
dailyArtifactsDesc: 'analysis/daily/ 配下に公開されたすべての成果物を、日付とコンテンツストリーム(法案、動議、質問主意書、委員会報告、夜間分析、リアルタイムスナップショット、詳細調査など)別にグループ化しています。',
openOnGithub: 'GitHubで開く',
browseDirectoryOnGithub: 'GitHubでディレクトリ全体を閲覧',
browseAllDays: 'GitHubで全ての分析日を閲覧',
artifacts: '成果物',
stream: 'ストリーム',
home: 'ホーム',
sitemap: 'サイトマップ',
recentDays: '最新の分析日',
olderDays: '過去の分析日',
showMore: 'さらに表示',
backToTop: 'トップへ戻る',
expandArtifacts: '個別の成果物を表示',
artifactsLabel: 'このストリームの成果物',
documentsFolder: 'ソース文書',
documentAnalysisDesc: '構造化メタデータと Mermaid 可視化を含む文書単位のインテリジェンス分析。',
documentJsonDesc: '元の議会文書から抽出された構造化 JSON ペイロード。',
analysisWord: '分析',
dataWord: 'データ',
otherLanguages: 'このページを他の言語で読む',
skipToMain: 'メインコンテンツへスキップ',
},
ko: {
title: '정치 인텔리전스',
subtitle: 'Riksdagsmonitor의 방법론, 템플릿 및 전체 일일 분석 산출물',
intro: 'Riksdagsmonitor는 엄격한 분석 프레임워크 아래에서 스웨덴 의회와 정부에 관한 증거 기반의 정치 인텔리전스를 생산합니다. 이 인덱스는 전체 방법론 라이브러리, 재사용 가능한 분석 템플릿, 그리고 모든 일일 인텔리전스 산출물을 공개하며, 완전한 추적 가능성을 위해 모두 GitHub에 연결되어 있습니다.',
metaDescription: 'Riksdagsmonitor 정치 인텔리전스 자산의 전체 인덱스: 방법론, 분석 템플릿, 스웨덴 의회 및 정부에 관한 일일 산출물.',
metaKeywords: '정치 인텔리전스, Riksdagsmonitor, OSINT, 분석 방법론, 분석 템플릿, 스웨덴 의회, 정치 분석, 인텔리전스 프레임워크',
quickJumpTo: '빠른 탐색',
methodologies: '방법론',
methodologiesDesc: '플랫폼에서 생성되는 모든 분석을 관장하는 정식 프레임워크 — AI 기반 프로토콜과 정치적 위험 점수화부터 위협, SWOT, 참조 품질 표준까지.',
templates: '분석 템플릿',
templatesDesc: '모든 에이전트 워크플로가 사용하는 구조화된 출력 템플릿으로, 일관적이고 Mermaid가 풍부하며 신뢰도 라벨이 지정된 인텔리전스 제품을 보장합니다.',
dailyArtifacts: '일일 분석 산출물',
dailyArtifactsDesc: 'analysis/daily/ 아래 게시된 모든 산출물을 날짜 및 콘텐츠 스트림(법안, 의안, 질의, 위원회 보고서, 저녁 분석, 실시간 스냅샷, 심층 조사 등)별로 그룹화합니다.',
openOnGithub: 'GitHub에서 열기',
browseDirectoryOnGithub: 'GitHub에서 전체 디렉터리 탐색',
browseAllDays: 'GitHub에서 모든 분석 일자 탐색',
artifacts: '산출물',
stream: '스트림',
home: '홈',
sitemap: '사이트맵',
recentDays: '가장 최근의 분석 일자',
olderDays: '이전 분석 일자',
showMore: '더 보기',
backToTop: '맨 위로',
expandArtifacts: '개별 산출물 표시',
artifactsLabel: '이 스트림의 산출물',
documentsFolder: '원본 문서',
documentAnalysisDesc: '구조화된 메타데이터와 Mermaid 시각화를 포함한 문서별 인텔리전스 분석.',
documentJsonDesc: '원본 의회 문서에서 추출한 구조화된 JSON 페이로드.',
analysisWord: '분석',
dataWord: '데이터',
otherLanguages: '이 페이지를 다른 언어로 읽기',
skipToMain: '본문으로 건너뛰기',
},
zh: {
title: '政治情报',
subtitle: 'Riksdagsmonitor 的方法论、模板及全部日常分析产出',
intro: 'Riksdagsmonitor 在严谨的分析框架下,针对瑞典议会和政府生产以证据为基础的政治情报。此索引公开完整的方法论库、可复用的分析模板以及每一份日常情报产出,全部回链至 GitHub 以保证完整的可追溯性。',
metaDescription: 'Riksdagsmonitor 政治情报资产的完整索引:方法论、分析模板以及涵盖瑞典议会和政府的日常产出。',
metaKeywords: '政治情报, Riksdagsmonitor, OSINT, 分析方法论, 分析模板, 瑞典议会, 政治分析, 情报框架',
quickJumpTo: '快速导航',
methodologies: '方法论',
methodologiesDesc: '管控平台上每一项分析的权威框架 — 从 AI 驱动协议和政治风险评分到威胁、SWOT 以及参考质量标准。',
templates: '分析模板',
templatesDesc: '每个代理式工作流使用的结构化输出模板,以确保一致、富含 Mermaid 且带信心标签的情报产品。',
dailyArtifacts: '日常分析产出',
dailyArtifactsDesc: '按日期和内容流(法案、动议、质询、委员会报告、晚间分析、实时快照、深度检查等)分组呈现 analysis/daily/ 下发布的每一份产出。',
openOnGithub: '在 GitHub 上打开',
browseDirectoryOnGithub: '在 GitHub 上浏览整个目录',
browseAllDays: '在 GitHub 上浏览所有分析日期',
artifacts: '产出',
stream: '流',
home: '首页',
sitemap: '网站地图',
recentDays: '最近的分析日期',
olderDays: '较早的分析日期',
showMore: '显示更多',
backToTop: '返回顶部',
expandArtifacts: '显示单个产出物',
artifactsLabel: '该流中的产出物',
documentsFolder: '源文档',
documentAnalysisDesc: '逐文档情报分析,附带结构化元数据和 Mermaid 可视化。',
documentJsonDesc: '从议会原始文档中提取的结构化 JSON 负载。',
analysisWord: '分析',
dataWord: '数据',
otherLanguages: '以其他语言阅读本页',
skipToMain: '跳至主要内容',
},
};
// ---------------------------------------------------------------------------
// Heuristic icon + description lookup for methodologies & templates
// ---------------------------------------------------------------------------
|