-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcor.hxltm.json
1842 lines (1842 loc) · 91.3 KB
/
cor.hxltm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"__ontologia_cor_versionem__": "v0.8.6+EticaAI+voluntārium-commūne",
"fontem_archivum_extensionem": {
".tm.hxl.csv": "HXLTM",
".xliff.hxl.csv": "CSV-HXL-XLIFF",
".asa.hxltm.json": "HXLTM-ASA-JSON",
".asa.hxltm.yml": "HXLTM-ASA-YAML",
".hxl.csv": "HXLTM",
".csv": "HXLTM",
".json": "JSON-kv",
".tmx": "TMX",
".utx": "UTX",
".tab": "TSV-3",
".tsv": "TSV-3",
".tbx": "TBX-Basic",
".xlf": "XLIFF",
".xlf2": "XLIFF",
".xliff": "XLIFF"
},
"fontem_archivum_extensionem_regex": {
"[a-z]{2}.csv": "CSV-3"
},
"normam": {
"Ad-Hoc": {
"__meta": {
"archivum": {
"extensionem": null
},
"descriptionem": "_[eng-Latn]\nAd Hoc template\n[eng-Latn]_\n",
"normam": [
"<https://github.com/HXL-CPLP/Auxilium-Humanitarium-API/wiki/Index>"
],
"nomen": {
"eng-Latn": "Ad Hoc template"
},
"situs_interretialis": {
"referens_officinale": [
"<https://github.com/HXL-CPLP/Auxilium-Humanitarium-API/wiki/Index>"
]
}
},
"asa": {
"modus_operandi": []
},
"formatum": {
"initiale": false,
"corporeum": false,
"finale": false
}
},
"CSV-3": {
"__meta": {
"archivum": {
"extensionem": ".csv"
},
"descriptionem": "_[eng-Latn]\nThe hxltm \"CSV-3\" export format is a somewhat basic (but at worst case\naccpted by several tools) with the following column order:\n\n> \"source-language\",\"target-language\",comment\n> \"verbum\", \"كلمة\",\"Arabic translationem de latin verbum\"\n\nSome references of tools that allow conversions using this format:\n\n- Okapi Framework\n - <https://okapiframework.org/wiki/index.php/Table_Filter>\n- MateCat\n - <https://site.matecat.com/support/managing-language-resources/add-glossary/>\n[eng-Latn]_\n",
"normam": [
"<https://datatracker.ietf.org/doc/html/rfc4180>"
],
"nomen": {
"eng-Latn": "CSV 3 bilingual Source + Objective + Comment"
},
"situs_interretialis": {
"referens_officinale": [
"<https://datatracker.ietf.org/doc/html/rfc4180>"
],
"vicipaedia": [
"<https://en.wikipedia.org/wiki/Comma-separated_values>"
]
}
},
"asa": {
"modus_operandi": [
"bilingue"
]
},
"formatum": {
"initiale": "{{ globum.fontem_linguam.bcp47 | default: 'la' | quotum_rem }},{{ globum.objectivum_linguam.bcp47 | default: 'ar' | quotum_rem }},commentarium",
"corporeum": "{{ rem.de_fontem_linguam.rem | quotum_rem }},{{ rem.de_objectivum_linguam.rem | quotum_rem }},\"\"",
"finale": false
}
},
"CSV-HXL-XLIFF": {
"__meta": {
"archivum_extensionem": ".xliff.hxl.csv",
"normam": [
"<https://hdp.etica.ai/hxltm/archivum/>"
],
"nomen": {
"eng-Latn": "HXLated bilingual CSV (+ up to 5 source alt) for XLIFF"
},
"situs_interretialis": {
"referens_officinale": []
}
},
"exportandum_hxl_sortem": [
"#x_xliff +unit +id",
"#x_xliff +source",
"#x_xliff +target",
"#x_xliff +segment +state",
"#x_xliff +unit +note +note_category__sourcestatus",
"#x_xliff +unit +note +note_category__termtype",
"#x_xliff +group +group_0",
"#x_xliff +unit +note +note_category__altsource1",
"#x_xliff +unit +note +note_category__definitionalt1",
"#x_xliff +unit +note +note_category__contextalt1",
"#x_xliff +unit +note +note_category__altsource2",
"#x_xliff +unit +note +note_category__definitionalt2",
"#x_xliff +unit +note +note_category__contextalt2",
"#x_xliff +unit +note +note_category__altsource3",
"#x_xliff +unit +note +note_category__definitionalt3",
"#x_xliff +unit +note +note_category__contextalt3",
"#x_xliff +unit +note +note_category__altsource4",
"#x_xliff +unit +note +note_category__definitionalt4",
"#x_xliff +unit +note +note_category__contextalt4",
"#x_xliff +unit +note +note_category__altsource5",
"#x_xliff +unit +note +note_category__definitionalt5",
"#x_xliff +unit +note +note_category__contextalt5",
"#x_xliff +unit +note +note_category__wikidata",
"#x_xliff +unit +note +note_category__iate",
"#x_xliff +unit +note +note_category__unterm"
],
"asa": {
"modus_operandi": [
"bilingue"
]
}
},
"GSheets": {
"__meta": {
"archivum": {
"extensionem": null
},
"descriptionem": "_[eng-Latn]\nBoth URL GSheets and local/remote file of Microsoft Excel have built\nread-only access in support for reference cli implementation\nas container for data source without intermediate file transformation\nto CSV container of HXLTM. This means humans don't need to edit CSV\nfiles directly.\n\nThe support on `hxltmcli` to write directly to GSheets and\nMicrosoft Excel is unlikely to be implemented.\n[eng-Latn]_\n",
"normam": [
"<https://developers.google.com/sheets/api>"
],
"nomen": {
"eng-Latn": "Google Sheets, HXLTM container (read-only; native support as data source)"
},
"situs_interretialis": {
"referens_officinale": [
"<https://www.google.com/sheets/about/>"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
}
},
"HXL-Proxy": {
"__meta": {
"archivum": {
"extensionem": null
},
"descriptionem": "_[eng-Latn]\nHXL Proxy, a tool for cleaning, transforming, merging, and\nvalidating data tagged using the Humanitarian Exchange Language (HXL)\nstandard.\n\nIn the context of HXLTM, HXL-Proxy is recommended to use for:\n\n - HXLate (e.g. add HXL hashtags, like the ones required by HXLTM) to\n any supported data input by HXL-Proxy (which is a lot)\n - Do more advanced filter (like removing columns) or merging\n different datasets by HXLTM concept value with friendly user\n interface\n\nWhen use HXL cli tools (including hxltmcli) and when use HXL-Proxy?\n\n While hxl cli tools (see\n <https://github.com/HXLStandard/libhxl-python/wiki/Command-line-tools>\n and <https://pypi.org/project/libhxl/>) have almost all features\n of HXL-proxy (in special with use of JSON spec) in real world, under\n urgency, still faster to set up a private Docker instance than use\n teach everyone to use the cli tools.\n\n The HXLTM reference tooling will intentionally NOT implement features\n that would be possible do with HXL-Proxy. Some viable using HXL\n Standard cli tools (that would be too complex to explain) may\n be added either as hxltmcli / hxltmdexml CLI options or via\n `ontologia:normam.HXLTM-TMETA`.\n[eng-Latn]_\n",
"normam": [
"<https://github.com/HXLStandard/hxl-proxy/wiki>"
],
"nomen": {
"eng-Latn": "HXL-Proxy (read-only; native support as data source)"
},
"situs_interretialis": {
"referens_officinale": [
"<https://github.com/HXLStandard/hxl-proxy>",
"<https://proxy.hxlstandard.org/>",
"<https://hub.docker.com/r/unocha/hxl-proxy>"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
}
},
"HXLTM": {
"__meta": {
"archivum": {
"extensionem": [
".tm.hxl.csv",
".tm.hxl.xlsx",
".hxltm.xml"
]
},
"descriptionem": "_[eng-Latn]\n`ontologia:normam.HXLTM` is an abstraction to several data containers\nof HXLTM implementation able to store multilingual data without loss.\n\nSome general notes:\n\n - The most feature-complete are the HXLTM implementation using\n tabular storage (plain HXLTM in CSV, or Google Sheets, or Excel,\n or HXL-proxy, or...), which is able to preserve valid HXL HXLated\n columns, but unknown to documented HXLTM implementation.\n - The `ontologia:normam.XML`, while not tabular implementation,\n contains information that allow data be exportable with\n `hxltmcli --objectivum-XML` and importable with\n `hxltmdexml` with more features than would be possible with other\n data standards that could be close to what HXLTM is, TBX, TMX and\n the tabular UTX.\n - Valid HXLated HXL columns (but unknown HXLTM), even if the\n templating engine know the undocumented HXL tags, are not\n intended to be exported. The idea is the generic XML format still\n designed to only export what could be imported back using the\n same ontologia.\n - If you plan to do VERY long-term data storage consider save\n together with the data the ontologia that generated it.\n - A cor.hxltm.yml with 3000 lines exported to PDF (which could be\n printed if you data already is printed) takes around 48 pages\n (A4 format).\n - Is it possible to also change the tags from latin to your natural\n language. While still have better ways to save more compact\n export, if you plan to save a backup on some library on a\n physical book, then at least customize it.\n[eng-Latn]_\n",
"normam": [
"<https://github.com/HXL-CPLP/forum/issues/58>"
],
"nomen": {
"eng-Latn": "HXLTM: Terminologia Multilinguae (Datum ideam)"
},
"situs_interretialis": {
"referens_officinale": [
"<https://hdp.etica.ai/hxltm>"
]
}
}
},
"HXLTM-TMETA": {
"__meta": {
"archivum": {
"extensionem": [
".tmeta.json",
".tmeta.yml"
]
},
"descriptionem": "_[eng-Latn]\nTo be documented.\n[eng-Latn]_\n",
"normam": [
"<https://hdp.etica.ai/hxltm/archivum/#HXLTM-TMETA>"
],
"nomen": {
"eng-Latn": "HXLTM Terminologia Multilinguae Meta"
},
"situs_interretialis": {
"referens_officinale": [
"<https://hdp.etica.ai/hxltm>",
"<https://github.com/EticaAI/HXL-Data-Science-file-formats/labels/HXLTM>",
"<https://github.com/EticaAI/HXL-Data-Science-file-formats/issues/24>"
]
}
}
},
"HXLTM-ASA": {
"__meta": {
"archivum": {
"extensionem": [
".asa.hxltm.json",
".asa.hxltm.yml"
]
},
"normam": [
"<https://hdp.etica.ai/hxltm/archivum/#HXLTM-ASA>"
],
"descriptionem": "_[eng-Latn]\nThe HXLTM-ASA is an not strictly documented Abstract Syntax Tree\nof an data conversion operation.\n\nThis format, different from the HXLTM permanent storage, is not\nmeant to be used by end users. And, in fact, either JSON (or other\nformats, like YAML) are more a tool for users debugging the initial\nreference implementation hxltmcli OR developers using JSON\nas more advanced input than the end user permanent storage.\n\nWarning: The HXLTM-ASA is not meant to be an stricly documented format\neven if HXLTM eventually get used by large public. If necessary,\nsome special format could be created, but this would require feedback\nfrom community or some work already done by implementers.\n[eng-Latn]_\n\nTrivia:\n - abstractum, <https://en.wiktionary.org/wiki/abstractus#Latin>\n - syntaxim, <https://en.wiktionary.org/wiki/syntaxis#Latin>\n - arborem, <https://en.wiktionary.org/wiki/arbor#Latin>\n - conceptum de Abstractum Syntaxim Arborem\n - <https://www.wikidata.org/wiki/Q127380>\n",
"nomen": {
"eng-Latn": "HXLTM Abstractum Syntaxim Arborem"
},
"situs_interretialis": {
"referens_officinale": [
"<https://hdp.etica.ai/hxltm>",
"<https://github.com/EticaAI/HXL-Data-Science-file-formats/labels/HXLTM>",
"<https://github.com/EticaAI/HXL-Data-Science-file-formats/issues/22>"
]
}
}
},
"JSON-kv": {
"__meta": {
"archivum": {
"extensionem": ".json"
},
"descriptionem": "_[eng-Latn]\nThis export/importer needs to be created. One level is trivial, but 2\nor more nested levels would be simpler for end user just use\n**HXLTM Ad Hoc Fōrmulam (HXLTM templated export)** to have full\ncontrol.\n[eng-Latn]_\n",
"normam": [
"<https://angular.io/guide/i18n#change-the-source-language-file-location>",
"<https://www.i18next.com/misc/json-format>",
"<https://lokalise.com/blog/how-to-internationalize-react-application-using-i18next/>"
],
"nomen": {
"eng-Latn": "JSON key: val; id/source -> target (draft)"
},
"situs_interretialis": {
"referens_officinale": []
}
},
"exemplum": [
"<https://github.com/i18next/react-i18next/blob/master/example/react/public/locales/de/translation.json>"
],
"asa": {
"modus_operandi": [
"bilingue"
]
}
},
"TSV-3": {
"__meta": {
"archivum": {
"extensionem": ".tab"
},
"descriptionem": "_[eng-Latn]\nThe hxltm \"TSV-3\" is que version of the \"CSV-3\" with tabs.\n\nIt will exportl tools) with the following column order:\n\n> source-language\ttarget-language\tcomment\n> verbum\tكلمة\tArabic translationem de latin verbum\n\nThis format is less common than CSV-3, but may be useful when tab\nis never used inside the fields.\n\n[eng-Latn]_\n",
"normam": [
"<https://datatracker.ietf.org/doc/html/rfc4180>",
"<https://www.iana.org/assignments/media-types/text/tab-separated-values>"
],
"nomen": {
"eng-Latn": "TSV-3 bilingual Source + Objective + Comment"
},
"situs_interretialis": {
"vicipaedia": [
"<https://en.wikipedia.org/wiki/Tab-separated_values>"
]
}
},
"asa": {
"modus_operandi": [
"bilingue"
]
},
"formatum": {
"initiale": "{{ globum.fontem_linguam.bcp47 | default: 'la' }}\t{{ globum.objectivum_linguam.bcp47 | default: 'ar' }}\tcommentarium",
"corporeum": "{{ rem.de_fontem_linguam.rem | quotum_rem: '\t' }}\t{{ rem.de_objectivum_linguam.rem | quotum_rem: '\t' }}\t",
"finale": false
}
},
"TBX-Basim": {
"__meta": {
"archivum": {
"extensionem": ".tbx"
},
"descriptionem": "_[eng-Latn]\nSee the links\n[eng-Latn]_\n- <http://www.terminorgs.net/Terminology-Starter-Guide.html>\n- <https://www.gala-global.org/sites/default/files/migrated-pages/docs/tbx_oscar_0.pdf>\n- <http://www.ttt.org/oscarStandards/tbx/tbx-basic.html>\n",
"exemplum": [
"<http://www.ttt.org/oscarStandards/tbx/TBXBasic.zip>"
],
"normam": [
"<http://www.terminorgs.net/downloads/TBX_Basic_Version_3.1.pdf>"
],
"nomen": {
"eng-Latn": "TermBase eXchange (TBX) Basic 2.1"
},
"situs_interretialis": {
"referens_officinale": [
"<http://www.terminorgs.net/TBX-Basic.html>",
"<http://www.ttt.org/oscarStandards/tbx/TBXBasic.zip>",
"<http://www.ttt.org/oscarStandards/tbx/tbx-basic.html>"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "martif"
},
"glossarium_titulum": {
"signum": "title",
"trivium": [
"martifHeader",
"fileDesc"
]
},
"conceptum_codicem": {
"signum": "termEntry",
"de_attributum": "id",
"trivium": [
"text",
"body"
]
},
"linguam_codicem": {
"signum": "langSet",
"de_attributum": "lang",
"trivium": []
},
"terminum_habendum_accuratum": true,
"terminum_habendum_multum": true,
"terminum_habendum_fontem": false,
"terminum_habendum_objectivum": false,
"terminum_accuratum": {
"ad": "XML-nodum-textum",
"de_signum": "descrip",
"de_attributum": {
"type": "reliabilityCode"
},
"viam_trivium": []
},
"terminum_valorem": {
"signum": "term",
"trivium": [
"tig"
]
}
},
"formatum": {
"initiale": "<?xml version='1.0'?>\n<!DOCTYPE martif SYSTEM \"TBXBasiccoreStructV02.dtd\">\n<martif type=\"TBX-Basic\"\n xml:lang=\"{{ globum.fontem_linguam.iso6391a2 | default: globum.fontem_linguam.iso6391a2 | default: 'la' }}\">\n <martifHeader>\n <fileDesc>\n <titleStmt>\n <title>TBX-Basic Sample File</title>\n <note>\n Lorem ipsum dolor semet\n </note>\n </titleStmt>\n <sourceDesc>\n <p>Lorem ipsum dolor semet</p>\n </sourceDesc>\n </fileDesc>\n </martifHeader>\n <text>\n <body>\n",
"corporeum": " <termEntry id=\"{{ conceptum.codicem | default: rem.de_nomen_breve.conceptum_codicem | default: 'errorem' | replace: '*', '' | replace: '+', '' | replace: '/', '' }}\">\n {% for item in rem.de_linguam %}\n {% if item[1].rem != '' -%}\n <langSet xml:lang=\"{{ item[1].bcp47 }}\">\n <tig>\n <term>\n {{ item[1].rem }}\n </term>\n </tig>\n </langSet>\n {%- endif -%}\n {%- endfor %}\n </termEntry>\n",
"finale": " </body>\n </text>\n</martif>\n"
}
},
"TBX-2008": {
"archivum": {
"extensionem": ".tbx"
},
"normam": [
"<https://www.gala-global.org/sites/default/files/migrated-pages/docs/tbx_oscar_0.pdf>"
],
"situs_interretialis": {
"referens_officinale": [
"<https://www.gala-global.org/knowledge-center/industry-development/standards/lisa-oscar-standards>"
],
"_temporarium": [
"<https://www.termbases.eu/>",
"<http://www.tbxinfo.net/>",
"<https://byutrg.github.io/TBX-Implementor/>",
"<https://github.com/byutrg/baseterm>",
"<https://github.com/LTAC-Global/TBX-Basic_ImplementationGuide>"
]
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
}
},
"TBX-2019": {
"__meta": {
"archivum": {
"extensionem": ".tbx"
},
"descriptionem": "- <https://www.tbxinfo.net/about/>\n- <https://www.iso.org/standard/62510.html>\n\n## TBX-IATE\nTrivia: <https://iate.europa.eu/fields-explained>\n\n### `hxltmdexml` --agendum-linguam\n- bul-Latn@bg\n - Bulgarian: bg; <https://iso639-3.sil.org/code/bul>\n- ces-Latn@cs\n - Czech: cs; <https://iso639-3.sil.org/code/ces>\n- dan-Latn@da\n - Danish: da; <https://iso639-3.sil.org/code/dan>\n- dut-Latn@nl\n - Dutch: nl; <https://iso639-3.sil.org/code/dut>\n- ell-Latn@el\n - Greek: el; <https://iso639-3.sil.org/code/ell>\n- eng-Latn@en\n - English: en; <https://iso639-3.sil.org/code/eng>\n- est-Latn@et\n - Estonian: et; <https://iso639-3.sil.org/code/est>\n- fin-Latn@fi\n - Finnish: fi; <https://iso639-3.sil.org/code/fin>\n- fra-Latn@fr\n - French: fr; <https://iso639-3.sil.org/code/fra>\n- ger-Latn@de\n - German: de; <https://iso639-3.sil.org/code/ger>\n- gle-Latn@ga\n - Irish: ga; <https://iso639-3.sil.org/code/gle>\n- hun-Latn@hu\n - Hungarian: hu; <https://iso639-3.sil.org/code/hun>\n- ita-Latn@it\n - Italian: it; <https://iso639-3.sil.org/code/ita>\n- lav-Latn@lv\n - Latvian: lv; <https://iso639-3.sil.org/code/lav>\n- lit-Latn@lt\n - Lithuanian: lt; <https://iso639-3.sil.org/code/lit>\n- mlt-Latn@mt\n - Maltese: mt; <https://iso639-3.sil.org/code/mlt>\n- pol-Latn@pl\n - Polish: pl; <https://iso639-3.sil.org/code/pol>\n- por-Latn@pt\n - Portuguese: pt; <https://iso639-3.sil.org/code/por>\n- ron-Latn@ro\n - Romanian: ro; <https://iso639-3.sil.org/code/ron>\n- scr-Latn@hr\n - Croatian: hr; <https://iso639-3.sil.org/code/scr>\n- slk-Latn@sk\n - Slovak: sk; <https://iso639-3.sil.org/code/slk>\n- slv-Latn@sl\n - Slovene: sl; <https://iso639-3.sil.org/code/slv>\n- spa-Latn@es\n - Spanish: es; <https://iso639-3.sil.org/code/spa>\n- swe-Latn@sv\n - Swedish: sv; <https://iso639-3.sil.org/code/swe>\n",
"normam": [
"proprietary format",
"¯\\_(ツ)_/¯"
],
"nomen": {
"eng-Latn": "TermBase eXchange (TBX) ISO 30042:2019 proprietary format"
},
"situs_interretialis": {
"referens_officinale": [
"proprietary format",
"¯\\_(ツ)_/¯"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "tbx"
},
"glossarium_titulum": {
"signum": "title",
"trivium": [
"tbxHeader",
"fileDesc"
]
},
"conceptum_codicem": {
"signum": "conceptEntry",
"de_attributum": "id",
"trivium": [
"text",
"body"
]
},
"linguam_codicem": {
"signum": "langSec",
"de_attributum": "lang",
"trivium": [
"termSec"
]
},
"terminum_habendum_accuratum": true,
"terminum_habendum_multum": true,
"terminum_habendum_fontem": false,
"terminum_habendum_objectivum": false,
"terminum_habendum_typum": true,
"terminum_accuratum": {
"ad": "XML-nodum-textum",
"signum": "descrip",
"de_attributum": {
"type": "reliabilityCode"
},
"trivium": [
"termSec"
]
},
"terminum_fontem": false,
"terminum_objectivum": false,
"terminum_valorem": {
"signum": "term",
"trivium": [
"tig"
]
},
"terminum_typum": {
"ad": "XML-nodum-textum",
"signum": "termNote",
"de_attributum": {
"type": "termType"
},
"in_praefixum": "TBX_",
"in_suffixum": "",
"trivium": []
}
},
"formatum": {
"initiale": false,
"corporeum": false,
"finale": false
}
},
"TMX": {
"__meta": {
"archivum": {
"extensionem": ".tmx"
},
"normam": [
"https://www.gala-global.org/tmx-14b",
"https://www.gala-global.org/sites/default/files/migrated-pages/docs/tmx14%20%281%29.dtd"
],
"nomen": {
"eng-Latn": "Translation Memory eXchange format (TMX)"
},
"situs_interretialis": {
"referens_officinale": [
"https://www.gala-global.org/knowledge-center/industry-development/standards/lisa-oscar-standards"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "tmx"
},
"glossarium_titulum": false,
"conceptum_codicem": {
"signum": "tu",
"de_attributum": "tuid",
"trivium": [
"body"
]
},
"linguam_codicem": {
"signum": "tuv",
"de_attributum": "lang",
"trivium": []
},
"terminum_habendum_multum": true,
"terminum_habendum_fontem": false,
"terminum_habendum_objectivum": false,
"terminum_valorem": {
"signum": "seg",
"trivium": []
}
},
"formatum": {
"initiale": "<?xml version='1.0' encoding='utf-8'?>\n<!DOCTYPE tmx SYSTEM \"tmx14.dtd\">\n<tmx version=\"1.4\">\n <header\n creationtool=\"hxltmcli.py\"\n creationtoolversion=\"{{ globum.instrumentum_versionem }}\"\n segtype=\"sentence\"\n o-tmf=\"UTF-8\"\n adminlang=\"{{ globum.instrumentum_versionem }}\"\n srclang=\"{{ globum.fontem_linguam.iso6391a2 | default: globum.fontem_linguam.iso6391a2 | default: 'la' }}\"\n datatype=\"PlainText\"\n />\n <body>\n",
"corporeum": " <tu tuid=\"{{ conceptum.codicem | default: rem.de_nomen_breve.conceptum_codicem | default: 'errorem' }}\">\n {%- if conceptum.conceptum_codicem_wikidata %}\n <prop type=\"wikidata\">{{ conceptum.conceptum_codicem_wikidata }}</prop>\n {% endif -%}\n {% for item in rem.de_linguam %}\n {% if item[1].rem != '' -%}\n <tuv xml:lang=\"{{ item[1].bcp47 }}\">\n <seg>{{ item[1].rem }}</seg>\n </tuv>\n {%- endif -%}\n {%- endfor %}\n </tu>\n",
"finale": " </body>\n</tmx>\n"
}
},
"UTX": {
"__meta": {
"archivum": {
"extensionem": ".utx"
},
"situs_interretialis": {
"referens_officinale": [
"<http://www.aamt.info/english/utx/>"
],
"vicipaedia": [
"<https://en.wikipedia.org/wiki/Universal_Terminology_eXchange>"
]
},
"normam": [
"<https://aamt.info/wp-content/uploads/2019/06/utx1.20-specification-e.pdf>",
"<https://aamt.info/wp-content/uploads/2019/06/utx1.20-specification-e.docx>"
],
"nomen": {
"eng-Latn": "Universal Terminology eXchange (UTX) (working draft)"
},
"exemplum": [
"<https://aamt.info/english/download/#UTX_Glossaries> - <https://docs.google.com/spreadsheets/d/13gBCYAd3tbty10W2W6GX9rA-3oT2LnI2u0UG1dpIEkI/pubhtml?widget=true&headers=false> - <https://docs.google.com/spreadsheets/d/1YONjd_pb7iXJvGlYBeFtZCTCUrDxRfbvKf-OLbCw3LE/pubhtml?widget=true&headers=false>",
"<https://aamt.info/wp-content/uploads/2019/06/yakushite-soccer-ej-utx1.20.utx>"
]
},
"asa": {
"modus_operandi": [
"multiplum_linguam",
"bilingue"
]
},
"formatum": {
"initiale": "#UTX 1.20; directionality: {{ glossarium.translationem_directionem | default: 'multi' }};",
"corporeum": "{%- if tabulam.lineam_indicem contains 1 -%}\n #{%- for item in rem.de_linguam -%}\n term:{{ item[1].bcp47 | quotum_rem }},\n {%- endfor %}\n{% endif -%}\n{%- for item in rem.de_linguam -%}\n {% if item[1].rem != '' -%}\n {{- item[1].rem | quotum_rem -}},\n {%- endif -%}\n{%- endfor -%}",
"finale": false
}
},
"XML": {
"__meta": {
"archivum": {
"extensionem": ".hxltm.xml"
},
"descriptionem": "_[eng-Latn]\nThe .hxltm.xml named 'XML Glōssārium' is an example of multilingual\nglossary exported to XML format that can be imported back.\n\nWith help of the reference cli tool, hxltmdexml, the\nontologia:normam.XML.de_xml explains how to convert back from the\nXML file to an HXLTM CSV working file to be able to work with reference\ncli tool hxltmcli.\n[eng-Latn]_\n",
"normam": [
"<https://hdp.etica.ai/hxltm/archivum/#XML>",
"<https://terminator.readthedocs.io/en/latest/_images/TBX_termEntry_structure.png>"
],
"nomen": {
"eng-Latn": "XML Glōssārium (generic multilingual XML)"
},
"situs_interretialis": {
"referens_officinale": [
"<https://hdp.etica.ai/hxltm/archivum/#XML>"
]
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "glossarium"
},
"glossarium_titulum": false,
"conceptum_codicem": {
"signum": "conceptum",
"de_attributum": "_",
"trivium": [
"datum"
]
},
"linguam_codicem": {
"signum": "linguam",
"de_attributum": "_",
"trivium": []
},
"linguam_linguam": {
"ad": "XML-nodum-attributum:_",
"de_signum": "linguam",
"trivium": []
},
"terminum_habendum_accuratum": true,
"terminum_habendum_type": true,
"terminum_habendum_multum": true,
"terminum_habendum_fontem": false,
"terminum_habendum_objectivum": false,
"terminum_accuratum": {
"ad": "XML-nodum-textum",
"de_signum": "accuratum",
"trivium": []
},
"terminum_valorem": {
"signum": "de-textum",
"trivium": [
"terminum"
]
}
},
"formatum": {
"__": {
"___": "Latium",
"glossarium": "glossarium",
"datum": "datum",
"caput": "caput",
"conceptum": "conceptum",
"definitionem": "definitionem",
"contextum": "contextum",
"titulum": "titulum",
"linguam": "linguam",
"librarium": "librarium",
"partem-orationis": "partem-orationis",
"terminum": "terminum",
"fontem": "fontem",
"objectivum": "objectivum",
"rem": "rem"
},
"initiale": "<glossarium _=\"Latium\" __=\"hxltmcli.py\" ___=\"{{ globum.instrumentum_versionem }}\">\n <caput>\n <titulum>{{ globum.glossarium_titulum }}</titulum>\n </caput>\n <datum>\n <!-- _[eng-Latn]@TODO Use librarium as XLIFF file / Excel worksheets. The \"_\" is (an non-Latin) script neutral default ID [eng-Latn]_ -->\n <librarium _=\"_\">",
"corporeum": " <conceptum _=\"{{ conceptum.codicem | default: rem.de_nomen_breve.conceptum_codicem }}\">\n {%- for item in rem.de_linguam %}\n {% if item[1].rem != '' -%}\n <linguam _=\"{{ item[1].linguam }}\">\n <definitionem></definitionem>\n <terminum>\n {% if item[1].accuratum -%}\n <accuratum>{{ item[1].accuratum }}</accuratum>\n {%- endif %}\n <rem>{{ item[1].rem }}</rem>\n </terminum>\n <!-- <terminum-fontem></terminum-fontem> -->\n <!-- <terminum-objectivum></terminum-objectivum> -->\n </linguam>\n {%- endif -%}\n {%- endfor %}\n </conceptum>\n",
"finale": " </librarium>\n </datum>\n</glossarium>\n"
}
},
"XLIFF": {
"__meta": {
"archivum": {
"extensionem": ".xlf"
},
"situs_interretialis": {
"referens_officinale": [
"<https://www.oasis-open.org/committees/xliff/>"
],
"vicipaedia": [
"<https://en.wikipedia.org/wiki/XLIFF>"
]
},
"exemplum": [
"<https://github.com/oasis-tcs/xliff-xliff-22>",
"<https://github.com/oasis-tcs/xliff-xliff-22/blob/master/xliff-21/test-suite/core/valid/allExtensions.xlf>",
"<https://github.com/oasis-tcs/xliff-xliff-22/blob/master/xliff-21/test-suite/core/valid/everything-core.xlf>"
],
"normam": [
"<https://docs.oasis-open.org/xliff/xliff-core/v2.1/xliff-core-v2.1.html>",
"<https://docs.oasis-open.org/xliff/xliff-core/v2.1/os/schemas/catalog.xml>"
],
"nomen": {
"eng-Latn": "XML Localization Interchange File Format (XLIFF) v2.1"
}
},
"asa": {
"modus_operandi": [
"bilingue"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "xliff"
},
"glossarium_titulum": false,
"conceptum_codicem": {
"signum": "unit",
"de_attributum": "id",
"trivium": [
"file"
]
},
"linguam_codicem": false,
"linguam_fontem_codicem": {
"signum": "source",
"de_attributum": "lang",
"trivium": []
},
"linguam_objectivum_codicem": {
"signum": "target",
"de_attributum": "lang",
"trivium": []
},
"terminum_accuratum": false,
"terminum_multum": false,
"terminum_habendum_fontem": true,
"terminum_habendum_objectivum": true,
"terminum_fontem_valorem": {
"signum": "source",
"trivium": []
},
"terminum_objectivum_valorem": {
"signum": "target",
"trivium": []
}
},
"formatum": {
"initiale": "<?xml version=\"1.0\"?>\n<xliff version=\"2.0\"\n xmlns=\"urn:oasis:names:tc:xliff:document:2.0\"\n xmlns:fs=\"urn:oasis:names:tc:xliff:fs:2.0\"\n xmlns:val=\"urn:oasis:names:tc:xliff:validation:2.0\"\n srcLang=\"{{ globum.fontem_linguam.bcp47 | default: 'la' }}\"\n trgLang=\"{{ globum.objectivum_linguam.bcp47 | default: 'ar' }}\">\n <file id=\"f1\">\n",
"corporeum": " {% if rem.de_fontem_linguam -%}\n <unit id=\"{{ conceptum.codicem | default: rem.de_nomen_breve.conceptum_codicem | default: 'errorem' | replace: '*', '' | replace: '+', '' | replace: '/', '' }}\">\n {% if rem.de_auxilium_linguam or rem.de_nomen_breve.referens_situs_interretialis.size > 0 -%}\n <notes>\n {%- for item in rem.de_auxilium_linguam -%}\n <note appliesTo=\"source\" priority=\"3\"\n category=\"de_auxilium_linguam\">\n _[{{- item.linguam -}}]\n {{- item.rem -}}\n [{{- item.linguam -}}]_\n </note>\n {%- endfor %}\n {% for item in rem.de_nomen_breve.referens_situs_interretialis -%}\n <note appliesTo=\"source\" priority=\"1\"\n category=\"referens_situs_interretialis\">\n {{ item }}\n </note>\n {% endfor -%}\n </notes>\n {% else -%}\n <!--\n non rem.de_auxilium_linguam aut rem.de_nomen_breve.referens_situs_interretialis\n -->\n {% endif -%}\n <segment state=\"{{ rem.de_objectivum_linguam.codicem_XLIFF | default: 'initial' }}\">\n <source>{{ rem.de_fontem_linguam.rem }}</source>\n {%- if rem.de_objectivum_linguam and rem.de_objectivum_linguam.rem != '' %}\n <target>{{ rem.de_objectivum_linguam.rem }}</target>\n {%- else %}\n <!-- non rem.de_objectivum_linguam -->\n {%- endif %}\n </segment>\n </unit>\n {%- else -%}\n <!-- non rem.de_fontem_linguam -->\n {%- endif %}\n",
"finale": " </file>\n</xliff>\n"
}
},
"XLIFF-obsoletum": {
"__meta": {
"archivum": {
"extensionem": ".xlf"
},
"situs_interretialis": {
"referens_officinale": [
"<https://www.oasis-open.org/committees/xliff/>"
],
"vicipaedia": [
"<https://en.wikipedia.org/wiki/XLIFF>"
]
},
"normam": [
"<https://docs.oasis-open.org/xliff/xliff-core/xliff-core.html>",
"<https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd>",
"<http://docs.oasis-open.org/xliff/v1.2/cs02/xliff-core-1.2-transitional.xsd>"
],
"nomen": {
"eng-Latn": "XML Localization Interchange File Format (XLIFF) v1.2"
}
},
"asa": {
"modus_operandi": [
"bilingue"
]
},
"de_xml": {
"glossarium_radicem": {
"signum": "xliff"
},
"glossarium_titulum": false,
"conceptum_codicem": {
"signum": "trans-unit",
"de_attributum": "id",
"trivium": [
"file"
]
},
"linguam_codicem": false,
"linguam_fontem_codicem": {
"signum": "source",
"de_attributum": "lang",
"trivium": []
},
"linguam_objectivum_codicem": {
"signum": "target",
"de_attributum": "lang",
"trivium": []
},
"terminum_habendum_accuratum": false,
"terminum_habendum_multum": false,
"terminum_habendum_fontem": true,
"terminum_habendum_objectivum": true,
"terminum_fontem_valorem": {
"signum": "source",
"trivium": []
},
"terminum_objectivum_valorem": {
"signum": "target",
"trivium": []
}
},
"formatum": {
"initiale": "<?xml version=\"1.0\"?>\n<xliff version=\"1.2\"\n xmlns=\"urn:oasis:names:tc:xliff:document:1.2\">\n <file\n source-language=\"{{ globum.fontem_linguam.bcp47 | default: 'la' }}\"\n target-language=\"{{ globum.objectivum_linguam.bcp47 | default: 'ar' }}\"\n datatype=\"plaintext\"\n original=\"exemplum.ext\">\n <body>\n",
"corporeum": " {% if rem.de_fontem_linguam and rem.de_fontem_linguam.rem != '' -%}\n {%- comment -%}\n _[eng-Latn]\n Since we're targeting XLIFF 2.1 and this is XLIFF 1.2, we will hardcode\n Some variables directly on this Liquid template instead of waste time\n doing on the Python code.\n\n If this template seems ugly, is uglier who, as 2021, still have shitty\n support for XLIFF 2.X.\n\n state: http://docs.oasis-open.org/xliff/v1.2/os/xliff-core.html#state\n state-qualifier: http://docs.oasis-open.org/xliff/v1.2/os/xliff-core.html#state-qualifier\n [eng-Latn]_\n {%- endcomment -%}\n\n {% capture rem_fontem_linguam_attr -%}\n xml:lang=\"{{ rem.de_fontem_linguam.bcp47 }}\"\n {%- endcapture -%}\n\n {% if rem.de_objectivum_linguam.rem and if rem.de_objectivum_linguam.rem != '' %}\n\n {% capture XLIFF_obsoletum_state -%}\n {{ rem.de_objectivum_linguam.codicem_XLIFF | default: 'new' }}\n {%- endcapture -%}\n\n {% capture rem_objectivum_linguam_attr -%}\n xml:lang=\"{{ rem.de_objectivum_linguam.bcp47 }}\"\n {%- endcapture -%}\n\n {%- if XLIFF_obsoletum_state == 'initial' -%}\n {%- assign XLIFF_obsoletum_state = 'new' -%}\n {%- assign XLIFF_obsoletum_approved = 'no' -%}\n {%- assign XLIFF_obsoletum_statequalifier_attr = '' -%}\n {%- assign XLIFF_obsoletum_approved_attr = '' -%}\n {%- endif -%}\n {%- if XLIFF_obsoletum_state == 'final' -%}\n {%- assign XLIFF_obsoletum_state = 'final' -%}\n {%- assign XLIFF_obsoletum_approved = 'yes' -%}\n {%- assign XLIFF_obsoletum_translatesource_attr = ' translate=\"no\"' -%}\n {%- assign XLIFF_obsoletum_statequalifier_attr = ' state-qualifier=\"id-match\"' -%}\n {%- assign XLIFF_obsoletum_approved_attr = ' approved=\"yes\"' -%}\n {%- endif -%}\n {%- endif -%}\n\n <trans-unit id=\"{{- conceptum.codicem | default: rem.de_nomen_breve.conceptum_codicem | default: 'errorem' | replace: '*', '' | replace: '+', '' | replace: '/', '' -}}\"\n {{- XLIFF_obsoletum_translatesource_attr -}}\n {{- XLIFF_obsoletum_approved_attr -}}>\n <source {{ rem_fontem_linguam_attr }}>\n {{- rem.de_fontem_linguam.rem -}}\n </source>\n {%- if rem.de_objectivum_linguam.rem != '' %}\n <target {{ rem_objectivum_linguam_attr }} state=\"{{ XLIFF_obsoletum_state }}\"{{ XLIFF_obsoletum_statequalifier_attr }}>\n {{- rem.de_objectivum_linguam.rem -}}\n </target>\n {%- else -%}\n <!-- non rem.de_objectivum_linguam.rem -->\n {%- endif %}\n {% if rem.de_auxilium_linguam %}\n {%- for item in rem.de_auxilium_linguam -%}\n {%- if item.rem -%}\n <note annotates=\"source\" priority=\"2\">\n _[{{- item.linguam -}}]{{- item.rem -}}[{{- item.linguam -}}]_\n </note>\n {%- endif -%}\n {%- endfor %}\n {%- else -%}\n <!--\n non rem.de_auxilium_linguam\n -->\n {%- endif %}\n {% if rem.de_nomen_breve.referens_situs_interretialis.size > 0 -%}\n {% for item in rem.de_nomen_breve.referens_situs_interretialis -%}\n <note annotates=\"source\" priority=\"1\"\n from=\"referens_situs_interretialis\">\n {{ item }}\n </note>\n {%- endfor %}\n {%- else -%}\n <!--\n non rem.de_nomen_breve.referens_situs_interretialis\n -->\n {%- endif %}\n </trans-unit>\n {%- else -%}\n <!-- non rem.de_fontem_linguam -->\n {%- endif %}\n",
"finale": " </body>\n </file>\n</xliff>\n"
}
},
"XLSX": {
"__meta": {
"archivum": {
"extensionem": ".xlsx"
},
"descriptionem": "_[eng-Latn]\nBoth URL GSheets and local/remote file of Microsoft Excel have built\nread-only access in support for reference cli implementation\nas container for data source without intermediate file transformation\nto CSV container of HXLTM. This means humans don't need to edit CSV\nfiles directly.\n\nThe support on `hxltmcli` to write directly to GSheets and\nMicrosoft Excel is unlikely to be implemented.\n[eng-Latn]_\n",
"nomen": {
"eng-Latn": "Microsoft Excel, HXLTM container (read-only; native support as data source)"
}
},
"asa": {
"modus_operandi": [
"multiplum_linguam"
]
}
},
"YAML": {
"__meta": {
"archivum": {
"extensionem": ".yml"
},
"normam": [
"<https://guides.rubyonrails.org/i18n.html>"
],
"nomen": {
"eng-Latn": "YAML (planned, but no draft)"
},
"situs_interretialis": {
"referens_officinale": [
"<https://guides.rubyonrails.org/i18n.html>"
]
},
"exemplum": [
"<https://github.com/i18next/react-i18next/blob/master/example/react/public/locales/de/translation.json>"
]
},
"asa": {
"modus_operandi": [
"bilingue"
]
}
}
},
"formatum_excerptum": {
"exemplum": "{{ #_1 }},{{ #_2 }}\n"
},
"libellam": {
"glossarium": null,
"conceptum": {
"_TBX": "entry-level"
},
"linguam": {
"_TBX": "language-level"
},
"terminum": {
"_TBX": "term-level"
}
},
"ontologia": {
"commune": {
"conceptum": {
"accuratum": {
"__HXL": "#status +conceptum +accuratum",
"__nomen_breve": "accuratum",
"__id": "ontologia.commune.conceptum.accuratum",
"__libellam": "conceptum",
"__valorem_optionem": "ontologia_aliud.accuratum",
"__valorem_maximum": 10,
"__valorem_minimum": 0,
"__valorem_typum": "numerum",
"_TBX": {
"_nomen": "reliabilityCode",
"_descriptionem": "A code assigned to a data-category or record indicating accuracy\nand/or completeness. The content of the <descrip> element when it\nhas a type attribute value of 'reliabilityCode' shall be a value\nfrom 1 (least reliable) to 10 (most reliable).\n",
"_xml": "<descrip type='reliabilityCode'>__valorem__</descrip>"
}
},
"codicem": {
"__HXL": "#item +conceptum +codicem",
"__nomen_breve": "codicem",
"__id": "ontologia.commune.conceptum.codicem",
"__libellam": "conceptum",
"_XLIFF": {
"__HXL_bilingue": "#x_xliff +unit +id"
},
"deprecatum": {
"__HXL": "#meta +conceptum +codicem +deprecatum",
"__nomen_breve": "codicem_deprecatum",
"__id": "ontologia.commune.conceptum.codicem.deprecatum",
"__libellam": "conceptum",
"__valorem_typum": "compactum_textum - exemplum_codicem_a|exemplum_codicem_b|123456"
},
"alternativum": {
"__HXL": "#meta +conceptum +codicem +alternativum",
"__nomen_breve": "codicem_alternativum",
"__id": "ontologia.commune.conceptum.codicem.alternativum",
"__libellam": "conceptum",
"__valorem_typum": "compactum_textum",
"_exemplum": [
"Q1065|UNTERM5f40d95f1d17bf8c85256a01000080af|IATE787725"
]
}
},
"dominium": {
"__HXL": "#item +conceptum +dominium",
"__nomen_breve": "dominium",
"__id": "ontologia.commune.conceptum.dominium",
"__libellam": "conceptum",
"_TBX": {
"_id": "DC-489",
"_descriptionem": "Refers to a location in the corpus—such as a software application\nuser interface, product packaging, oran industrial process—where\nthe term frequently occurs'A sample sentence that contains\nthe term.\n",
"_nomen": "Subject field",
"_level": "Concept",
"_xml": "<descrip type='subjectField'>"
},
"_TMX": {
"_descriptionem": "Property - The <prop> element is used to define the various\nproperties of the parent element (or of the document when\n<prop> is used in the <header> element).\nThese properties are not defined by the standard.\nIt is the responsibility of each tool provider to publish the\ntypes and values of the properties it uses.\nIf the tool exports unpublished properties types, their\nvalues should begin with the prefix \"x-\".\n\nExample:\n<prop type='user-defined'>name:domain value:Computer science</prop>\n<prop type='x-domain'>Computer science</prop> \n"
},
"_UTX": {
"_nomen": "domain property",
"_descriptionem": "The domain property is a text string that indicates the domain of\nthe glossary. This property is used when you need to group multiple\nglossaries into a domain. If you use glossary IDs as domain names,\nthe domain property is not necessary.\nExample\n domain: Aerospace\n",
"_XLIFF": {
"__HXL_bilingue": "#x_xliff +group +group_0"
}
}
},
"compactum_json": {
"__HXL": "#meta +conceptum +json",
"__id": "ontologia.commune.conceptum.compactum_json"
},
"referens": {
"situs_interretialis": {
"__HXL": "#meta +item +url +list",
"__nomen_breve": "referens_situs_interretialis",
"__id": "ontologia.commune.conceptum.referens.situs_interretialis",
"__libellam": "conceptum"
}
},
"typum": {
"__HXL": "#item +conceptum +typum",
"__nomen_breve": "typum",
"__id": "ontologia.commune.conceptum.typum",
"__libellam": "rem",
"_TBX": {
"_id": "DC-2677",
"_nomen": "Term type",
"_xml": "<termNote type='termType'>",
"_descriptionem": "Permissible values and their ISOcat PIDs are as follows:\nValue ISOcat PID\nfullForm www.isocat.org/datcat/DC-321\nacronym www.isocat.org/datcat/DC-334\nabbreviation www.isocat.org/datcat/DC-331\nshortForm www.isocat.org/datcat/DC-332\nvariant www.isocat.org/datcat/DC-330\nphrase www.isocat.org/datcat/DC-339\n"
},
"_XLIFF": {
"__HXL_bilingue": "#x_xliff +unit +note +note_category__termtype"
}
}
},
"rem": {
"__linguam__": {
"__HXL": "#item +rem __linguam__",
"__nomen_breve": "rem__L__",
"__id": "ontologia.commune.rem.__linguam__",
"__libellam": "rem",
"_TBX": {
"_id": "DC-1823",
"_nomen": "Term",
"_descriptionem": "Refers to a location in the corpus—such as a software application\nuser interface, product packaging, oran industrial process—where\nthe term frequently occurs'A sample sentence that contains\nthe term.\n",
"_xml": "<term>"
},
"_UTX": {
"_nomen": "Term",
"_descriptionem": "A term is a headword of either the source or target language(s).\nA term in a UTX glossary should be in the basic form of the word\nsuch as a headword in a dictionary.\nSee also \"7. Appendix A: UTX content guidelines.\"\n\nNote: Term definitions are optional in a UTX glossary.\n"
},
"_XLIFF": {
"__HXL_fontem": "#x_xliff +source __linguam__",
"__HXL_fontem_alternativum_I": "#x_xliff +unit +note +note_category__altsource1 __linguam__",
"__HXL_fontem_alternativum_II": "#x_xliff +unit +note +note_category__altsource2 __linguam__",
"__HXL_fontem_alternativum_III": "#x_xliff +unit +note +note_category__altsource3 __linguam__",
"__HXL_fontem_alternativum_IV": "#x_xliff +unit +note +note_category__altsource4 __linguam__",
"__HXL_fontem_alternativum_V": "#x_xliff +unit +note +note_category__altsource5 __linguam__",
"__HXL_objectivum": "#x_xliff +target __linguam__"
}
},
"__linguam_de_imperium__": {
"__HXL": "#item +rem __linguam_de_imperium__",
"__nomen_breve": "rem__L_I__",