ixbrl-viewer 1.4.21__py3-none-any.whl → 1.4.49__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.
Potentially problematic release.
This version of ixbrl-viewer might be problematic. Click here for more details.
- iXBRLViewerPlugin/__init__.py +77 -49
- iXBRLViewerPlugin/_version.py +2 -2
- iXBRLViewerPlugin/constants.py +86 -1
- iXBRLViewerPlugin/featureConfig.py +4 -1
- iXBRLViewerPlugin/iXBRLViewer.py +202 -131
- iXBRLViewerPlugin/plugin.py +7 -0
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js +1 -1
- iXBRLViewerPlugin/viewer/dist/ixbrlviewer.js.LICENSE.txt +9 -2
- iXBRLViewerPlugin/viewer/i18next-parser.config.js +1 -1
- iXBRLViewerPlugin/viewer/src/data/utr.json +1 -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 +1 -1
- iXBRLViewerPlugin/viewer/src/html/inspector.html +324 -211
- 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/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 +56 -24
- 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 +70 -37
- iXBRLViewerPlugin/viewer/src/icons/dark-mode.svg +4 -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 +3 -2
- iXBRLViewerPlugin/viewer/src/js/aspect.js +18 -10
- iXBRLViewerPlugin/viewer/src/js/aspect.test.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/balance.js +14 -0
- iXBRLViewerPlugin/viewer/src/js/calculation.js +45 -34
- iXBRLViewerPlugin/viewer/src/js/calculationInspector.js +4 -7
- iXBRLViewerPlugin/viewer/src/js/chart.js +23 -21
- iXBRLViewerPlugin/viewer/src/js/concept.js +27 -2
- iXBRLViewerPlugin/viewer/src/js/concept.test.js +23 -2
- 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/fact.js +40 -7
- iXBRLViewerPlugin/viewer/src/js/fact.test.js +3 -0
- iXBRLViewerPlugin/viewer/src/js/index.js +11 -3
- iXBRLViewerPlugin/viewer/src/js/inspector.js +560 -160
- iXBRLViewerPlugin/viewer/src/js/inspector.test.js +1 -2
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.js +129 -31
- iXBRLViewerPlugin/viewer/src/js/ixbrlviewer.test.js +133 -20
- iXBRLViewerPlugin/viewer/src/js/ixnode.js +1 -1
- iXBRLViewerPlugin/viewer/src/js/menu.js +25 -7
- iXBRLViewerPlugin/viewer/src/js/number-matcher.js +2 -2
- iXBRLViewerPlugin/viewer/src/js/outline.js +2 -4
- iXBRLViewerPlugin/viewer/src/js/period.js +0 -1
- iXBRLViewerPlugin/viewer/src/js/report.js +68 -13
- iXBRLViewerPlugin/viewer/src/js/report.test.js +77 -6
- iXBRLViewerPlugin/viewer/src/js/reportset.js +33 -3
- iXBRLViewerPlugin/viewer/src/js/reportset.test.js +32 -6
- iXBRLViewerPlugin/viewer/src/js/search.js +61 -35
- iXBRLViewerPlugin/viewer/src/js/search.test.js +8 -5
- iXBRLViewerPlugin/viewer/src/js/summary.js +22 -0
- iXBRLViewerPlugin/viewer/src/js/summary.test.js +50 -13
- iXBRLViewerPlugin/viewer/src/js/tableExport.js +3 -3
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.js +34 -0
- iXBRLViewerPlugin/viewer/src/js/taxonomynamer.test.js +32 -0
- iXBRLViewerPlugin/viewer/src/js/theme.js +49 -0
- iXBRLViewerPlugin/viewer/src/js/unit.js +73 -2
- iXBRLViewerPlugin/viewer/src/js/unit.test.js +14 -3
- iXBRLViewerPlugin/viewer/src/js/util.js +21 -18
- iXBRLViewerPlugin/viewer/src/js/util.test.js +1 -0
- iXBRLViewerPlugin/viewer/src/js/utr.js +27 -0
- iXBRLViewerPlugin/viewer/src/js/viewer.js +40 -29
- iXBRLViewerPlugin/viewer/src/js/viewerOptions.js +0 -2
- iXBRLViewerPlugin/viewer/src/less/accordian.less +8 -4
- iXBRLViewerPlugin/viewer/src/less/block-list.less +12 -6
- iXBRLViewerPlugin/viewer/src/less/calculation-inspector.less +2 -2
- iXBRLViewerPlugin/viewer/src/less/chart.less +8 -5
- iXBRLViewerPlugin/viewer/src/less/colours-dark-mode.less +40 -0
- iXBRLViewerPlugin/viewer/src/less/colours.less +28 -21
- iXBRLViewerPlugin/viewer/src/less/common.less +1 -1
- iXBRLViewerPlugin/viewer/src/less/components.less +3 -3
- iXBRLViewerPlugin/viewer/src/less/core.less +2 -0
- iXBRLViewerPlugin/viewer/src/less/dialog.less +13 -10
- iXBRLViewerPlugin/viewer/src/less/form-controls.less +33 -11
- iXBRLViewerPlugin/viewer/src/less/inspector.less +556 -300
- 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 +5 -5
- iXBRLViewerPlugin/viewer/src/less/text-mixins.less +2 -1
- iXBRLViewerPlugin/viewer/src/less/validation-report.less +1 -1
- iXBRLViewerPlugin/viewer/src/less/viewer.less +30 -18
- iXBRLViewerPlugin/viewer/webpack.common.js +19 -9
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/METADATA +41 -14
- ixbrl_viewer-1.4.49.dist-info/RECORD +197 -0
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/WHEEL +1 -1
- tests/puppeteer/framework/page_objects/doc_frame.js +3 -3
- tests/puppeteer/framework/page_objects/fact_details_panel.js +28 -0
- tests/puppeteer/puppeteer_test_run_via_intellij.jpg +0 -0
- tests/puppeteer/tests/fact_properties.test.js +10 -4
- tests/unit_tests/iXBRLViewerPlugin/test_iXBRLViewer.py +117 -51
- iXBRLViewerPlugin/viewer/src/js/interact.min.js +0 -6
- ixbrl_viewer-1.4.21.dist-info/RECORD +0 -166
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/LICENSE +0 -0
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/NOTICE +0 -0
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/entry_points.txt +0 -0
- {ixbrl_viewer-1.4.21.dist-info → ixbrl_viewer-1.4.49.dist-info}/top_level.txt +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
|
+
"documentLanguage": "Iaith Dogfen",
|
|
150
|
+
"help": "Cymorth",
|
|
151
|
+
"options": "Opsiynau",
|
|
152
|
+
"contactUs": "Cysylltwch â Ni",
|
|
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,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
|
+
}
|
|
@@ -3,13 +3,17 @@
|
|
|
3
3
|
"calculated-total": "Calculated",
|
|
4
4
|
"concept": "Concept",
|
|
5
5
|
"consistent-duplicate-facts-present": "{{nfacts}} consistent duplicate facts present",
|
|
6
|
+
"does-not-bind": "Calculation does not bind",
|
|
6
7
|
"inconsistent-duplicate-facts-present": "{{nfacts}} inconsistent duplicate facts present",
|
|
7
8
|
"maximum": "Maximum",
|
|
8
|
-
"
|
|
9
|
+
"minimum": "Minimum",
|
|
9
10
|
"reported-total": "Reported",
|
|
10
11
|
"reported-value": "Reported value",
|
|
11
12
|
"useCalculations11": "Use Calculations v1.1"
|
|
12
13
|
},
|
|
14
|
+
"chart": {
|
|
15
|
+
"comparisonChart": "Comparison chart"
|
|
16
|
+
},
|
|
13
17
|
"common": {
|
|
14
18
|
"accuracyInfinite": "Infinite precision",
|
|
15
19
|
"none": "None",
|
|
@@ -17,16 +21,22 @@
|
|
|
17
21
|
"unscaled": "Unscaled",
|
|
18
22
|
"unspecified": "Unspecified"
|
|
19
23
|
},
|
|
24
|
+
"dialog": {
|
|
25
|
+
"close": "close"
|
|
26
|
+
},
|
|
20
27
|
"factDetails": {
|
|
21
28
|
"accuracy": "Accuracy",
|
|
29
|
+
"balance": "Balance",
|
|
22
30
|
"calculationIsConsistent": "Calculation is consistent",
|
|
23
31
|
"calculationIsInconsistent": "Calculation is inconsistent",
|
|
24
32
|
"calculationUnchecked": "Calculation not checked due to presence of duplicate facts",
|
|
33
|
+
"calculationUncheckedIncorrectVersion": "Calculation 1.1 relationships not checked in legacy calculation mode",
|
|
25
34
|
"change": "Change",
|
|
26
35
|
"changeFromIn": "From {{from}} in ",
|
|
27
36
|
"changePercentageDecrease": "{{decrease}}% decrease on ",
|
|
28
37
|
"changePercentageIncrease": "{{increase}}% increase on ",
|
|
29
38
|
"concept": "Concept",
|
|
39
|
+
"datatype": "Type",
|
|
30
40
|
"date": "Date",
|
|
31
41
|
"dimensions": "Dimensions",
|
|
32
42
|
"duplicatesCount": "{{current}} of {{total}}",
|
|
@@ -45,26 +55,30 @@
|
|
|
45
55
|
"inspector": {
|
|
46
56
|
"anchoring": "Anchoring",
|
|
47
57
|
"associatedFacts": "Associated facts",
|
|
48
|
-
"calculationDetails": "",
|
|
58
|
+
"calculationDetails": "Calculation details",
|
|
49
59
|
"calculations": "Calculations",
|
|
50
60
|
"concealedFact": "Concealed fact",
|
|
51
61
|
"conceptType": "Concept Type",
|
|
52
62
|
"contributor": "Contributor",
|
|
63
|
+
"datatypes": "Types",
|
|
64
|
+
"dimensions": "Dimension Type",
|
|
53
65
|
"documentOutline": "Document outline",
|
|
54
66
|
"documentSummary": "Document summary",
|
|
67
|
+
"explicitDimension": "Explicit Dimensions",
|
|
55
68
|
"fact-groups": "Sections",
|
|
56
69
|
"factProperties": "Fact Properties",
|
|
57
70
|
"factSearch": "Fact Search",
|
|
58
71
|
"factValue": "Fact Value",
|
|
59
|
-
"filter": "Filter",
|
|
60
72
|
"footnoteProperties": "Footnote Properties",
|
|
61
73
|
"footnotes": "Footnotes",
|
|
74
|
+
"hidden": "Hidden",
|
|
62
75
|
"hiddenFact": "Hidden Fact",
|
|
63
|
-
"hiddenFacts": "Hidden Facts",
|
|
64
76
|
"highlight": "Highlight",
|
|
65
77
|
"initializing": "Initializing",
|
|
78
|
+
"ixbrlInspector": "iXBRL Inspector",
|
|
79
|
+
"labels": "",
|
|
66
80
|
"loadingViewer": "Loading iXBRL Viewer",
|
|
67
|
-
"
|
|
81
|
+
"mandatoryFacts": "Only Mandatory Facts",
|
|
68
82
|
"namespaces": "Namespaces",
|
|
69
83
|
"narrowerAnchor": "Narrower anchors",
|
|
70
84
|
"negative": "Negative",
|
|
@@ -79,12 +93,19 @@
|
|
|
79
93
|
"references": "References",
|
|
80
94
|
"reset": "Reset",
|
|
81
95
|
"scales": "Scales",
|
|
96
|
+
"search": "Search",
|
|
97
|
+
"searchReport": "Search iXBRL Report",
|
|
98
|
+
"searchResults": "Search Results",
|
|
82
99
|
"searchTitle": "Search",
|
|
100
|
+
"settingsMenu": "Settings Menu",
|
|
101
|
+
"showAnalysisChart": "Show analysis chart",
|
|
83
102
|
"showTextOnly": "Show text only",
|
|
84
103
|
"summary": {
|
|
85
104
|
"fact": {
|
|
86
105
|
"header": "Fact Summary",
|
|
87
|
-
"
|
|
106
|
+
"hidden": "Hidden facts",
|
|
107
|
+
"mandatory": "Mandatory facts",
|
|
108
|
+
"total": "Total facts"
|
|
88
109
|
},
|
|
89
110
|
"file": {
|
|
90
111
|
"calculations": "Calculation Linkbases",
|
|
@@ -97,51 +118,62 @@
|
|
|
97
118
|
"references": "Reference Linkbases",
|
|
98
119
|
"schemas": "Schemas"
|
|
99
120
|
},
|
|
121
|
+
"reportCreation": "Report creation",
|
|
100
122
|
"tag": {
|
|
123
|
+
"colConcepts": "Concepts",
|
|
101
124
|
"colDimensions": "Dimensions",
|
|
102
125
|
"colMembers": "Members",
|
|
103
126
|
"colNamespace": "Namespace",
|
|
104
|
-
"colPrimaryItems": "Primary Items",
|
|
105
127
|
"colTotal": "Total",
|
|
106
128
|
"header": "Tag Summary",
|
|
107
129
|
"rowTotal": "Total"
|
|
108
130
|
}
|
|
109
131
|
},
|
|
110
132
|
"summation": "Summation",
|
|
133
|
+
"targetDocument": "Target Document",
|
|
111
134
|
"textOption": "Text",
|
|
135
|
+
"typedDimensions": "Typed Dimensions",
|
|
112
136
|
"units": "Units",
|
|
113
137
|
"validationCode": "Code",
|
|
114
138
|
"validationMessage": "Message",
|
|
115
139
|
"validationResults": "Validation results",
|
|
116
140
|
"validationSeverity": "Severity",
|
|
117
|
-
"
|
|
118
|
-
"
|
|
141
|
+
"visibility": "Visibility",
|
|
142
|
+
"visible": "Visible",
|
|
143
|
+
"widerAnchor": "Wider anchor",
|
|
144
|
+
"xbrlGlossaryOpensInNewTab": "XBRL Glossary (opens in new tab)"
|
|
119
145
|
},
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"5": "hundred thousands",
|
|
130
|
-
"6": "millions",
|
|
131
|
-
"7": "ten millions",
|
|
132
|
-
"8": "hundred millions",
|
|
133
|
-
"9": "billions"
|
|
146
|
+
"menu": {
|
|
147
|
+
"actions": "Actions",
|
|
148
|
+
"applicationLanguage": "Application Language",
|
|
149
|
+
"documentLanguage": "Document Language",
|
|
150
|
+
"help": "Help",
|
|
151
|
+
"options": "Options",
|
|
152
|
+
"contactUs": "Contact Us",
|
|
153
|
+
"survey": "Survey",
|
|
154
|
+
"userGuide": "User Guide"
|
|
134
155
|
},
|
|
135
156
|
"search": {
|
|
136
157
|
"concealedFact": "Concealed fact",
|
|
158
|
+
"dataTypeConflictWarning": "Warning: selection conflicts with Concept Type filter",
|
|
137
159
|
"default": "default",
|
|
160
|
+
"filter": "Filter",
|
|
138
161
|
"hiddenFact": "Hidden fact",
|
|
162
|
+
"matchingFactsSummary": "Showing {{nMatches}} of {{nTotal}} facts",
|
|
139
163
|
"noMatchFound": "No match found",
|
|
164
|
+
"reset": "Reset",
|
|
140
165
|
"selected": "selected",
|
|
141
166
|
"showMoreResults": "Show more results",
|
|
142
|
-
"
|
|
167
|
+
"toggleFilterControls": "Toggler filter controls",
|
|
168
|
+
"tryAgainDifferentKeywords": "Try again with different keywords",
|
|
169
|
+
"viewFact": "View fact"
|
|
143
170
|
},
|
|
144
171
|
"toolbar": {
|
|
172
|
+
"homePage": "Home",
|
|
173
|
+
"toggleDarkMode": "Toggle dark mode",
|
|
145
174
|
"xbrlElements": "XBRL Elements"
|
|
175
|
+
},
|
|
176
|
+
"viewer": {
|
|
177
|
+
"ixbrlDocumentView": "iXBRL Document View"
|
|
146
178
|
}
|
|
147
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
|
+
}
|