ixbrl-viewer 1.4.1__py3-none-any.whl → 1.4.86__py3-none-any.whl
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.
- iXBRLViewerPlugin/__init__.py +231 -127
- iXBRLViewerPlugin/_version.py +33 -3
- iXBRLViewerPlugin/constants.py +96 -2
- iXBRLViewerPlugin/featureConfig.py +8 -1
- iXBRLViewerPlugin/iXBRLViewer.py +356 -214
- iXBRLViewerPlugin/plugin.py +12 -0
- iXBRLViewerPlugin/ui.py +81 -50
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt +12 -5
- iXBRLViewerPlugin/viewer/i18next-parser.config.js +1 -1
- iXBRLViewerPlugin/viewer/src/data/utr.json +1244 -0
- iXBRLViewerPlugin/viewer/src/html/fact-details.html +69 -38
- iXBRLViewerPlugin/viewer/src/html/footer-logo.html +4 -0
- iXBRLViewerPlugin/viewer/src/html/footnote-details.html +2 -2
- iXBRLViewerPlugin/viewer/src/html/inspector.html +352 -197
- iXBRLViewerPlugin/viewer/src/i18n/cy/balancetypes.json +1 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/cy/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/da/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/de/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/labelroles.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/en/translation.json +73 -23
- iXBRLViewerPlugin/viewer/src/i18n/es/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/datatypes.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/scale.json +16 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/es/translation.json +87 -37
- iXBRLViewerPlugin/viewer/src/i18n/fr/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/fr/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/nl/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/balancetypes.json +4 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/currencies.json +13 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/datatypes.json +9 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/labelroles.json +24 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/referenceparts.json +10 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/scale.json +15 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/tooltips.json +17 -0
- iXBRLViewerPlugin/viewer/src/i18n/uk/translation.json +179 -0
- iXBRLViewerPlugin/viewer/src/icons/calculator.svg +13 -0
- iXBRLViewerPlugin/viewer/src/icons/circle-cross.svg +11 -0
- iXBRLViewerPlugin/viewer/src/icons/circle-tick.svg +11 -0
- iXBRLViewerPlugin/viewer/src/icons/dark-mode.svg +4 -0
- iXBRLViewerPlugin/viewer/src/icons/dimension.svg +1 -5
- iXBRLViewerPlugin/viewer/src/icons/member.svg +2 -5
- iXBRLViewerPlugin/viewer/src/icons/multi-tag.svg +10 -0
- iXBRLViewerPlugin/viewer/src/img/arelle-dark.svg +179 -0
- iXBRLViewerPlugin/viewer/src/img/inline-viewer-dark.svg +59 -0
- iXBRLViewerPlugin/viewer/src/js/accordian.js +5 -4
- iXBRLViewerPlugin/viewer/src/js/aspect.js +29 -10
- iXBRLViewerPlugin/viewer/src/js/aspect.test.js +40 -31
- iXBRLViewerPlugin/viewer/src/js/balance.js +14 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.js +213 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.test.js +306 -0
- iXBRLViewerPlugin/viewer/src/js/calculationInspector.js +187 -0
- iXBRLViewerPlugin/viewer/src/js/chart.js +26 -24
- iXBRLViewerPlugin/viewer/src/js/chart.test.js +10 -9
- iXBRLViewerPlugin/viewer/src/js/concept.js +37 -4
- iXBRLViewerPlugin/viewer/src/js/concept.test.js +30 -6
- iXBRLViewerPlugin/viewer/src/js/datatype.js +20 -0
- iXBRLViewerPlugin/viewer/src/js/datatype.test.js +62 -0
- iXBRLViewerPlugin/viewer/src/js/dialog.js +6 -4
- iXBRLViewerPlugin/viewer/src/js/docOrderIndex.js +7 -7
- iXBRLViewerPlugin/viewer/src/js/fact.js +156 -59
- iXBRLViewerPlugin/viewer/src/js/fact.test.js +160 -29
- iXBRLViewerPlugin/viewer/src/js/factset.js +64 -15
- iXBRLViewerPlugin/viewer/src/js/factset.test.js +102 -31
- iXBRLViewerPlugin/viewer/src/js/footnote.js +8 -2
- iXBRLViewerPlugin/viewer/src/js/index.js +11 -3
- iXBRLViewerPlugin/viewer/src/js/inspector.js +747 -221
- iXBRLViewerPlugin/viewer/src/js/inspector.test.js +143 -25
- iXBRLViewerPlugin/viewer/src/js/interval.js +70 -0
- iXBRLViewerPlugin/viewer/src/js/interval.test.js +153 -0
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +391 -262
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js +134 -20
- iXBRLViewerPlugin/viewer/src/js/ixnode.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/menu.js +25 -7
- iXBRLViewerPlugin/viewer/src/js/number-matcher.js +7 -3
- iXBRLViewerPlugin/viewer/src/js/number-matcher.test.js +4 -0
- iXBRLViewerPlugin/viewer/src/js/outline.js +34 -13
- iXBRLViewerPlugin/viewer/src/js/outline.test.js +97 -91
- iXBRLViewerPlugin/viewer/src/js/period.js +0 -1
- iXBRLViewerPlugin/viewer/src/js/report.js +260 -351
- iXBRLViewerPlugin/viewer/src/js/report.test.js +95 -27
- iXBRLViewerPlugin/viewer/src/js/reportset.js +264 -0
- iXBRLViewerPlugin/viewer/src/js/reportset.test.js +357 -0
- iXBRLViewerPlugin/viewer/src/js/search.js +72 -38
- iXBRLViewerPlugin/viewer/src/js/search.test.js +184 -84
- iXBRLViewerPlugin/viewer/src/js/summary.js +34 -8
- iXBRLViewerPlugin/viewer/src/js/summary.test.js +69 -25
- iXBRLViewerPlugin/viewer/src/js/tableExport.js +9 -9
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.js +34 -0
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.test.js +32 -0
- iXBRLViewerPlugin/viewer/src/js/test-utils.js +46 -0
- iXBRLViewerPlugin/viewer/src/js/theme.js +50 -0
- iXBRLViewerPlugin/viewer/src/js/unit.js +90 -32
- iXBRLViewerPlugin/viewer/src/js/unit.test.js +62 -25
- iXBRLViewerPlugin/viewer/src/js/util.js +94 -0
- iXBRLViewerPlugin/viewer/src/js/util.test.js +33 -1
- iXBRLViewerPlugin/viewer/src/js/utr.js +27 -0
- iXBRLViewerPlugin/viewer/src/js/viewer.js +205 -181
- iXBRLViewerPlugin/viewer/src/js/viewerOptions.js +0 -2
- iXBRLViewerPlugin/viewer/src/less/accordian.less +10 -6
- iXBRLViewerPlugin/viewer/src/less/block-list.less +16 -5
- iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less +83 -0
- iXBRLViewerPlugin/viewer/src/less/chart.less +8 -5
- iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less +40 -0
- iXBRLViewerPlugin/viewer/src/less/colours.less +32 -20
- iXBRLViewerPlugin/viewer/src/less/common.less +3 -3
- iXBRLViewerPlugin/viewer/src/less/components.less +6 -4
- iXBRLViewerPlugin/viewer/src/less/core.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/dialog.less +21 -14
- iXBRLViewerPlugin/viewer/src/less/form-controls.less +33 -11
- iXBRLViewerPlugin/viewer/src/less/inspector.less +1045 -726
- iXBRLViewerPlugin/viewer/src/less/loader.less +2 -2
- iXBRLViewerPlugin/viewer/src/less/menu.less +33 -15
- iXBRLViewerPlugin/viewer/src/less/summary.less +16 -6
- iXBRLViewerPlugin/viewer/src/less/tabs.less +9 -9
- iXBRLViewerPlugin/viewer/src/less/text-block-viewer.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/text-mixins.less +2 -1
- iXBRLViewerPlugin/viewer/src/less/validation-report.less +2 -3
- iXBRLViewerPlugin/viewer/src/less/viewer.less +105 -74
- iXBRLViewerPlugin/viewer/webpack.common.js +19 -9
- iXBRLViewerPlugin/xhtmlserialize.py +59 -45
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/METADATA +181 -50
- ixbrl_viewer-1.4.86.dist-info/RECORD +217 -0
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/WHEEL +1 -1
- ixbrl_viewer-1.4.1.dist-info/LICENSE → ixbrl_viewer-1.4.86.dist-info/licenses/LICENSE.md +8 -14
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/top_level.txt +0 -1
- iXBRLViewerPlugin/viewer/src/js/calculations.js +0 -111
- iXBRLViewerPlugin/viewer/src/js/interact.min.js +0 -6
- ixbrl_viewer-1.4.1.dist-info/RECORD +0 -155
- tests/__init__.py +0 -0
- tests/puppeteer/framework/core_elements.js +0 -117
- tests/puppeteer/framework/page_objects/doc_frame.js +0 -105
- tests/puppeteer/framework/page_objects/fact_details_panel.js +0 -80
- tests/puppeteer/framework/page_objects/search_panel.js +0 -76
- tests/puppeteer/framework/page_objects/toolbar.js +0 -18
- tests/puppeteer/framework/utils.js +0 -3
- tests/puppeteer/framework/viewer_page.js +0 -103
- tests/puppeteer/puppeteer_test_run_via_intellij.jpg +0 -0
- tests/puppeteer/test_filings/filing_documents_smoke_test.zip +0 -0
- tests/puppeteer/test_filings/highlights.zip +0 -0
- tests/puppeteer/tests/fact_properties.test.js +0 -78
- tests/puppeteer/tests/highlight.test.js +0 -186
- tests/puppeteer/tests/search.test.js +0 -86
- tests/puppeteer/tools/generate.sh +0 -15
- tests/unit_tests/__init__.py +0 -0
- tests/unit_tests/iXBRLViewerPlugin/__init__.py +0 -0
- tests/unit_tests/iXBRLViewerPlugin/mock_arelle.py +0 -39
- tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py +0 -641
- tests/unit_tests/iXBRLViewerPlugin/test_xhtmlserialize.py +0 -310
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.1.dist-info → ixbrl_viewer-1.4.86.dist-info/licenses}/NOTICE +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"anchoring": "Verankerungsbeziehungen stellen Verbindungen zwischen unternehmensspezifischen Erweiterungskonzepten und standardisierten Konzepten dar, die in der Basistaxonomie definiert sind.",
|
|
3
|
+
"dimension": "Eine Dimension ist ein qualifizierendes Merkmal, das verwendet wird, um einen Datenpunkt eindeutig zu definieren.",
|
|
4
|
+
"conceptsCount": "Die Anzahl der eindeutigen Konzepte, die in diesem Bericht verwendet werden.",
|
|
5
|
+
"dimensionsCount": "Die Anzahl der eindeutigen Dimensionen, die in diesem Bericht verwendet werden.",
|
|
6
|
+
"fileSummary": "Eine Liste der Dateien, die in der Einreichung enthalten sind.",
|
|
7
|
+
"membersCount": "Die Anzahl der eindeutigen Dimensionsmitglieder, die in diesem Bericht verwendet werden.",
|
|
8
|
+
"scale": "Bei numerischen Fakten der Faktor, um den der dargestellte Wert skaliert ist.",
|
|
9
|
+
"accuracy": "Die Genauigkeit, mit der ein numerischer Fakt berichtet wird.",
|
|
10
|
+
"concept": "Ein Konzept ist ein Element, das die Bedeutung eines Fakts definiert.",
|
|
11
|
+
"period": "Der Zeitraum, auf den sich dieser Fakt bezieht. Dies kann entweder ein Zeitpunkt oder eine Dauer sein, abhängig von der Natur des Konzepts.",
|
|
12
|
+
"references": "Informationen zur autoritativen Definition eines Konzepts. Referenzen beziehen sich typischerweise auf einen Rechnungslegungsstandard.",
|
|
13
|
+
"calculations": "Berechnungsbeziehungen zwischen numerischen Fakten in einem Bericht. Berechnungsbeziehungen können verwendet werden, um nachzuvollziehen, wie Zahlen in einem Bericht zusammengefasst werden, und auch zur Überprüfung der Konsistenz der berichteten Zahlen.",
|
|
14
|
+
"hiddenFacts": "Die Anzahl der versteckten Fakten in diesem Bericht. Versteckte Fakten sind Fakten, die als XBRL-Daten gemeldet, aber im präsentierten Bericht nicht angezeigt werden.",
|
|
15
|
+
"mandatoryFacts": "Die Anzahl der Pflichtfakten in diesem Bericht. Pflichtfakten sind Fakten, die von der einreichenden Behörde gemeldet werden müssen.",
|
|
16
|
+
"namespace": "Namespaces werden verwendet, um Konzept-, Dimensions- und Mitgliedsdefinitionen zu partitionieren. Wenn ein Bericht unternehmensspezifische Konzepte, Dimensionen oder Mitglieder verwendet, werden diese in einem separaten Namespace definiert. Namespaces können auch verwendet werden, um große Taxonomien zu partitionieren."
|
|
17
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"calculation": {
|
|
3
|
+
"calculated-total": "Berechnet",
|
|
4
|
+
"concept": "Konzept",
|
|
5
|
+
"consistent-duplicate-facts-present": "{{nfacts}} konsistente doppelte Fakten vorhanden",
|
|
6
|
+
"does-not-bind": "Berechnung bindet nicht",
|
|
7
|
+
"inconsistent-duplicate-facts-present": "{{nfacts}} inkonsistente doppelte Fakten vorhanden",
|
|
8
|
+
"maximum": "Maximum",
|
|
9
|
+
"minimum": "Minimum",
|
|
10
|
+
"reported-total": "Gemeldet",
|
|
11
|
+
"reported-value": "Gemeldeter Wert",
|
|
12
|
+
"useCalculations11": "Verwende Berechnungen v1.1"
|
|
13
|
+
},
|
|
14
|
+
"chart": {
|
|
15
|
+
"comparisonChart": "Vergleichsdiagramm"
|
|
16
|
+
},
|
|
17
|
+
"common": {
|
|
18
|
+
"accuracyInfinite": "Unendliche Genauigkeit",
|
|
19
|
+
"none": "Keine",
|
|
20
|
+
"notApplicable": "n/a",
|
|
21
|
+
"unscaled": "Unskaliert",
|
|
22
|
+
"unspecified": "Nicht angegeben"
|
|
23
|
+
},
|
|
24
|
+
"dialog": {
|
|
25
|
+
"close": "Schließen"
|
|
26
|
+
},
|
|
27
|
+
"factDetails": {
|
|
28
|
+
"accuracy": "Genauigkeit",
|
|
29
|
+
"balance": "Saldo",
|
|
30
|
+
"calculationIsConsistent": "Berechnung ist konsistent",
|
|
31
|
+
"calculationIsInconsistent": "Berechnung ist inkonsistent",
|
|
32
|
+
"calculationUnchecked": "Berechnung aufgrund doppelter Fakten nicht geprüft",
|
|
33
|
+
"calculationUncheckedIncorrectVersion": "Berechnungsbeziehungen 1.1 im Legacy-Modus nicht geprüft",
|
|
34
|
+
"change": "Änderung",
|
|
35
|
+
"changeFromIn": "Von {{from}} in ",
|
|
36
|
+
"changePercentageDecrease": "{{decrease}}% Rückgang bei ",
|
|
37
|
+
"changePercentageIncrease": "{{increase}}% Anstieg bei ",
|
|
38
|
+
"concept": "Konzept",
|
|
39
|
+
"datatype": "Typ",
|
|
40
|
+
"date": "Datum",
|
|
41
|
+
"dimensions": "Dimensionen",
|
|
42
|
+
"duplicatesCount": "{{current}} von {{total}}",
|
|
43
|
+
"entity": "Einheit",
|
|
44
|
+
"factValue": "Faktwert",
|
|
45
|
+
"nonNumericFact": "nicht-numerischer Fakt",
|
|
46
|
+
"noPriorFactInThisReport": "Kein vorheriger Fakt in diesem Bericht",
|
|
47
|
+
"noUnit": "<KEINE EINHEIT>",
|
|
48
|
+
"properties": "Eigenschaften",
|
|
49
|
+
"scale": "Skalierung",
|
|
50
|
+
"viewCalculationDetails": "Berechnungsdetails ansehen"
|
|
51
|
+
},
|
|
52
|
+
"footnotes": {
|
|
53
|
+
"footnote": "Fußnote"
|
|
54
|
+
},
|
|
55
|
+
"inspector": {
|
|
56
|
+
"anchoring": "Verankerung",
|
|
57
|
+
"associatedFacts": "Verbundene Fakten",
|
|
58
|
+
"calculationDetails": "Berechnungsdetails",
|
|
59
|
+
"calculations": "Berechnungen",
|
|
60
|
+
"concealedFact": "Verdeckter Fakt",
|
|
61
|
+
"conceptType": "Konzepttyp",
|
|
62
|
+
"contributor": "Beitragender",
|
|
63
|
+
"datatypes": "Typen",
|
|
64
|
+
"dimensions": "Dimensionstyp",
|
|
65
|
+
"documentOutline": "Dokumentübersicht",
|
|
66
|
+
"documentSummary": "Dokumentzusammenfassung",
|
|
67
|
+
"explicitDimension": "Explizite Dimensionen",
|
|
68
|
+
"fact-groups": "Abschnitte",
|
|
69
|
+
"factProperties": "Fakteigenschaften",
|
|
70
|
+
"factSearch": "Faktsuche",
|
|
71
|
+
"factValue": "Faktwert",
|
|
72
|
+
"footnoteProperties": "Fußnoteneigenschaften",
|
|
73
|
+
"footnotes": "Fußnoten",
|
|
74
|
+
"hidden": "Versteckt",
|
|
75
|
+
"hiddenFact": "Versteckter Fakt",
|
|
76
|
+
"highlight": "Hervorheben",
|
|
77
|
+
"initializing": "Initialisierung",
|
|
78
|
+
"ixbrlInspector": "iXBRL-Inspektor",
|
|
79
|
+
"labels": "",
|
|
80
|
+
"loadingViewer": "Lade iXBRL-Viewer",
|
|
81
|
+
"mandatoryFacts": "Nur Pflichtfakten",
|
|
82
|
+
"namespaces": "Namespaces",
|
|
83
|
+
"narrowerAnchor": "Engere Verankerungen",
|
|
84
|
+
"negative": "Negativ",
|
|
85
|
+
"nextTag": "Nächstes Tag",
|
|
86
|
+
"noFactSelected": "Kein Fakt ausgewählt",
|
|
87
|
+
"numericOption": "Numerisch",
|
|
88
|
+
"outlineUnavailable": "Übersicht nicht verfügbar",
|
|
89
|
+
"period": "Periode",
|
|
90
|
+
"positive": "Positiv",
|
|
91
|
+
"previousTag": "Vorheriges Tag",
|
|
92
|
+
"printDocument": "Dokument drucken",
|
|
93
|
+
"references": "Referenzen",
|
|
94
|
+
"reset": "Zurücksetzen",
|
|
95
|
+
"scales": "Skalen",
|
|
96
|
+
"search": "Suche",
|
|
97
|
+
"searchReport": "iXBRL-Bericht durchsuchen",
|
|
98
|
+
"searchResults": "Suchergebnisse",
|
|
99
|
+
"searchTitle": "Suche",
|
|
100
|
+
"settingsMenu": "Einstellungsmenü",
|
|
101
|
+
"showAnalysisChart": "Analyse-Diagramm anzeigen",
|
|
102
|
+
"showTextOnly": "Nur Text anzeigen",
|
|
103
|
+
"summary": {
|
|
104
|
+
"fact": {
|
|
105
|
+
"header": "Faktzusammenfassung",
|
|
106
|
+
"hidden": "Versteckte Fakten",
|
|
107
|
+
"mandatory": "Pflichtfakten",
|
|
108
|
+
"total": "Gesamtfakten"
|
|
109
|
+
},
|
|
110
|
+
"file": {
|
|
111
|
+
"calculations": "Berechnungs-Linkbases",
|
|
112
|
+
"definitions": "Definitions-Linkbases",
|
|
113
|
+
"header": "Dateizusammenfassung",
|
|
114
|
+
"inline": "Inline-Dokumente",
|
|
115
|
+
"labels": "Label-Linkbases",
|
|
116
|
+
"other": "Andere Linkbases",
|
|
117
|
+
"presentation": "Präsentations-Linkbases",
|
|
118
|
+
"references": "Referenz-Linkbases",
|
|
119
|
+
"schemas": "Schemata"
|
|
120
|
+
},
|
|
121
|
+
"reportCreation": "Berichtserstellung",
|
|
122
|
+
"tag": {
|
|
123
|
+
"colConcepts": "Konzepte",
|
|
124
|
+
"colDimensions": "Dimensionen",
|
|
125
|
+
"colMembers": "Mitglieder",
|
|
126
|
+
"colNamespace": "Namespace",
|
|
127
|
+
"colTotal": "Gesamt",
|
|
128
|
+
"header": "Tag-Zusammenfassung",
|
|
129
|
+
"rowTotal": "Gesamt"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"summation": "Summe",
|
|
133
|
+
"targetDocument": "Zieldokument",
|
|
134
|
+
"textOption": "Text",
|
|
135
|
+
"typedDimensions": "Typisierte Dimensionen",
|
|
136
|
+
"units": "Einheiten",
|
|
137
|
+
"validationCode": "Code",
|
|
138
|
+
"validationMessage": "Nachricht",
|
|
139
|
+
"validationResults": "Validierungsergebnisse",
|
|
140
|
+
"validationSeverity": "Schweregrad",
|
|
141
|
+
"visibility": "Sichtbarkeit",
|
|
142
|
+
"visible": "Sichtbar",
|
|
143
|
+
"widerAnchor": "Weitere Verankerung",
|
|
144
|
+
"xbrlGlossaryOpensInNewTab": "XBRL-Glossar (öffnet sich in neuem Tab)"
|
|
145
|
+
},
|
|
146
|
+
"menu": {
|
|
147
|
+
"actions": "Aktionen",
|
|
148
|
+
"applicationLanguage": "Anwendungssprache",
|
|
149
|
+
"contactUs": "Kontaktieren Sie uns",
|
|
150
|
+
"documentLanguage": "Dokumentsprache",
|
|
151
|
+
"help": "Hilfe",
|
|
152
|
+
"options": "Optionen",
|
|
153
|
+
"survey": "Umfrage",
|
|
154
|
+
"userGuide": "Benutzerhandbuch"
|
|
155
|
+
},
|
|
156
|
+
"search": {
|
|
157
|
+
"concealedFact": "Verdeckter Fakt",
|
|
158
|
+
"dataTypeConflictWarning": "Warnung: Auswahl steht im Konflikt mit dem Filter für Konzepttypen",
|
|
159
|
+
"default": "Standard",
|
|
160
|
+
"filter": "Filter",
|
|
161
|
+
"hiddenFact": "Versteckter Fakt",
|
|
162
|
+
"matchingFactsSummary": "Zeige {{nMatches}} von {{nTotal}} Fakten",
|
|
163
|
+
"noMatchFound": "Keine Übereinstimmung gefunden",
|
|
164
|
+
"reset": "Zurücksetzen",
|
|
165
|
+
"selected": "ausgewählt",
|
|
166
|
+
"showMoreResults": "Mehr Ergebnisse anzeigen",
|
|
167
|
+
"toggleFilterControls": "Filtersteuerung umschalten",
|
|
168
|
+
"tryAgainDifferentKeywords": "Versuchen Sie es mit anderen Schlüsselwörtern erneut",
|
|
169
|
+
"viewFact": "Fakt anzeigen"
|
|
170
|
+
},
|
|
171
|
+
"toolbar": {
|
|
172
|
+
"homePage": "Startseite",
|
|
173
|
+
"toggleDarkMode": "Dunkelmodus umschalten",
|
|
174
|
+
"xbrlElements": "XBRL-Elemente"
|
|
175
|
+
},
|
|
176
|
+
"viewer": {
|
|
177
|
+
"ixbrlDocumentView": "iXBRL-Dokumentansicht"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"-3": "thousandths",
|
|
3
|
+
"-2": "hundredths",
|
|
4
|
+
"-1": "tenths",
|
|
5
|
+
"0": "ones",
|
|
6
|
+
"1": "tens",
|
|
7
|
+
"2": "hundreds",
|
|
8
|
+
"3": "thousands",
|
|
9
|
+
"4": "ten thousands",
|
|
10
|
+
"5": "hundred thousands",
|
|
11
|
+
"6": "millions",
|
|
12
|
+
"7": "ten millions",
|
|
13
|
+
"8": "hundred millions",
|
|
14
|
+
"9": "billions"
|
|
15
|
+
}
|
|
16
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"anchoring": "Anchoring relationships provide links between company-specific extension concepts and standard concepts defined in the base taxonomy.",
|
|
3
|
+
"dimension": "A dimension is a qualifying characteristic that is used to uniquely define a data point.",
|
|
4
|
+
"conceptsCount": "The number of unique concepts used in this report.",
|
|
5
|
+
"dimensionsCount": "The number of unique dimensions used in this report.",
|
|
6
|
+
"fileSummary": "A list of the files that are in the filing.",
|
|
7
|
+
"membersCount": "The number of unique dimension members used in this report.",
|
|
8
|
+
"scale": "For numeric facts, the amount by which the presented value is scaled.",
|
|
9
|
+
"accuracy": "The accuracy to which a numeric fact is reported.",
|
|
10
|
+
"concept": "A concept is an element that defines the meaning of a fact.",
|
|
11
|
+
"period": "The period against which this fact is reported. This can be either an instant or a duration, depending on the nature of the concept.",
|
|
12
|
+
"references": "Information about the authoritative definition of a concept. References typically refer to an accounting standard.",
|
|
13
|
+
"calculations": "Calculation relationships between numeric facts in a report. Calculation relationships can be used to trace how figures in a report roll-up, and can also be used to check the consistency of the reported numbers.",
|
|
14
|
+
"hiddenFacts": "The number of hidden facts in this report. Hidden facts are facts that are reported as XBRL data, but are not shown in the presented report.",
|
|
15
|
+
"mandatoryFacts": "The number of mandatory facts in this report. Mandatory facts are facts that are required to be reported by the filing jurisdiction.",
|
|
16
|
+
"namespace": "Namespaces are used to partition concept, dimension and member definitions. If a report uses any company-specific concepts, dimensions or members, these will be defined in a separate namespace. Namespaces can also be used to partition large taxonomies."
|
|
17
|
+
}
|
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
+
"calculation": {
|
|
3
|
+
"calculated-total": "Calculated",
|
|
4
|
+
"concept": "Concept",
|
|
5
|
+
"consistent-duplicate-facts-present": "{{nfacts}} consistent duplicate facts present",
|
|
6
|
+
"does-not-bind": "Calculation does not bind",
|
|
7
|
+
"inconsistent-duplicate-facts-present": "{{nfacts}} inconsistent duplicate facts present",
|
|
8
|
+
"maximum": "Maximum",
|
|
9
|
+
"minimum": "Minimum",
|
|
10
|
+
"reported-total": "Reported",
|
|
11
|
+
"reported-value": "Reported value",
|
|
12
|
+
"useCalculations11": "Use Calculations v1.1"
|
|
13
|
+
},
|
|
14
|
+
"chart": {
|
|
15
|
+
"comparisonChart": "Comparison chart"
|
|
16
|
+
},
|
|
2
17
|
"common": {
|
|
3
18
|
"accuracyInfinite": "Infinite precision",
|
|
4
19
|
"none": "None",
|
|
@@ -6,22 +21,33 @@
|
|
|
6
21
|
"unscaled": "Unscaled",
|
|
7
22
|
"unspecified": "Unspecified"
|
|
8
23
|
},
|
|
24
|
+
"dialog": {
|
|
25
|
+
"close": "close"
|
|
26
|
+
},
|
|
9
27
|
"factDetails": {
|
|
10
28
|
"accuracy": "Accuracy",
|
|
29
|
+
"balance": "Balance",
|
|
30
|
+
"calculationIsConsistent": "Calculation is consistent",
|
|
31
|
+
"calculationIsInconsistent": "Calculation is inconsistent",
|
|
32
|
+
"calculationUnchecked": "Calculation not checked due to presence of duplicate facts",
|
|
33
|
+
"calculationUncheckedIncorrectVersion": "Calculation 1.1 relationships not checked in legacy calculation mode",
|
|
11
34
|
"change": "Change",
|
|
12
35
|
"changeFromIn": "From {{from}} in ",
|
|
13
36
|
"changePercentageDecrease": "{{decrease}}% decrease on ",
|
|
14
37
|
"changePercentageIncrease": "{{increase}}% increase on ",
|
|
15
38
|
"concept": "Concept",
|
|
39
|
+
"datatype": "Type",
|
|
16
40
|
"date": "Date",
|
|
17
41
|
"dimensions": "Dimensions",
|
|
18
42
|
"duplicatesCount": "{{current}} of {{total}}",
|
|
19
43
|
"entity": "Entity",
|
|
20
44
|
"factValue": "Fact Value",
|
|
45
|
+
"nonNumericFact": "non-numeric fact",
|
|
21
46
|
"noPriorFactInThisReport": "No prior fact in this report",
|
|
22
47
|
"noUnit": "<NOUNIT>",
|
|
23
48
|
"properties": "Properties",
|
|
24
|
-
"scale": "Scale"
|
|
49
|
+
"scale": "Scale",
|
|
50
|
+
"viewCalculationDetails": "View calculation details"
|
|
25
51
|
},
|
|
26
52
|
"footnotes": {
|
|
27
53
|
"footnote": "Footnote"
|
|
@@ -29,25 +55,30 @@
|
|
|
29
55
|
"inspector": {
|
|
30
56
|
"anchoring": "Anchoring",
|
|
31
57
|
"associatedFacts": "Associated facts",
|
|
58
|
+
"calculationDetails": "Calculation details",
|
|
32
59
|
"calculations": "Calculations",
|
|
33
60
|
"concealedFact": "Concealed fact",
|
|
34
61
|
"conceptType": "Concept Type",
|
|
35
62
|
"contributor": "Contributor",
|
|
63
|
+
"datatypes": "Types",
|
|
64
|
+
"dimensions": "Dimension Type",
|
|
36
65
|
"documentOutline": "Document outline",
|
|
37
66
|
"documentSummary": "Document summary",
|
|
67
|
+
"explicitDimension": "Explicit Dimensions",
|
|
38
68
|
"fact-groups": "Sections",
|
|
39
69
|
"factProperties": "Fact Properties",
|
|
40
70
|
"factSearch": "Fact Search",
|
|
41
71
|
"factValue": "Fact Value",
|
|
42
|
-
"filter": "Filter",
|
|
43
72
|
"footnoteProperties": "Footnote Properties",
|
|
44
73
|
"footnotes": "Footnotes",
|
|
74
|
+
"hidden": "Hidden",
|
|
45
75
|
"hiddenFact": "Hidden Fact",
|
|
46
|
-
"hiddenFacts": "Hidden Facts",
|
|
47
76
|
"highlight": "Highlight",
|
|
48
77
|
"initializing": "Initializing",
|
|
78
|
+
"ixbrlInspector": "iXBRL Inspector",
|
|
79
|
+
"labels": "",
|
|
49
80
|
"loadingViewer": "Loading iXBRL Viewer",
|
|
50
|
-
"
|
|
81
|
+
"mandatoryFacts": "Only Mandatory Facts",
|
|
51
82
|
"namespaces": "Namespaces",
|
|
52
83
|
"narrowerAnchor": "Narrower anchors",
|
|
53
84
|
"negative": "Negative",
|
|
@@ -62,12 +93,19 @@
|
|
|
62
93
|
"references": "References",
|
|
63
94
|
"reset": "Reset",
|
|
64
95
|
"scales": "Scales",
|
|
96
|
+
"search": "Search",
|
|
97
|
+
"searchReport": "Search iXBRL Report",
|
|
98
|
+
"searchResults": "Search Results",
|
|
65
99
|
"searchTitle": "Search",
|
|
100
|
+
"settingsMenu": "Settings Menu",
|
|
101
|
+
"showAnalysisChart": "Show analysis chart",
|
|
66
102
|
"showTextOnly": "Show text only",
|
|
67
103
|
"summary": {
|
|
68
104
|
"fact": {
|
|
69
105
|
"header": "Fact Summary",
|
|
70
|
-
"
|
|
106
|
+
"hidden": "Hidden facts",
|
|
107
|
+
"mandatory": "Mandatory facts",
|
|
108
|
+
"total": "Total facts"
|
|
71
109
|
},
|
|
72
110
|
"file": {
|
|
73
111
|
"calculations": "Calculation Linkbases",
|
|
@@ -80,50 +118,62 @@
|
|
|
80
118
|
"references": "Reference Linkbases",
|
|
81
119
|
"schemas": "Schemas"
|
|
82
120
|
},
|
|
121
|
+
"reportCreation": "Report creation",
|
|
83
122
|
"tag": {
|
|
123
|
+
"colConcepts": "Concepts",
|
|
84
124
|
"colDimensions": "Dimensions",
|
|
85
125
|
"colMembers": "Members",
|
|
86
126
|
"colNamespace": "Namespace",
|
|
87
|
-
"colPrimaryItems": "Primary Items",
|
|
88
127
|
"colTotal": "Total",
|
|
89
128
|
"header": "Tag Summary",
|
|
90
129
|
"rowTotal": "Total"
|
|
91
130
|
}
|
|
92
131
|
},
|
|
93
132
|
"summation": "Summation",
|
|
133
|
+
"targetDocument": "Target Document",
|
|
94
134
|
"textOption": "Text",
|
|
135
|
+
"typedDimensions": "Typed Dimensions",
|
|
95
136
|
"units": "Units",
|
|
96
137
|
"validationCode": "Code",
|
|
97
138
|
"validationMessage": "Message",
|
|
98
139
|
"validationResults": "Validation results",
|
|
99
140
|
"validationSeverity": "Severity",
|
|
100
|
-
"
|
|
101
|
-
"
|
|
141
|
+
"visibility": "Visibility",
|
|
142
|
+
"visible": "Visible",
|
|
143
|
+
"widerAnchor": "Wider anchor",
|
|
144
|
+
"xbrlGlossaryOpensInNewTab": "XBRL Glossary (opens in new tab)"
|
|
102
145
|
},
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"5": "hundred thousands",
|
|
113
|
-
"6": "millions",
|
|
114
|
-
"7": "ten millions",
|
|
115
|
-
"8": "hundred millions",
|
|
116
|
-
"9": "billions"
|
|
146
|
+
"menu": {
|
|
147
|
+
"actions": "Actions",
|
|
148
|
+
"applicationLanguage": "Application Language",
|
|
149
|
+
"contactUs": "Contact Us",
|
|
150
|
+
"documentLanguage": "Document Language",
|
|
151
|
+
"help": "Help",
|
|
152
|
+
"options": "Options",
|
|
153
|
+
"survey": "Survey",
|
|
154
|
+
"userGuide": "User Guide"
|
|
117
155
|
},
|
|
118
156
|
"search": {
|
|
119
157
|
"concealedFact": "Concealed fact",
|
|
158
|
+
"dataTypeConflictWarning": "Warning: selection conflicts with Concept Type filter",
|
|
159
|
+
"default": "default",
|
|
160
|
+
"filter": "Filter",
|
|
120
161
|
"hiddenFact": "Hidden fact",
|
|
162
|
+
"matchingFactsSummary": "Showing {{nMatches}} of {{nTotal}} facts",
|
|
121
163
|
"noMatchFound": "No match found",
|
|
164
|
+
"reset": "Reset",
|
|
122
165
|
"selected": "selected",
|
|
123
166
|
"showMoreResults": "Show more results",
|
|
124
|
-
"
|
|
167
|
+
"toggleFilterControls": "Toggler filter controls",
|
|
168
|
+
"tryAgainDifferentKeywords": "Try again with different keywords",
|
|
169
|
+
"viewFact": "View fact"
|
|
125
170
|
},
|
|
126
171
|
"toolbar": {
|
|
172
|
+
"homePage": "Home",
|
|
173
|
+
"toggleDarkMode": "Toggle dark mode",
|
|
127
174
|
"xbrlElements": "XBRL Elements"
|
|
175
|
+
},
|
|
176
|
+
"viewer": {
|
|
177
|
+
"ixbrlDocumentView": "iXBRL Document View"
|
|
128
178
|
}
|
|
129
179
|
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"label": "Etiqueta estándar",
|
|
3
|
+
"documentation": "Etiqueta de documentación",
|
|
4
|
+
"terseLabel": "Etiqueta concisa",
|
|
5
|
+
"verboseLabel": "Etiqueta verbosa",
|
|
6
|
+
"positiveLabel": "Etiqueta positiva",
|
|
7
|
+
"positiveTerseLabel": "Etiqueta concisa positiva",
|
|
8
|
+
"positiveVerboseLabel": "Etiqueta verbosa positiva",
|
|
9
|
+
"negativeLabel": "Etiqueta negativa",
|
|
10
|
+
"negativeTerseLabel": "Etiqueta concisa negativa",
|
|
11
|
+
"negativeVerboseLabel": "Etiqueta verbosa negativa",
|
|
12
|
+
"zeroLabel": "Etiqueta cero",
|
|
13
|
+
"zeroTerseLabel": "Etiqueta Zero Terse",
|
|
14
|
+
"zeroVerboseLabel": "Etiqueta de verbosidad cero",
|
|
15
|
+
"totalLabel": "Etiqueta total",
|
|
16
|
+
"periodStartLabel": "Etiqueta de inicio del período",
|
|
17
|
+
"periodEndLabel": "Etiqueta de fin de período",
|
|
18
|
+
"definitionGuidance": "Orientación sobre la definición",
|
|
19
|
+
"disclosureGuidance": "Guía de divulgación",
|
|
20
|
+
"presentationGuidance": "Guía de presentación",
|
|
21
|
+
"measurementGuidance": "Guía de medición",
|
|
22
|
+
"commentaryGuidance": "Guía de comentarios",
|
|
23
|
+
"exampleGuidance": "Ejemplo de orientación"
|
|
24
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"-3": "mil\u00E9simos",
|
|
3
|
+
"-2": "cent\u00E9simos",
|
|
4
|
+
"-1": "d\u00E9cimas",
|
|
5
|
+
"0": "unidades",
|
|
6
|
+
"1": "d\u00E9cimos",
|
|
7
|
+
"2": "cientos",
|
|
8
|
+
"3": "miles",
|
|
9
|
+
"4": "diez miles",
|
|
10
|
+
"5": "cien miles",
|
|
11
|
+
"6": "millones",
|
|
12
|
+
"7": "diez millones",
|
|
13
|
+
"8": "cien millones",
|
|
14
|
+
"9": "billones"
|
|
15
|
+
}
|
|
16
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"anchoring": "Las relaciones de anclaje proporcionan vínculos entre los conceptos de extensión específicos de la empresa y los conceptos estándar definidos en la taxonomía base.",
|
|
3
|
+
"dimension": "Una dimensión es una característica calificativa que se utiliza para definir de forma única un punto de datos.",
|
|
4
|
+
"conceptsCount": "TEl número de conceptos únicos utilizados en este informe.",
|
|
5
|
+
"dimensionsCount": "El número de dimensiones únicas utilizadas en este informe.",
|
|
6
|
+
"fileSummary": "Una lista de los archivos que se encuentran en el archivo.",
|
|
7
|
+
"membersCount": "El número de miembros de dimensión únicos utilizados en este informe.",
|
|
8
|
+
"scale": "Para hechos numéricos, la cantidad por la cual se escala el valor presentado.",
|
|
9
|
+
"accuracy": "La precisión con la que se informa un hecho numérico.",
|
|
10
|
+
"concept": "Un concepto es un elemento que define el significado de un hecho.",
|
|
11
|
+
"period": "El período en el que se informa sobre este hecho. Puede ser un instante o una duración, según la naturaleza del concepto.",
|
|
12
|
+
"references": "Información sobre la definición autorizada de un concepto. Las referencias suelen hacer referencia a una norma contable.",
|
|
13
|
+
"calculations": "Relaciones de cálculo entre hechos numéricos en un informe. Las relaciones de cálculo se pueden utilizar para rastrear cómo se acumulan las cifras en un informe y también se pueden utilizar para verificar la coherencia de los números informados.",
|
|
14
|
+
"hiddenFacts": "La cantidad de datos ocultos en este informe. Los datos ocultos son aquellos que se informan como datos XBRL, pero que no se muestran en el informe presentado.",
|
|
15
|
+
"mandatoryFacts": "Número de hechos obligatorios en este informe. Los hechos obligatorios son hechos que la jurisdicción que presenta la solicitud debe informar.",
|
|
16
|
+
"namespace": "Los espacios de nombres se utilizan para dividir definiciones de conceptos, dimensiones y miembros. Si un informe utiliza conceptos, dimensiones o miembros específicos de la empresa, estos se definirán en un espacio de nombres independiente. Los espacios de nombres también se pueden utilizar para dividir taxonomías grandes."
|
|
17
|
+
}
|