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 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"unitFormatGBP": "\u00A3",
|
|
3
|
+
"unitFormatUSD": "UD\u0024",
|
|
4
|
+
"unitFormatEUR": "\u20AC",
|
|
5
|
+
"unitFormatMXN": "MXN\u0024",
|
|
6
|
+
"unitFormatUAH": "\u20B4",
|
|
7
|
+
"centsUSD": "cents",
|
|
8
|
+
"centsEUR": "cents",
|
|
9
|
+
"centsAUD": "cents",
|
|
10
|
+
"centsZAR": "cents",
|
|
11
|
+
"centsMXN": "cents",
|
|
12
|
+
"centsGBP": "ceiniogau"
|
|
13
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"label": "Label Safonol",
|
|
3
|
+
"documentation": "Label Dogfennaeth",
|
|
4
|
+
"terseLabel": "Label tense",
|
|
5
|
+
"verboseLabel": "Label Verbose",
|
|
6
|
+
"positiveLabel": "Label Cadarnhaol",
|
|
7
|
+
"positiveTerseLabel": "Label Terse Positif",
|
|
8
|
+
"positiveVerboseLabel": "Label Verbose positif",
|
|
9
|
+
"negativeLabel": "Label negyddol",
|
|
10
|
+
"negativeTerseLabel": "Label Terse negyddol",
|
|
11
|
+
"negativeVerboseLabel": "Label Verbose negyddol",
|
|
12
|
+
"zeroLabel": "Label sero",
|
|
13
|
+
"zeroTerseLabel": "Label Sero Terse",
|
|
14
|
+
"zeroVerboseLabel": "Label Verbose Sero",
|
|
15
|
+
"totalLabel": "Label Cyfanswm",
|
|
16
|
+
"periodStartLabel": "Label Dechrau Cyfnod",
|
|
17
|
+
"periodEndLabel": "Label Diwedd Cyfnod",
|
|
18
|
+
"definitionGuidance": "Arweiniad Diffiniad",
|
|
19
|
+
"disclosureGuidance": "Canllawiau Datgelu",
|
|
20
|
+
"presentationGuidance": "Arweiniad Cyflwyno",
|
|
21
|
+
"measurementGuidance": "Canllawiau Mesur",
|
|
22
|
+
"commentaryGuidance": "Arweiniad Sylwadau",
|
|
23
|
+
"exampleGuidance": "Arweiniad Enghreifftiol"
|
|
24
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"0": "rhai",
|
|
3
|
+
"1": "degau",
|
|
4
|
+
"2": "cannoedd",
|
|
5
|
+
"3": "miloedd",
|
|
6
|
+
"4": "deg mil",
|
|
7
|
+
"5": "can miloedd",
|
|
8
|
+
"6": "miliynau",
|
|
9
|
+
"7": "deg miliwn",
|
|
10
|
+
"8": "can miliynau",
|
|
11
|
+
"9": "biliynau",
|
|
12
|
+
"-3": "miloedd",
|
|
13
|
+
"-2": "canfedau",
|
|
14
|
+
"-1": "degfedau"
|
|
15
|
+
}
|
|
16
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"anchoring": "Mae perthnasoedd angori yn darparu cysylltiadau rhwng cysyniadau ymestyn cwmni-benodol a chysyniadau safonol a ddiffinnir yn y tacsonomeg sylfaenol.",
|
|
3
|
+
"dimension": "Mae dimensiwn yn nodwedd gymhwyso a ddefnyddir i ddiffinio pwynt data yn unigryw.",
|
|
4
|
+
"conceptsCount": "Nifer y cysyniadau unigryw a ddefnyddiwyd yn yr adroddiad hwn.",
|
|
5
|
+
"dimensionsCount": "Nifer y dimensiynau unigryw a ddefnyddir yn yr adroddiad hwn.",
|
|
6
|
+
"fileSummary": "Rhestr o'r ffeiliau sydd yn y ffeilio.",
|
|
7
|
+
"membersCount": "Nifer yr aelodau dimensiwn unigryw a ddefnyddiwyd yn yr adroddiad hwn.",
|
|
8
|
+
"scale": "Ar gyfer ffeithiau rhifol, y swm a ddefnyddir i raddio'r gwerth a gyflwynir.",
|
|
9
|
+
"accuracy": "Y cywirdeb yr adroddir ffaith rifol iddo.",
|
|
10
|
+
"concept": "Elfen sy'n diffinio ystyr ffaith yw cysyniad.",
|
|
11
|
+
"period": "Y cyfnod yr adroddir y ffaith hon yn ei erbyn. Gall hyn fod yn amrantiad neu'n hyd, yn dibynnu ar natur y cysyniad.",
|
|
12
|
+
"references": "Gwybodaeth am y diffiniad awdurdodol o gysyniad. Mae cyfeiriadau fel arfer yn cyfeirio at safon gyfrifyddu.",
|
|
13
|
+
"calculations": "Perthnasoedd cyfrifo rhwng ffeithiau rhifol mewn adroddiad. Gellir defnyddio cydberthnasau cyfrifo i olrhain sut mae ffigurau mewn adroddiad treigl, a gellir eu defnyddio hefyd i wirio cysondeb y niferoedd a adroddir.",
|
|
14
|
+
"hiddenFacts": "Nifer y ffeithiau cudd yn yr adroddiad hwn. Mae ffeithiau cudd yn ffeithiau a adroddir fel data XBRL, ond nad ydynt yn cael eu dangos yn yr adroddiad a gyflwynir.",
|
|
15
|
+
"mandatoryFacts": "Nifer y ffeithiau gorfodol yn yr adroddiad hwn. Mae ffeithiau gorfodol yn ffeithiau y mae'n ofynnol i'r awdurdodaeth ffeilio adrodd arnynt.",
|
|
16
|
+
"namespace": "Defnyddir bylchau enw i rannu cysyniad, dimensiwn a diffiniadau aelodau. Os bydd adroddiad yn defnyddio unrhyw gysyniadau, dimensiynau neu aelodau sy'n benodol i gwmni, caiff y rhain eu diffinio mewn gofod enw ar wahân. Gellir defnyddio bylchau enw hefyd i rannu tacsonomegau mawr."
|
|
17
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"calculation": {
|
|
3
|
+
"calculated-total": "Wedi'i gyfrifo",
|
|
4
|
+
"concept": "Cysyniad",
|
|
5
|
+
"consistent-duplicate-facts-present": "{{nfacts}} ffeithiau dyblyg cyson yn bresennol",
|
|
6
|
+
"does-not-bind": "Nid yw cyfrifo yn rhwymo",
|
|
7
|
+
"inconsistent-duplicate-facts-present": "{{nfacts}} ffeithiau dyblyg anghyson yn bresennol",
|
|
8
|
+
"maximum": "Uchafswm",
|
|
9
|
+
"minimum": "Isafswm",
|
|
10
|
+
"reported-total": "Adroddwyd",
|
|
11
|
+
"reported-value": "Gwerth a adroddwyd",
|
|
12
|
+
"useCalculations11": "Defnyddiwch Gyfrifiadau v1.1"
|
|
13
|
+
},
|
|
14
|
+
"chart": {
|
|
15
|
+
"comparisonChart": ""
|
|
16
|
+
},
|
|
17
|
+
"common": {
|
|
18
|
+
"accuracyInfinite": "Anfeidrol drachywiredd",
|
|
19
|
+
"none": "Dim",
|
|
20
|
+
"notApplicable": "n/a",
|
|
21
|
+
"unscaled": "Heb raddfa",
|
|
22
|
+
"unspecified": "Amhenodol"
|
|
23
|
+
},
|
|
24
|
+
"dialog": {
|
|
25
|
+
"close": ""
|
|
26
|
+
},
|
|
27
|
+
"factDetails": {
|
|
28
|
+
"accuracy": "Cywirdeb",
|
|
29
|
+
"balance": "",
|
|
30
|
+
"calculationIsConsistent": "Mae'r cyfrifiad yn gyson",
|
|
31
|
+
"calculationIsInconsistent": "Mae'r cyfrifiad yn anghyson",
|
|
32
|
+
"calculationUnchecked": "Nid yw'r cyfrifiad wedi'i wirio oherwydd presenoldeb ffeithiau dyblyg",
|
|
33
|
+
"calculationUncheckedIncorrectVersion": "Cyfrifiad 1.1 perthnasau heb eu gwirio yn y modd cyfrifo etifeddiaeth",
|
|
34
|
+
"change": "Newid",
|
|
35
|
+
"changeFromIn": "Oddiwrth {{from}} mewn ",
|
|
36
|
+
"changePercentageDecrease": "{{decrease}}gostyngiad % ar ",
|
|
37
|
+
"changePercentageIncrease": "{{increase}}cynnydd % ar ",
|
|
38
|
+
"concept": "Cysyniad",
|
|
39
|
+
"datatype": "Math",
|
|
40
|
+
"date": "Dyddiad",
|
|
41
|
+
"dimensions": "Dimensiynau",
|
|
42
|
+
"duplicatesCount": "{{current}} o {{total}}",
|
|
43
|
+
"entity": "Endid",
|
|
44
|
+
"factValue": "Gwerth Ffaith",
|
|
45
|
+
"nonNumericFact": "ffaith nad yw'n rhifol",
|
|
46
|
+
"noPriorFactInThisReport": "Dim ffaith flaenorol yn yr adroddiad hwn",
|
|
47
|
+
"noUnit": "<NOUNIT>",
|
|
48
|
+
"properties": "Priodweddau",
|
|
49
|
+
"scale": "Graddfa",
|
|
50
|
+
"viewCalculationDetails": "Gweld manylion y cyfrifiad"
|
|
51
|
+
},
|
|
52
|
+
"footnotes": {
|
|
53
|
+
"footnote": "Troednodyn"
|
|
54
|
+
},
|
|
55
|
+
"inspector": {
|
|
56
|
+
"anchoring": "Angori",
|
|
57
|
+
"associatedFacts": "Ffeithiau cysylltiedig",
|
|
58
|
+
"calculationDetails": "Manylion cyfrifo",
|
|
59
|
+
"calculations": "Cyfrifiadau",
|
|
60
|
+
"concealedFact": "Ffaith guddiedig",
|
|
61
|
+
"conceptType": "Math o Gysyniad",
|
|
62
|
+
"contributor": "Cyfranwr",
|
|
63
|
+
"datatypes": "Mathau data",
|
|
64
|
+
"dimensions": "Math Dimensiwn",
|
|
65
|
+
"documentOutline": "Amlinelliad o'r ddogfen",
|
|
66
|
+
"documentSummary": "Crynodeb o'r ddogfen",
|
|
67
|
+
"explicitDimension": "Dimensiynau Penodol",
|
|
68
|
+
"fact-groups": "Adrannau",
|
|
69
|
+
"factProperties": "Priodweddau Ffaith",
|
|
70
|
+
"factSearch": "Chwiliad Ffeithiau",
|
|
71
|
+
"factValue": "Gwerth Ffaith",
|
|
72
|
+
"footnoteProperties": "Priodweddau Troednodyn",
|
|
73
|
+
"footnotes": "Troednodiadau",
|
|
74
|
+
"hidden": "Gudd",
|
|
75
|
+
"hiddenFact": "Ffaith Gudd",
|
|
76
|
+
"highlight": "Uchafbwynt",
|
|
77
|
+
"initializing": "Cychwyn",
|
|
78
|
+
"ixbrlInspector": "",
|
|
79
|
+
"labels": "",
|
|
80
|
+
"loadingViewer": "Wrthi'n llwytho Gwyliwr iXBRL",
|
|
81
|
+
"mandatoryFacts": "Dim ond Ffeithiau Gorfodol",
|
|
82
|
+
"namespaces": "Gofodau Enw",
|
|
83
|
+
"narrowerAnchor": "Angorau culach",
|
|
84
|
+
"negative": "Negyddol",
|
|
85
|
+
"nextTag": "Tag nesaf",
|
|
86
|
+
"noFactSelected": "Dim Ffaith wedi'i Dewis",
|
|
87
|
+
"numericOption": "Rhifol",
|
|
88
|
+
"outlineUnavailable": "Amlinelliad Ddim ar gael",
|
|
89
|
+
"period": "Cyfnod",
|
|
90
|
+
"positive": "Cadarnhaol",
|
|
91
|
+
"previousTag": "Tag blaenorol",
|
|
92
|
+
"printDocument": "Argraffu Dogfen",
|
|
93
|
+
"references": "Cyfeiriadau",
|
|
94
|
+
"reset": "Ailosod",
|
|
95
|
+
"scales": "Graddfeydd",
|
|
96
|
+
"search": "Chwiliwch",
|
|
97
|
+
"searchReport": "",
|
|
98
|
+
"searchResults": "",
|
|
99
|
+
"searchTitle": "Chwiliwch",
|
|
100
|
+
"settingsMenu": "",
|
|
101
|
+
"showAnalysisChart": "",
|
|
102
|
+
"showTextOnly": "Dangos testun yn unig",
|
|
103
|
+
"summary": {
|
|
104
|
+
"fact": {
|
|
105
|
+
"header": "Crynodeb o Ffeithiau",
|
|
106
|
+
"hidden": "Ffeithiau cudd",
|
|
107
|
+
"mandatory": "Ffeithiau Gorfodol",
|
|
108
|
+
"total": "Cyfanswm y Ffeithiau"
|
|
109
|
+
},
|
|
110
|
+
"file": {
|
|
111
|
+
"calculations": "Cronfeydd Cyswllt Cyfrifo",
|
|
112
|
+
"definitions": "Diffiniad Basau Cyswllt",
|
|
113
|
+
"header": "Crynodeb Ffeil",
|
|
114
|
+
"inline": "Dogfennau Mewnol",
|
|
115
|
+
"labels": "Label Linkbases",
|
|
116
|
+
"other": "Cronfeydd Cyswllt Eraill",
|
|
117
|
+
"presentation": "Basau Cyswllt Cyflwyniad",
|
|
118
|
+
"references": "Basau Cyswllt Cyfeiriad",
|
|
119
|
+
"schemas": "Sgemâu"
|
|
120
|
+
},
|
|
121
|
+
"reportCreation": "Creu Adroddiad",
|
|
122
|
+
"tag": {
|
|
123
|
+
"colConcepts": "Cysyniadau",
|
|
124
|
+
"colDimensions": "Dimensiynau",
|
|
125
|
+
"colMembers": "Aelodau",
|
|
126
|
+
"colNamespace": "Gofod Enw",
|
|
127
|
+
"colTotal": "Cyfanswm",
|
|
128
|
+
"header": "Crynodeb Tag",
|
|
129
|
+
"rowTotal": "Cyfanswm"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"summation": "Crynhoad",
|
|
133
|
+
"targetDocument": "Dogfen Darged",
|
|
134
|
+
"textOption": "Testun",
|
|
135
|
+
"typedDimensions": "Dimensiynau wedi'u Teipio",
|
|
136
|
+
"units": "Unedau",
|
|
137
|
+
"validationCode": "Cod",
|
|
138
|
+
"validationMessage": "Neges",
|
|
139
|
+
"validationResults": "Canlyniadau dilysu",
|
|
140
|
+
"validationSeverity": "Difrifoldeb",
|
|
141
|
+
"visibility": "Gwelededd",
|
|
142
|
+
"visible": "Gweladwy",
|
|
143
|
+
"widerAnchor": "Angor ehangach",
|
|
144
|
+
"xbrlGlossaryOpensInNewTab": "Geirfa XBRL (yn agor mewn tab newydd)"
|
|
145
|
+
},
|
|
146
|
+
"menu": {
|
|
147
|
+
"actions": "Gweithredoedd",
|
|
148
|
+
"applicationLanguage": "Iaith Cais",
|
|
149
|
+
"contactUs": "Cysylltwch â Ni",
|
|
150
|
+
"documentLanguage": "Iaith Dogfen",
|
|
151
|
+
"help": "Cymorth",
|
|
152
|
+
"options": "Opsiynau",
|
|
153
|
+
"survey": "Arolwg",
|
|
154
|
+
"userGuide": "Canllaw Defnyddiwr"
|
|
155
|
+
},
|
|
156
|
+
"search": {
|
|
157
|
+
"concealedFact": "Ffaith guddiedig",
|
|
158
|
+
"dataTypeConflictWarning": "",
|
|
159
|
+
"default": "rhagosodedig",
|
|
160
|
+
"filter": "Hidlo",
|
|
161
|
+
"hiddenFact": "Ffaith gudd",
|
|
162
|
+
"matchingFactsSummary": "",
|
|
163
|
+
"noMatchFound": "Heb ganfod cyfatebiaeth",
|
|
164
|
+
"reset": "",
|
|
165
|
+
"selected": "dethol",
|
|
166
|
+
"showMoreResults": "Dangos mwy o ganlyniadau",
|
|
167
|
+
"toggleFilterControls": "",
|
|
168
|
+
"tryAgainDifferentKeywords": "Ceisiwch eto gyda geiriau allweddol gwahanol",
|
|
169
|
+
"viewFact": ""
|
|
170
|
+
},
|
|
171
|
+
"toolbar": {
|
|
172
|
+
"homePage": "Hafan",
|
|
173
|
+
"toggleDarkMode": "Toggle modd tywyll",
|
|
174
|
+
"xbrlElements": "Elfennau XBRL"
|
|
175
|
+
},
|
|
176
|
+
"viewer": {
|
|
177
|
+
"ixbrlDocumentView": ""
|
|
178
|
+
}
|
|
179
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"unitFormatGBP": "\u00A3",
|
|
3
|
+
"unitFormatUSD": "US \u0024",
|
|
4
|
+
"unitFormatEUR": "\u20AC",
|
|
5
|
+
"unitFormatMXN": "MXN \u0024",
|
|
6
|
+
"unitFormatUAH": "\u20B4",
|
|
7
|
+
"centsUSD": "cents",
|
|
8
|
+
"centsEUR": "cents",
|
|
9
|
+
"centsAUD": "cents",
|
|
10
|
+
"centsZAR": "cents",
|
|
11
|
+
"centsMXN": "cents",
|
|
12
|
+
"centsGBP": "pence"
|
|
13
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"label": "Standardetiket",
|
|
3
|
+
"documentation": "Dokumentationsetiket",
|
|
4
|
+
"terseLabel": "Kortfattet etiket",
|
|
5
|
+
"verboseLabel": "Detaljeret etiket",
|
|
6
|
+
"positiveLabel": "Positiv etiket",
|
|
7
|
+
"positiveTerseLabel": "Kortfattet positiv etiket",
|
|
8
|
+
"positiveVerboseLabel": "Detaljeret positiv etiket",
|
|
9
|
+
"negativeLabel": "Negativ etiket",
|
|
10
|
+
"negativeTerseLabel": "Kortfattet negativ etiket",
|
|
11
|
+
"negativeVerboseLabel": "Detaljeret negativ etiket",
|
|
12
|
+
"zeroLabel": "Nul etiket",
|
|
13
|
+
"zeroTerseLabel": "Kortfattet nul etiket",
|
|
14
|
+
"zeroVerboseLabel": "Detaljeret nul etiket",
|
|
15
|
+
"totalLabel": "Total etiket",
|
|
16
|
+
"periodStartLabel": "Periode start etiket",
|
|
17
|
+
"periodEndLabel": "Periode slut etiket",
|
|
18
|
+
"definitionGuidance": "Definition vejledning",
|
|
19
|
+
"disclosureGuidance": "Oplysningsvejledning",
|
|
20
|
+
"presentationGuidance": "Præsentationsvejledning",
|
|
21
|
+
"measurementGuidance": "Målevejledning",
|
|
22
|
+
"commentaryGuidance": "Kommentar vejledning",
|
|
23
|
+
"exampleGuidance": "Eksempel vejledning"
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"-3": "tusindedel",
|
|
3
|
+
"-2": "hundrededel",
|
|
4
|
+
"-1": "tiendedel",
|
|
5
|
+
"0": "enere",
|
|
6
|
+
"1": "tiere",
|
|
7
|
+
"2": "hundrede",
|
|
8
|
+
"3": "tusinder",
|
|
9
|
+
"4": "ti tusinder",
|
|
10
|
+
"5": "hundrede tusinder",
|
|
11
|
+
"6": "millioner",
|
|
12
|
+
"7": "ti millioner",
|
|
13
|
+
"8": "hundrede millioner",
|
|
14
|
+
"9": "milliarder"
|
|
15
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"anchoring": "Forankringsforhold giver forbindelser mellem virksomhedsspecifikke udvidelseskoncepter og standardkoncepter defineret i basissystematikken.",
|
|
3
|
+
"dimension": "En dimension er en kvalificerende egenskab, der bruges til entydigt at definere et datapunkt.",
|
|
4
|
+
"conceptsCount": "Antallet af unikke koncepter, der anvendes i denne rapport.",
|
|
5
|
+
"dimensionsCount": "Antallet af unikke dimensioner, der anvendes i denne rapport.",
|
|
6
|
+
"fileSummary": "En liste over filer, der indgår i indberetningen.",
|
|
7
|
+
"membersCount": "Antallet af unikke dimensionmedlemmer, der anvendes i denne rapport.",
|
|
8
|
+
"scale": "For numeriske fakta er dette størrelsen, som den viste værdi er skaleret med.",
|
|
9
|
+
"accuracy": "Nøjagtigheden, hvormed et numerisk faktum rapporteres.",
|
|
10
|
+
"concept": "Et koncept er et element, der definerer betydningen af et faktum.",
|
|
11
|
+
"period": "Den periode, som dette faktum rapporteres for. Dette kan enten være et øjebliksbillede eller en periode, afhængigt af konceptets art.",
|
|
12
|
+
"references": "Information om den autoritative definition af et koncept. Referencer henviser typisk til en regnskabsstandard.",
|
|
13
|
+
"calculations": "Beregningsforhold mellem numeriske fakta i en rapport. Beregningsforhold kan bruges til at spore, hvordan tal i en rapport summeres, og kan også bruges til at kontrollere konsistensen af de rapporterede tal.",
|
|
14
|
+
"hiddenFacts": "Antallet af skjulte fakta i denne rapport. Skjulte fakta er fakta, der rapporteres som XBRL-data, men som ikke vises i den præsenterede rapport.",
|
|
15
|
+
"mandatoryFacts": "Antallet af obligatoriske fakta i denne rapport. Obligatoriske fakta er fakta, som det pågældende indberetningsområde kræver at blive rapporteret.",
|
|
16
|
+
"namespace": "Navnerum bruges til at opdele definitioner af koncepter, dimensioner og medlemmer. Hvis en rapport bruger virksomhedsspecifikke koncepter, dimensioner eller medlemmer, vil disse blive defineret i et separat navnerum. Navnerum kan også bruges til at opdele store taksonomier."
|
|
17
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"calculation": {
|
|
3
|
+
"calculated-total": "Beregnet",
|
|
4
|
+
"concept": "Begreb",
|
|
5
|
+
"consistent-duplicate-facts-present": "{{nfacts}} konsistente dublet-fakta til stede",
|
|
6
|
+
"does-not-bind": "Beregning binder ikke",
|
|
7
|
+
"inconsistent-duplicate-facts-present": "{{nfacts}} inkonsistente dublet-fakta til stede",
|
|
8
|
+
"maximum": "Maksimum",
|
|
9
|
+
"minimum": "Minimum",
|
|
10
|
+
"reported-total": "Rapporteret",
|
|
11
|
+
"reported-value": "Rapporteret værdi",
|
|
12
|
+
"useCalculations11": "Brug Beregninger v1.1"
|
|
13
|
+
},
|
|
14
|
+
"chart": {
|
|
15
|
+
"comparisonChart": "Sammenligningsdiagram"
|
|
16
|
+
},
|
|
17
|
+
"common": {
|
|
18
|
+
"accuracyInfinite": "Uendelig præcision",
|
|
19
|
+
"none": "Ingen",
|
|
20
|
+
"notApplicable": "ikke relevant",
|
|
21
|
+
"unscaled": "Uskaleret",
|
|
22
|
+
"unspecified": "Uspecificeret"
|
|
23
|
+
},
|
|
24
|
+
"dialog": {
|
|
25
|
+
"close": "luk"
|
|
26
|
+
},
|
|
27
|
+
"factDetails": {
|
|
28
|
+
"accuracy": "Præcision",
|
|
29
|
+
"balance": "Balance",
|
|
30
|
+
"calculationIsConsistent": "Beregning er konsistent",
|
|
31
|
+
"calculationIsInconsistent": "Beregning er inkonsistent",
|
|
32
|
+
"calculationUnchecked": "Beregning ikke kontrolleret pga. dublet-fakta",
|
|
33
|
+
"calculationUncheckedIncorrectVersion": "Beregning 1.1 relationer ikke kontrolleret i legacy-beregningstilstand",
|
|
34
|
+
"change": "Ændring",
|
|
35
|
+
"changeFromIn": "Fra {{from}} i ",
|
|
36
|
+
"changePercentageDecrease": "{{decrease}}% fald på ",
|
|
37
|
+
"changePercentageIncrease": "{{increase}}% stigning på ",
|
|
38
|
+
"concept": "Begreb",
|
|
39
|
+
"datatype": "Type",
|
|
40
|
+
"date": "Dato",
|
|
41
|
+
"dimensions": "Dimensioner",
|
|
42
|
+
"duplicatesCount": "{{current}} af {{total}}",
|
|
43
|
+
"entity": "Enhed",
|
|
44
|
+
"factValue": "Faktaværdi",
|
|
45
|
+
"nonNumericFact": "ikke-numerisk faktum",
|
|
46
|
+
"noPriorFactInThisReport": "Intet tidligere faktum i denne rapport",
|
|
47
|
+
"noUnit": "<INGENENHED>",
|
|
48
|
+
"properties": "Egenskaber",
|
|
49
|
+
"scale": "Skala",
|
|
50
|
+
"viewCalculationDetails": "Se beregningsdetaljer"
|
|
51
|
+
},
|
|
52
|
+
"footnotes": {
|
|
53
|
+
"footnote": "Fodnote"
|
|
54
|
+
},
|
|
55
|
+
"inspector": {
|
|
56
|
+
"anchoring": "Forankring",
|
|
57
|
+
"associatedFacts": "Associerede fakta",
|
|
58
|
+
"calculationDetails": "Beregning detaljer",
|
|
59
|
+
"calculations": "Beregninger",
|
|
60
|
+
"concealedFact": "Skjult faktum",
|
|
61
|
+
"conceptType": "Begrebstype",
|
|
62
|
+
"contributor": "Bidragyder",
|
|
63
|
+
"datatypes": "Typer",
|
|
64
|
+
"dimensions": "Dimensionstype",
|
|
65
|
+
"documentOutline": "Dokumentoversigt",
|
|
66
|
+
"documentSummary": "Dokumentsammenfatning",
|
|
67
|
+
"explicitDimension": "Eksplícitte dimensioner",
|
|
68
|
+
"fact-groups": "Sektioner",
|
|
69
|
+
"factProperties": "Faktaegenskaber",
|
|
70
|
+
"factSearch": "Faktasøgning",
|
|
71
|
+
"factValue": "Faktaværdi",
|
|
72
|
+
"footnoteProperties": "Fodnoteegenskaber",
|
|
73
|
+
"footnotes": "Fodnoter",
|
|
74
|
+
"hidden": "Skjult",
|
|
75
|
+
"hiddenFact": "Skjult faktum",
|
|
76
|
+
"highlight": "Fremhæv",
|
|
77
|
+
"initializing": "Initialiserer",
|
|
78
|
+
"ixbrlInspector": "iXBRL Inspektør",
|
|
79
|
+
"labels": "",
|
|
80
|
+
"loadingViewer": "Indlæser iXBRL Viewer",
|
|
81
|
+
"mandatoryFacts": "Kun obligatoriske fakta",
|
|
82
|
+
"namespaces": "Navnerum",
|
|
83
|
+
"narrowerAnchor": "Smalere forankringer",
|
|
84
|
+
"negative": "Negativ",
|
|
85
|
+
"nextTag": "Næste tag",
|
|
86
|
+
"noFactSelected": "Intet faktum valgt",
|
|
87
|
+
"numericOption": "Numerisk",
|
|
88
|
+
"outlineUnavailable": "Oversigt ikke tilgængelig",
|
|
89
|
+
"period": "Periode",
|
|
90
|
+
"positive": "Positiv",
|
|
91
|
+
"previousTag": "Forrige tag",
|
|
92
|
+
"printDocument": "Udskriv dokument",
|
|
93
|
+
"references": "Referencer",
|
|
94
|
+
"reset": "Nulstil",
|
|
95
|
+
"scales": "Skalaer",
|
|
96
|
+
"search": "Søg",
|
|
97
|
+
"searchReport": "Søg iXBRL rapport",
|
|
98
|
+
"searchResults": "Søgeresultater",
|
|
99
|
+
"searchTitle": "Søg",
|
|
100
|
+
"settingsMenu": "Indstillingsmenu",
|
|
101
|
+
"showAnalysisChart": "Vis analyse diagram",
|
|
102
|
+
"showTextOnly": "Vis kun tekst",
|
|
103
|
+
"summary": {
|
|
104
|
+
"fact": {
|
|
105
|
+
"header": "Faktaoversigt",
|
|
106
|
+
"hidden": "Skjulte fakta",
|
|
107
|
+
"mandatory": "Obligatoriske fakta",
|
|
108
|
+
"total": "Totale fakta"
|
|
109
|
+
},
|
|
110
|
+
"file": {
|
|
111
|
+
"calculations": "Beregning linkbaser",
|
|
112
|
+
"definitions": "Definitions linkbaser",
|
|
113
|
+
"header": "Filoversigt",
|
|
114
|
+
"inline": "Inline dokumenter",
|
|
115
|
+
"labels": "Label linkbaser",
|
|
116
|
+
"other": "Andre linkbaser",
|
|
117
|
+
"presentation": "Præsentations linkbaser",
|
|
118
|
+
"references": "Reference linkbaser",
|
|
119
|
+
"schemas": "Skemaer"
|
|
120
|
+
},
|
|
121
|
+
"reportCreation": "Rapportoprettelse",
|
|
122
|
+
"tag": {
|
|
123
|
+
"colConcepts": "Begreber",
|
|
124
|
+
"colDimensions": "Dimensioner",
|
|
125
|
+
"colMembers": "Medlemmer",
|
|
126
|
+
"colNamespace": "Navnerum",
|
|
127
|
+
"colTotal": "Total",
|
|
128
|
+
"header": "Tag oversigt",
|
|
129
|
+
"rowTotal": "Total"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"summation": "Opsummering",
|
|
133
|
+
"targetDocument": "Måldokument",
|
|
134
|
+
"textOption": "Tekst",
|
|
135
|
+
"typedDimensions": "Typedimensioner",
|
|
136
|
+
"units": "Enheder",
|
|
137
|
+
"validationCode": "Kode",
|
|
138
|
+
"validationMessage": "Besked",
|
|
139
|
+
"validationResults": "Valideringsresultater",
|
|
140
|
+
"validationSeverity": "Alvorlighed",
|
|
141
|
+
"visibility": "Synlighed",
|
|
142
|
+
"visible": "Synlig",
|
|
143
|
+
"widerAnchor": "Bredere forankring",
|
|
144
|
+
"xbrlGlossaryOpensInNewTab": "XBRL-ordbog (åbner i ny fane)"
|
|
145
|
+
},
|
|
146
|
+
"menu": {
|
|
147
|
+
"actions": "Handlinger",
|
|
148
|
+
"applicationLanguage": "Applikationssprog",
|
|
149
|
+
"contactUs": "Kontakt os",
|
|
150
|
+
"documentLanguage": "Dokumentsprog",
|
|
151
|
+
"help": "Hjælp",
|
|
152
|
+
"options": "Indstillinger",
|
|
153
|
+
"survey": "Undersøgelse",
|
|
154
|
+
"userGuide": "Brugervejledning"
|
|
155
|
+
},
|
|
156
|
+
"search": {
|
|
157
|
+
"concealedFact": "Skjult faktum",
|
|
158
|
+
"dataTypeConflictWarning": "Advarsel: valg konflikter med filter for begrebstype",
|
|
159
|
+
"default": "standard",
|
|
160
|
+
"filter": "Filter",
|
|
161
|
+
"hiddenFact": "Skjult faktum",
|
|
162
|
+
"matchingFactsSummary": "Viser {{nMatches}} af {{nTotal}} fakta",
|
|
163
|
+
"noMatchFound": "Ingen match fundet",
|
|
164
|
+
"reset": "Nulstil",
|
|
165
|
+
"selected": "valgt",
|
|
166
|
+
"showMoreResults": "Vis flere resultater",
|
|
167
|
+
"toggleFilterControls": "Skift filterkontroller",
|
|
168
|
+
"tryAgainDifferentKeywords": "Prøv igen med andre søgeord",
|
|
169
|
+
"viewFact": "Se faktum"
|
|
170
|
+
},
|
|
171
|
+
"toolbar": {
|
|
172
|
+
"homePage": "Hjem",
|
|
173
|
+
"toggleDarkMode": "Skift mørk tilstand",
|
|
174
|
+
"xbrlElements": "XBRL-elementer"
|
|
175
|
+
},
|
|
176
|
+
"viewer": {
|
|
177
|
+
"ixbrlDocumentView": "iXBRL dokumentvisning"
|
|
178
|
+
}
|
|
179
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"unitFormatGBP": "\u00A3",
|
|
3
|
+
"unitFormatUSD": "US \u0024",
|
|
4
|
+
"unitFormatEUR": "\u20AC",
|
|
5
|
+
"unitFormatMXN": "MXN \u0024",
|
|
6
|
+
"unitFormatUAH": "\u20B4",
|
|
7
|
+
"centsUSD": "cents",
|
|
8
|
+
"centsEUR": "cents",
|
|
9
|
+
"centsAUD": "cents",
|
|
10
|
+
"centsZAR": "cents",
|
|
11
|
+
"centsMXN": "cents",
|
|
12
|
+
"centsGBP": "pence"
|
|
13
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"label": "Standardbezeichnung",
|
|
3
|
+
"documentation": "Dokumentationsbezeichnung",
|
|
4
|
+
"terseLabel": "Kurze Bezeichnung",
|
|
5
|
+
"verboseLabel": "Ausführliche Bezeichnung",
|
|
6
|
+
"positiveLabel": "Positive Bezeichnung",
|
|
7
|
+
"positiveTerseLabel": "Kurze positive Bezeichnung",
|
|
8
|
+
"positiveVerboseLabel": "Ausführliche positive Bezeichnung",
|
|
9
|
+
"negativeLabel": "Negative Bezeichnung",
|
|
10
|
+
"negativeTerseLabel": "Kurze negative Bezeichnung",
|
|
11
|
+
"negativeVerboseLabel": "Ausführliche negative Bezeichnung",
|
|
12
|
+
"zeroLabel": "Nullbezeichnung",
|
|
13
|
+
"zeroTerseLabel": "Kurze Nullbezeichnung",
|
|
14
|
+
"zeroVerboseLabel": "Ausführliche Nullbezeichnung",
|
|
15
|
+
"totalLabel": "Gesamtbezeichnung",
|
|
16
|
+
"periodStartLabel": "Bezeichnung für Periodenbeginn",
|
|
17
|
+
"periodEndLabel": "Bezeichnung für Periodenende",
|
|
18
|
+
"definitionGuidance": "Definitionsempfehlung",
|
|
19
|
+
"disclosureGuidance": "Offenlegungsempfehlung",
|
|
20
|
+
"presentationGuidance": "Präsentationsempfehlung",
|
|
21
|
+
"measurementGuidance": "Messempfehlung",
|
|
22
|
+
"commentaryGuidance": "Kommentarempfehlung",
|
|
23
|
+
"exampleGuidance": "Beispiel für Empfehlung"
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"-3": "Tausendstel",
|
|
3
|
+
"-2": "Hundertstel",
|
|
4
|
+
"-1": "Zehntel",
|
|
5
|
+
"0": "Einer",
|
|
6
|
+
"1": "Zehner",
|
|
7
|
+
"2": "Hunderter",
|
|
8
|
+
"3": "Tausender",
|
|
9
|
+
"4": "Zehntausender",
|
|
10
|
+
"5": "Hunderttausender",
|
|
11
|
+
"6": "Millionen",
|
|
12
|
+
"7": "Zehn Millionen",
|
|
13
|
+
"8": "Hundert Millionen",
|
|
14
|
+
"9": "Milliarden"
|
|
15
|
+
}
|