metanorma-itu 2.3.5 → 2.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4acc57d157430e9c4a9e37bd8f8aa0da066a3c4afb8ba55a13b3ecf43f9bf286
4
- data.tar.gz: 16e233430fd7a3b309d9df84618e34b2fa1f518481d5ed626f5bf77724ea962a
3
+ metadata.gz: 7ab874eac40d7f8d7ba5d8bc82ace71a87675477a7d87c8d750af1b22525ba9a
4
+ data.tar.gz: eb6f6a31df466a149f6e7692006c7ae398f4ce81cc56c9cbaa775b31130aa2f2
5
5
  SHA512:
6
- metadata.gz: e332ff239cac846ceaad36f20bb88641e8893821485fa73b148b7d82d635d0435caf541356fedbf782e51600a29f2a84c81e61f21eefa4151873635b8f395179
7
- data.tar.gz: 35015e7389c327bff50c85b0a9f9e1a1f3ceeedfbf73edc3d77ade41ac56c91cefeab0d7eeb1dba9511eaea81f4b2540fe148f7ce4412d02b26b4e977a16fa2e
6
+ metadata.gz: 16b46298780e33ce35de12137b9014e7485ee61cf47dd08419e29f95009e3f36fe6dcb5317503f6edf76e8edb1f67e216fcf7b05c14bfe08be8b4d0e9c237581
7
+ data.tar.gz: 96b2af6193b2659473240eb41be5de6cd1cd441bf15be385da48181a99177195211392c0c590c7a608089de06b58fe6d8cd933461847f507de2d9582a1455c8d
@@ -23,6 +23,7 @@ annex_subclause: فقرة
23
23
  keywords: الكلمات الدالة
24
24
  in: في
25
25
  to: إلى
26
+ nested_xref: "%2 في %1"
26
27
  where: ":حيث,"
27
28
  where_one: "حيث,"
28
29
  blankclause: تم ترك هذا الشرط فارغًا عمدًا
@@ -22,6 +22,7 @@ annex_subclause: Klausel
22
22
  keywords: Schlüsselwörter
23
23
  in: in
24
24
  to: bis
25
+ nested_xref: "%2 in %1"
25
26
  where: "wobei:"
26
27
  where_one: "wobei"
27
28
  blankclause: Diese Klausel ist absichtlich leer gelassen
@@ -25,6 +25,7 @@ in: in
25
25
  to: to
26
26
  where: "where:"
27
27
  where_one: "where"
28
+ nested_xref: "%2 in %1"
28
29
  blankclause: This clause is intentionally left blank.
29
30
  norm_with_refs_pref:
30
31
  The following ITU-T Recommendations and other references contain provisions which, through reference in this text, constitute provisions of this Recommendation. At the time of publication, the editions indicated were valid. All Recommendations and other references are subject to revision; users of this Recommendation are therefore encouraged to investigate the possibility of applying the most recent edition of the Recommendations and other references listed below. A list of the currently valid ITU-T Recommendations is regularly published. The reference to a document within this Recommendation does not give it, as a stand-alone document, the status of a Recommendation.
@@ -23,6 +23,7 @@ annex_subclause: cláusula
23
23
  keywords: Palabras clave
24
24
  in: en
25
25
  to: a
26
+ nested_xref: "%2 en %1"
26
27
  where: "donde:"
27
28
  where_one: "donde"
28
29
  blankclause: Esta cláusula se deja en blanco intencionalmente.
@@ -23,6 +23,7 @@ annex_subclause: article
23
23
  keywords: Mots clés
24
24
  in: dans
25
25
  to: à
26
+ nested_xref: "%2 dans %1"
26
27
  where: "où:"
27
28
  where_one: "où"
28
29
  blankclause: Cette clause est laissée en blanc intentionnellement.
@@ -23,6 +23,7 @@ annex_subclause: пункт
23
23
  keywords: Ключевые слова
24
24
  in: в
25
25
  to: до
26
+ nested_xref: "%2 в %1"
26
27
  where: "где:"
27
28
  where_one: "где"
28
29
  blankclause: Этот пункт намеренно оставлен пустым.
@@ -21,8 +21,9 @@ clause: 条款
21
21
  section: 节
22
22
  annex_subclause: 条款
23
23
  keywords: 关键词
24
- in: in
25
- to: to
24
+ in: 中的
25
+ to:
26
+ nested_xref: "%1中的%2"
26
27
  where: 式中:
27
28
  where_one: 式中
28
29
  blankclause: This clause is intentionally left blank.
@@ -1,22 +1,14 @@
1
1
  module IsoDoc
2
2
  module ITU
3
3
  class I18n < IsoDoc::I18n
4
- def load_yaml2x(str)
5
- YAML.load_file(File.join(File.dirname(__FILE__),
6
- "i18n-#{str}.yaml"))
4
+ def load_file(fname)
5
+ f = File.join(File.dirname(__FILE__), fname)
6
+ File.exist?(f) ? YAML.load_file(f) : {}
7
7
  end
8
8
 
9
9
  def load_yaml1(lang, script)
10
- y = case lang
11
- when "en", "fr", "ru", "de", "es", "ar"
12
- load_yaml2x(lang)
13
- when "zh"
14
- if script == "Hans" then load_yaml2x("zh-Hans")
15
- else load_yaml2x("en")
16
- end
17
- else load_yaml2x("en")
18
- end
19
- super.deep_merge(y)
10
+ y = load_file("i18n-#{yaml_lang(lang, script)}.yaml")
11
+ y.empty? ? load_file("i18n-en.yaml").merge(super) : super.deep_merge(y)
20
12
  end
21
13
  end
22
14
  end
@@ -18,10 +18,6 @@ module IsoDoc
18
18
  super
19
19
  end
20
20
 
21
- def prefix_container(container, linkend, node, _target)
22
- l10n("#{linkend} #{@i18n.get['in']} #{anchor_xref(node, container)}")
23
- end
24
-
25
21
  def eref(docxml)
26
22
  docxml.xpath(ns("//eref")).each { |f| eref1(f) }
27
23
  end
@@ -52,12 +52,12 @@ module IsoDoc
52
52
  "-#{(subfignum + 96).chr}"
53
53
  end
54
54
 
55
- def sequential_figure_body(subfignum, counter, block, klass)
55
+ def sequential_figure_body(subfig, counter, elem, klass, container: false)
56
56
  label = counter.print
57
- label &&= label + subfigure_label(subfignum)
58
- @anchors[block["id"]] = anchor_struct(
59
- label, nil, @labels[klass] || klass.capitalize, klass,
60
- block["unnumbered"]
57
+ label &&= label + subfigure_label(subfig)
58
+ @anchors[elem["id"]] = anchor_struct(
59
+ label, container ? elem : nil, @labels[klass] || klass.capitalize,
60
+ klass, elem["unnumbered"]
61
61
  )
62
62
  end
63
63
 
@@ -69,7 +69,7 @@ module IsoDoc
69
69
  )
70
70
  end
71
71
 
72
- def sequential_formula_names(clause)
72
+ def sequential_formula_names(clause, container: false)
73
73
  clause.first&.xpath(ns(middle_sections))&.each do |c|
74
74
  if c["id"] && @anchors[c["id"]]
75
75
  hierarchical_formula_names(c, @anchors[c["id"]][:label] ||
@@ -374,6 +374,16 @@
374
374
  <ref name="image"/>
375
375
  </element>
376
376
  </define>
377
+ <define name="depiction">
378
+ <element name="depiction">
379
+ <optional>
380
+ <attribute name="scope"/>
381
+ </optional>
382
+ <zeroOrMore>
383
+ <ref name="image"/>
384
+ </zeroOrMore>
385
+ </element>
386
+ </define>
377
387
  <define name="NameWithVariants">
378
388
  <element name="primary">
379
389
  <ref name="LocalizedString"/>
@@ -760,6 +770,9 @@
760
770
  <optional>
761
771
  <ref name="validity"/>
762
772
  </optional>
773
+ <optional>
774
+ <ref name="depiction"/>
775
+ </optional>
763
776
  </define>
764
777
  <define name="ReducedBibliographicItem">
765
778
  <optional>
@@ -17,7 +17,7 @@
17
17
  these elements; we just want one namespace for any child grammars
18
18
  of this.
19
19
  -->
20
- <!-- VERSION v1.2.8 -->
20
+ <!-- VERSION v1.2.9 -->
21
21
  <grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes">
22
22
  <include href="reqt.rng"/>
23
23
  <include href="basicdoc.rng">
@@ -1958,6 +1958,16 @@
1958
1958
  <data type="boolean"/>
1959
1959
  </attribute>
1960
1960
  </optional>
1961
+ <optional>
1962
+ <attribute name="type">
1963
+ <choice>
1964
+ <value>letter</value>
1965
+ <value>symbol</value>
1966
+ <value>formula</value>
1967
+ <value>equation</value>
1968
+ </choice>
1969
+ </attribute>
1970
+ </optional>
1961
1971
  <element name="name">
1962
1972
  <oneOrMore>
1963
1973
  <choice>
@@ -1,5 +1,5 @@
1
1
  module Metanorma
2
2
  module ITU
3
- VERSION = "2.3.5".freeze
3
+ VERSION = "2.3.6".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: metanorma-itu
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.5
4
+ version: 2.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-27 00:00:00.000000000 Z
11
+ date: 2023-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: metanorma-standoc