euparliamentmonitor 0.8.16 → 0.8.18
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.
- package/package.json +3 -3
- package/scripts/constants/analysis-constants.d.ts +37 -0
- package/scripts/constants/analysis-constants.d.ts.map +1 -1
- package/scripts/constants/analysis-constants.js +44 -0
- package/scripts/constants/analysis-constants.js.map +1 -1
- package/scripts/constants/language-articles.d.ts.map +1 -1
- package/scripts/constants/language-articles.js +14 -0
- package/scripts/constants/language-articles.js.map +1 -1
- package/scripts/generators/analysis-builders.d.ts.map +1 -1
- package/scripts/generators/analysis-builders.js +189 -82
- package/scripts/generators/analysis-builders.js.map +1 -1
- package/scripts/generators/deep-analysis-content.d.ts.map +1 -1
- package/scripts/generators/deep-analysis-content.js +80 -26
- package/scripts/generators/deep-analysis-content.js.map +1 -1
- package/scripts/generators/strategies/breaking-news-strategy.js +1 -1
- package/scripts/generators/strategies/breaking-news-strategy.js.map +1 -1
- package/scripts/generators/strategies/committee-reports-strategy.js +1 -1
- package/scripts/generators/strategies/committee-reports-strategy.js.map +1 -1
- package/scripts/generators/strategies/monthly-review-strategy.d.ts.map +1 -1
- package/scripts/generators/strategies/monthly-review-strategy.js +16 -12
- package/scripts/generators/strategies/monthly-review-strategy.js.map +1 -1
- package/scripts/generators/strategies/motions-strategy.d.ts.map +1 -1
- package/scripts/generators/strategies/motions-strategy.js +22 -16
- package/scripts/generators/strategies/motions-strategy.js.map +1 -1
- package/scripts/generators/strategies/weekly-review-strategy.d.ts.map +1 -1
- package/scripts/generators/strategies/weekly-review-strategy.js +21 -16
- package/scripts/generators/strategies/weekly-review-strategy.js.map +1 -1
- package/scripts/generators/swot-content.js +1 -1
- package/scripts/generators/swot-content.js.map +1 -1
- package/scripts/types/common.d.ts +2 -0
- package/scripts/types/common.d.ts.map +1 -1
- package/scripts/utils/intelligence-analysis.d.ts +3 -3
- package/scripts/utils/intelligence-analysis.d.ts.map +1 -1
- package/scripts/utils/intelligence-analysis.js +33 -5
- package/scripts/utils/intelligence-analysis.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "euparliamentmonitor",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "European Parliament Intelligence Platform - Monitor political activity with systematic transparency",
|
|
6
6
|
"main": "scripts/index.js",
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"chart.js": "4.5.1",
|
|
131
131
|
"chartjs-plugin-annotation": "3.1.0",
|
|
132
132
|
"d3": "7.9.0",
|
|
133
|
-
"eslint": "10.
|
|
133
|
+
"eslint": "10.2.0",
|
|
134
134
|
"eslint-config-prettier": "10.1.8",
|
|
135
135
|
"eslint-plugin-jsdoc": "62.9.0",
|
|
136
136
|
"eslint-plugin-security": "4.0.0",
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"node": ">=25"
|
|
153
153
|
},
|
|
154
154
|
"dependencies": {
|
|
155
|
-
"european-parliament-mcp-server": "1.1.
|
|
155
|
+
"european-parliament-mcp-server": "1.1.24"
|
|
156
156
|
},
|
|
157
157
|
"optionalDependencies": {
|
|
158
158
|
"worldbank-mcp": "1.0.1"
|
|
@@ -18,4 +18,41 @@
|
|
|
18
18
|
* the AI agent (Opus 4.6) in the agentic workflow, not by code.
|
|
19
19
|
*/
|
|
20
20
|
export declare const AI_MARKER = "[AI_ANALYSIS_REQUIRED]";
|
|
21
|
+
/**
|
|
22
|
+
* Check whether a text value is the AI analysis placeholder marker.
|
|
23
|
+
*
|
|
24
|
+
* Used by rendering functions to detect unfilled AI analysis fields and
|
|
25
|
+
* display a user-friendly "analysis pending" notice rather than the raw
|
|
26
|
+
* marker string.
|
|
27
|
+
*
|
|
28
|
+
* Recognises three marker formats:
|
|
29
|
+
* - `[AI_ANALYSIS_REQUIRED]` — the current standard marker (v3.0+)
|
|
30
|
+
* - `[REQUIRED]` — legacy marker used in template stubs before v3.0
|
|
31
|
+
* - `[?]` — shorthand used in some early methodology templates
|
|
32
|
+
*
|
|
33
|
+
* @param text - Text to test
|
|
34
|
+
* @returns `true` when the text is the AI placeholder marker
|
|
35
|
+
*/
|
|
36
|
+
export declare function isAiMarker(text: string | null | undefined): boolean;
|
|
37
|
+
/**
|
|
38
|
+
* CSS class applied to sections rendered with pending AI analysis content.
|
|
39
|
+
* Used to visually indicate that the section awaits AI completion.
|
|
40
|
+
*/
|
|
41
|
+
export declare const AI_PENDING_CLASS = "ai-analysis-pending";
|
|
42
|
+
/**
|
|
43
|
+
* Test whether a text string is placeholder/fallback content that should be
|
|
44
|
+
* excluded from user-visible metadata (e.g. SEO keywords, descriptions).
|
|
45
|
+
*
|
|
46
|
+
* Matches known placeholder patterns including:
|
|
47
|
+
* - "placeholder" (case-insensitive)
|
|
48
|
+
* - "data unavailable" / "data_unavailable" / "data-unavailable"
|
|
49
|
+
* - "Example motion", "Example amendment", "Example group"
|
|
50
|
+
*
|
|
51
|
+
* Keep this regex in sync with the shell quality-gate patterns in the
|
|
52
|
+
* gh-aw workflow files (`.github/workflows/news-*.md`).
|
|
53
|
+
*
|
|
54
|
+
* @param text - Candidate text to test
|
|
55
|
+
* @returns `true` when the text matches known placeholder patterns
|
|
56
|
+
*/
|
|
57
|
+
export declare function isPlaceholderText(text: string): boolean;
|
|
21
58
|
//# sourceMappingURL=analysis-constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"analysis-constants.d.ts","sourceRoot":"","sources":["../../src/constants/analysis-constants.ts"],"names":[],"mappings":"AAGA;;;;;;GAMG;AAEH;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,SAAS,2BAA2B,CAAC"}
|
|
1
|
+
{"version":3,"file":"analysis-constants.d.ts","sourceRoot":"","sources":["../../src/constants/analysis-constants.ts"],"names":[],"mappings":"AAGA;;;;;;GAMG;AAEH;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,SAAS,2BAA2B,CAAC;AAElD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,OAAO,CAInE;AAED;;;GAGG;AACH,eAAO,MAAM,gBAAgB,wBAAwB,CAAC;AAEtD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEvD"}
|
|
@@ -20,4 +20,48 @@
|
|
|
20
20
|
* the AI agent (Opus 4.6) in the agentic workflow, not by code.
|
|
21
21
|
*/
|
|
22
22
|
export const AI_MARKER = '[AI_ANALYSIS_REQUIRED]';
|
|
23
|
+
/**
|
|
24
|
+
* Check whether a text value is the AI analysis placeholder marker.
|
|
25
|
+
*
|
|
26
|
+
* Used by rendering functions to detect unfilled AI analysis fields and
|
|
27
|
+
* display a user-friendly "analysis pending" notice rather than the raw
|
|
28
|
+
* marker string.
|
|
29
|
+
*
|
|
30
|
+
* Recognises three marker formats:
|
|
31
|
+
* - `[AI_ANALYSIS_REQUIRED]` — the current standard marker (v3.0+)
|
|
32
|
+
* - `[REQUIRED]` — legacy marker used in template stubs before v3.0
|
|
33
|
+
* - `[?]` — shorthand used in some early methodology templates
|
|
34
|
+
*
|
|
35
|
+
* @param text - Text to test
|
|
36
|
+
* @returns `true` when the text is the AI placeholder marker
|
|
37
|
+
*/
|
|
38
|
+
export function isAiMarker(text) {
|
|
39
|
+
if (!text)
|
|
40
|
+
return false;
|
|
41
|
+
const trimmed = text.trim();
|
|
42
|
+
return trimmed === AI_MARKER || trimmed === '[REQUIRED]' || trimmed === '[?]';
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* CSS class applied to sections rendered with pending AI analysis content.
|
|
46
|
+
* Used to visually indicate that the section awaits AI completion.
|
|
47
|
+
*/
|
|
48
|
+
export const AI_PENDING_CLASS = 'ai-analysis-pending';
|
|
49
|
+
/**
|
|
50
|
+
* Test whether a text string is placeholder/fallback content that should be
|
|
51
|
+
* excluded from user-visible metadata (e.g. SEO keywords, descriptions).
|
|
52
|
+
*
|
|
53
|
+
* Matches known placeholder patterns including:
|
|
54
|
+
* - "placeholder" (case-insensitive)
|
|
55
|
+
* - "data unavailable" / "data_unavailable" / "data-unavailable"
|
|
56
|
+
* - "Example motion", "Example amendment", "Example group"
|
|
57
|
+
*
|
|
58
|
+
* Keep this regex in sync with the shell quality-gate patterns in the
|
|
59
|
+
* gh-aw workflow files (`.github/workflows/news-*.md`).
|
|
60
|
+
*
|
|
61
|
+
* @param text - Candidate text to test
|
|
62
|
+
* @returns `true` when the text matches known placeholder patterns
|
|
63
|
+
*/
|
|
64
|
+
export function isPlaceholderText(text) {
|
|
65
|
+
return /placeholder|data[\s._-]unavailable|example\s+(motion|amendment|group)/i.test(text);
|
|
66
|
+
}
|
|
23
67
|
//# sourceMappingURL=analysis-constants.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"analysis-constants.js","sourceRoot":"","sources":["../../src/constants/analysis-constants.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,sCAAsC;AAEtC;;;;;;GAMG;AAEH;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"analysis-constants.js","sourceRoot":"","sources":["../../src/constants/analysis-constants.ts"],"names":[],"mappings":"AAAA,8CAA8C;AAC9C,sCAAsC;AAEtC;;;;;;GAMG;AAEH;;;;;;;;;;;GAWG;AACH,MAAM,CAAC,MAAM,SAAS,GAAG,wBAAwB,CAAC;AAElD;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,UAAU,CAAC,IAA+B;IACxD,IAAI,CAAC,IAAI;QAAE,OAAO,KAAK,CAAC;IACxB,MAAM,OAAO,GAAG,IAAI,CAAC,IAAI,EAAE,CAAC;IAC5B,OAAO,OAAO,KAAK,SAAS,IAAI,OAAO,KAAK,YAAY,IAAI,OAAO,KAAK,KAAK,CAAC;AAChF,CAAC;AAED;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,qBAAqB,CAAC;AAEtD;;;;;;;;;;;;;;GAcG;AACH,MAAM,UAAU,iBAAiB,CAAC,IAAY;IAC5C,OAAO,wEAAwE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC7F,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"language-articles.d.ts","sourceRoot":"","sources":["../../src/constants/language-articles.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AAEH,OAAO,KAAK,EACV,WAAW,EACX,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,cAAc,EACd,gBAAgB,EAChB,2BAA2B,EAC3B,eAAe,EACf,mBAAmB,EACnB,+BAA+B,EAC/B,WAAW,EACX,gBAAgB,EAChB,kBAAkB,EAClB,uBAAuB,EACvB,2BAA2B,EAC5B,MAAM,mBAAmB,CAAC;AAI3B;;;;;GAKG;AAEH,eAAO,MAAM,kBAAkB,EAAE,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC,CA4nB7E,CAAC;AAGF,8CAA8C;AAC9C,eAAO,MAAM,iBAAiB,EAAE,WAAW,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,iBAAiB,CA+D5F,CAAC;AAEF,+CAA+C;AAC/C,eAAO,MAAM,kBAAkB,EAAE,WAAW,CAAC,CAAC,KAAK,EAAE,MAAM,KAAK,iBAAiB,CAoEhF,CAAC;AAEF,iDAAiD;AACjD,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAAC,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,KAAK,iBAAiB,CAoE7F,CAAC;AAEJ,kDAAkD;AAClD,eAAO,MAAM,qBAAqB,EAAE,WAAW,CAAC,CAAC,KAAK,EAAE,MAAM,KAAK,iBAAiB,CAmEnF,CAAC;AAEF,2CAA2C;AAC3C,eAAO,MAAM,cAAc,EAAE,WAAW,CAAC,CAAC,IAAI,EAAE,MAAM,KAAK,iBAAiB,CAoE3E,CAAC;AAEF,iDAAiD;AACjD,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAAC,CAAC,IAAI,EAAE,MAAM,KAAK,iBAAiB,CAgEjF,CAAC;AAEF,4CAA4C;AAC5C,eAAO,MAAM,wBAAwB,EAAE,WAAW,CAAC,CAAC,SAAS,EAAE,MAAM,KAAK,iBAAiB,CAkE1F,CAAC;AAEF,gDAAgD;AAChD,eAAO,MAAM,mBAAmB,EAAE,WAAW,CAAC,MAAM,iBAAiB,CAkEpE,CAAC;AAEF,4DAA4D;AAC5D,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAAC,mBAAmB,CAoMjE,CAAC;AAEF,kFAAkF;AAClF,eAAO,MAAM,iBAAiB,EAAE,WAAW,CAAC,gBAAgB,CAmG3D,CAAC;AAEF,oFAAoF;AACpF,eAAO,MAAM,qBAAqB,EAAE,WAAW,CAAC,mBAAmB,
|
|
1
|
+
{"version":3,"file":"language-articles.d.ts","sourceRoot":"","sources":["../../src/constants/language-articles.ts"],"names":[],"mappings":"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"}
|
|
@@ -1450,6 +1450,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1450
1450
|
iterationEvidenceValidation: 'Evidence Validation',
|
|
1451
1451
|
iterationSynthesis: 'Synthesis',
|
|
1452
1452
|
overallConfidenceLabel: 'Overall Confidence',
|
|
1453
|
+
pendingNotice: 'Analysis pending — this section will be completed by the editorial intelligence workflow.',
|
|
1453
1454
|
perspectivesHeading: 'Multi-Stakeholder Perspectives',
|
|
1454
1455
|
outcomeMatrixHeading: 'Stakeholder Outcome Matrix',
|
|
1455
1456
|
confidenceLabel: 'Confidence',
|
|
@@ -1520,6 +1521,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1520
1521
|
iterationEvidenceValidation: 'Bevisvalidering',
|
|
1521
1522
|
iterationSynthesis: 'Syntes',
|
|
1522
1523
|
overallConfidenceLabel: 'Övergripande Tillförlitlighet',
|
|
1524
|
+
pendingNotice: 'Analys väntar — denna sektion kommer att slutföras av det redaktionella analysarbetsflödet.',
|
|
1523
1525
|
perspectivesHeading: 'Intressentperspektiv',
|
|
1524
1526
|
outcomeMatrixHeading: 'Intressentutfallsmatris',
|
|
1525
1527
|
confidenceLabel: 'Konfidens',
|
|
@@ -1590,6 +1592,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1590
1592
|
iterationEvidenceValidation: 'Bevisvalidering',
|
|
1591
1593
|
iterationSynthesis: 'Syntese',
|
|
1592
1594
|
overallConfidenceLabel: 'Samlet Tillid',
|
|
1595
|
+
pendingNotice: 'Analyse afventer — denne sektion vil blive udfyldt af det redaktionelle analyse-workflow.',
|
|
1593
1596
|
perspectivesHeading: 'Interessentperspektiver',
|
|
1594
1597
|
outcomeMatrixHeading: 'Interessentresultatmatrix',
|
|
1595
1598
|
confidenceLabel: 'Konfidens',
|
|
@@ -1660,6 +1663,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1660
1663
|
iterationEvidenceValidation: 'Bevisvalidering',
|
|
1661
1664
|
iterationSynthesis: 'Syntese',
|
|
1662
1665
|
overallConfidenceLabel: 'Samlet Tillit',
|
|
1666
|
+
pendingNotice: 'Analyse avventer — denne seksjonen vil bli fullført av den redaksjonelle analyse-arbeidsflyten.',
|
|
1663
1667
|
perspectivesHeading: 'Interessentperspektiver',
|
|
1664
1668
|
outcomeMatrixHeading: 'Interessentutfallsmatrise',
|
|
1665
1669
|
confidenceLabel: 'Konfidens',
|
|
@@ -1730,6 +1734,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1730
1734
|
iterationEvidenceValidation: 'Todisteiden Validointi',
|
|
1731
1735
|
iterationSynthesis: 'Synteesi',
|
|
1732
1736
|
overallConfidenceLabel: 'Kokonaisluotettavuus',
|
|
1737
|
+
pendingNotice: 'Analyysi odottaa — tämä osio täydennetään toimituksellisen analyysin työnkulussa.',
|
|
1733
1738
|
perspectivesHeading: 'Sidosryhmänäkökulmat',
|
|
1734
1739
|
outcomeMatrixHeading: 'Sidosryhmätulosmatriisi',
|
|
1735
1740
|
confidenceLabel: 'Luotettavuus',
|
|
@@ -1800,6 +1805,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1800
1805
|
iterationEvidenceValidation: 'Beweisvalidierung',
|
|
1801
1806
|
iterationSynthesis: 'Synthese',
|
|
1802
1807
|
overallConfidenceLabel: 'Gesamtkonfidenz',
|
|
1808
|
+
pendingNotice: 'Analyse ausstehend — dieser Abschnitt wird durch den redaktionellen Analyse-Workflow vervollständigt.',
|
|
1803
1809
|
perspectivesHeading: 'Stakeholder-Perspektiven',
|
|
1804
1810
|
outcomeMatrixHeading: 'Stakeholder-Ergebnismatrix',
|
|
1805
1811
|
confidenceLabel: 'Konfidenz',
|
|
@@ -1870,6 +1876,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1870
1876
|
iterationEvidenceValidation: 'Validation des Preuves',
|
|
1871
1877
|
iterationSynthesis: 'Synthèse',
|
|
1872
1878
|
overallConfidenceLabel: 'Confiance Globale',
|
|
1879
|
+
pendingNotice: "Analyse en attente — cette section sera complétée par le flux de travail d'analyse éditoriale.",
|
|
1873
1880
|
perspectivesHeading: 'Perspectives des Parties Prenantes',
|
|
1874
1881
|
outcomeMatrixHeading: 'Matrice des Résultats des Parties Prenantes',
|
|
1875
1882
|
confidenceLabel: 'Confiance',
|
|
@@ -1940,6 +1947,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
1940
1947
|
iterationEvidenceValidation: 'Validación de Evidencia',
|
|
1941
1948
|
iterationSynthesis: 'Síntesis',
|
|
1942
1949
|
overallConfidenceLabel: 'Confianza Global',
|
|
1950
|
+
pendingNotice: 'Análisis pendiente — esta sección será completada por el flujo de trabajo de análisis editorial.',
|
|
1943
1951
|
perspectivesHeading: 'Perspectivas de las Partes Interesadas',
|
|
1944
1952
|
outcomeMatrixHeading: 'Matriz de Resultados de Partes Interesadas',
|
|
1945
1953
|
confidenceLabel: 'Confianza',
|
|
@@ -2010,6 +2018,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2010
2018
|
iterationEvidenceValidation: 'Bewijsvalidatie',
|
|
2011
2019
|
iterationSynthesis: 'Synthese',
|
|
2012
2020
|
overallConfidenceLabel: 'Algeheel Vertrouwen',
|
|
2021
|
+
pendingNotice: 'Analyse in afwachting — deze sectie wordt aangevuld door de redactionele analyse-workflow.',
|
|
2013
2022
|
perspectivesHeading: 'Stakeholdersperspectieven',
|
|
2014
2023
|
outcomeMatrixHeading: 'Stakeholdersresultaatmatrix',
|
|
2015
2024
|
confidenceLabel: 'Vertrouwen',
|
|
@@ -2080,6 +2089,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2080
2089
|
iterationEvidenceValidation: 'التحقق من الأدلة',
|
|
2081
2090
|
iterationSynthesis: 'التوليف',
|
|
2082
2091
|
overallConfidenceLabel: 'الثقة الإجمالية',
|
|
2092
|
+
pendingNotice: 'التحليل معلق — سيتم استكمال هذا القسم بواسطة سير العمل التحريري التحليلي.',
|
|
2083
2093
|
perspectivesHeading: 'وجهات نظر أصحاب المصلحة',
|
|
2084
2094
|
outcomeMatrixHeading: 'مصفوفة نتائج أصحاب المصلحة',
|
|
2085
2095
|
confidenceLabel: 'الثقة',
|
|
@@ -2150,6 +2160,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2150
2160
|
iterationEvidenceValidation: 'אימות ראיות',
|
|
2151
2161
|
iterationSynthesis: 'סינתזה',
|
|
2152
2162
|
overallConfidenceLabel: 'ביטחון כולל',
|
|
2163
|
+
pendingNotice: 'ניתוח ממתין — חלק זה יושלם על ידי תהליך העבודה של הניתוח העורכי.',
|
|
2153
2164
|
perspectivesHeading: 'נקודות מבט של בעלי עניין',
|
|
2154
2165
|
outcomeMatrixHeading: 'מטריצת תוצאות בעלי עניין',
|
|
2155
2166
|
confidenceLabel: 'ביטחון',
|
|
@@ -2220,6 +2231,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2220
2231
|
iterationEvidenceValidation: '証拠の検証',
|
|
2221
2232
|
iterationSynthesis: '総合',
|
|
2222
2233
|
overallConfidenceLabel: '総合信頼度',
|
|
2234
|
+
pendingNotice: '分析保留中 — このセクションは編集分析ワークフローによって完了されます。',
|
|
2223
2235
|
perspectivesHeading: 'ステークホルダーの視点',
|
|
2224
2236
|
outcomeMatrixHeading: 'ステークホルダー結果マトリックス',
|
|
2225
2237
|
confidenceLabel: '信頼度',
|
|
@@ -2290,6 +2302,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2290
2302
|
iterationEvidenceValidation: '증거 검증',
|
|
2291
2303
|
iterationSynthesis: '종합',
|
|
2292
2304
|
overallConfidenceLabel: '종합 신뢰도',
|
|
2305
|
+
pendingNotice: '분석 대기 중 — 이 섹션은 편집 분석 워크플로에 의해 완성됩니다.',
|
|
2293
2306
|
perspectivesHeading: '이해관계자 관점',
|
|
2294
2307
|
outcomeMatrixHeading: '이해관계자 결과 매트릭스',
|
|
2295
2308
|
confidenceLabel: '신뢰도',
|
|
@@ -2360,6 +2373,7 @@ export const DEEP_ANALYSIS_STRINGS = {
|
|
|
2360
2373
|
iterationEvidenceValidation: '证据验证',
|
|
2361
2374
|
iterationSynthesis: '综合',
|
|
2362
2375
|
overallConfidenceLabel: '整体置信度',
|
|
2376
|
+
pendingNotice: '分析待定 — 本节将由编辑分析工作流完成。',
|
|
2363
2377
|
/* eslint-enable sonarjs/no-duplicate-string */
|
|
2364
2378
|
perspectivesHeading: '利益相关方视角',
|
|
2365
2379
|
outcomeMatrixHeading: '利益相关方结果矩阵',
|