cldr-plurals 1.0.1 → 1.1.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb65a6b7e4dd289a47d2b64683d67419180eea2d
4
- data.tar.gz: a7a267d2a0c9c57820277d531cb4c99971506c22
3
+ metadata.gz: 59430246aed9b504a141819047e22ac4f8bd8b5c
4
+ data.tar.gz: f3ed5c3a87b64b5fe420007b4a25e2aaeabe8b2a
5
5
  SHA512:
6
- metadata.gz: e0e1bbab1aa3a23be422f860c241aca3bbb9713b9d1c3184b66771152a60d5422b7042023b0f377cdefce5a05e3f4b495fcbcd00b28d338f698b6935027cfcda
7
- data.tar.gz: 305122106bc6fa9c6ebc27049dfef7e9b297061a06a000abbce702cc79c57efff0d5ba8e02e0d8719d90ac4323d350edb5f3e7381fe4849949dc7c88c92852ed
6
+ metadata.gz: 1f63dc50f4d0ed9891de5c01a5de8ed845ae28e8c74117381b75573cbb3b58a4e9d40468578ad90cc2b161fd982fab5ca5bf103fc64cae6f8b6ae6ebdaf2cfbd
7
+ data.tar.gz: e4c17f51182c16dea89dadc9c137478196284bf50551af68faa35a2f086ca9829acacd67ea7c9e01f72ef408f8ce60354a684b43b2f03a0436d99c65dc235903
data/Gemfile CHANGED
@@ -15,4 +15,6 @@ group :test do
15
15
  gem 'therubyracer', '~> 0.12.0'
16
16
  gem 'cldr-plurals-runtime-rb', '~> 1.0.0'
17
17
  gem 'cldr-plurals-runtime-js', '~> 1.0.0'
18
+
19
+ gem 'libv8', '= 3.16.14.11' # 2016-04-20 lock to older working version on Clang/OS X (3.16.14.13 won't compile)
18
20
  end
@@ -1,3 +1,8 @@
1
+ == 1.1.0
2
+
3
+ * Better, more accurate range handling according to TR-35.
4
+ * Upgrade to CLDR v29.
5
+
1
6
  == 1.0.1
2
7
 
3
8
  * Added MIT license.
data/Rakefile CHANGED
@@ -53,7 +53,7 @@ task :update_samples do
53
53
  require 'nokogiri'
54
54
  require 'yaml'
55
55
 
56
- url = 'http://unicode.org/cldr/trac/browser/tags/release-26-d04/' +
56
+ url = 'http://unicode.org/cldr/trac/browser/tags/release-29/' +
57
57
  'common/supplemental/plurals.xml?format=txt'
58
58
 
59
59
  doc = Nokogiri::XML(open(url).read)
@@ -43,8 +43,7 @@ module CldrPlurals
43
43
  case expr.value
44
44
  when CldrPlurals::Compiler::Range
45
45
  neg = expr.operation.symbol == '!=' ? '!' : ''
46
- operand_str = emit(expr.operand)
47
- "#{neg}((#{operand_str} >= #{expr.value.start}) && (#{operand_str} <= #{expr.value.finish}))"
46
+ "#{neg}(#{emit_range_check(expr.value, expr.operand)})"
48
47
  when CldrPlurals::Compiler::ValueSet
49
48
  "(#{emit_value_set(expr.value, expr.operand, expr.operation)})"
50
49
  else
@@ -57,7 +56,7 @@ module CldrPlurals
57
56
  when CldrPlurals::Compiler::Range
58
57
  expr = emit(rel.expression)
59
58
  neg = rel.operation.symbol == '!=' ? '!' : ''
60
- "#{neg}((#{expr} >= #{rel.value.start}) && (#{expr} <= #{rel.value.finish}))"
59
+ "#{neg}(#{emit_range_check(rel.value, expr)})"
61
60
  when CldrPlurals::Compiler::ValueSet
62
61
  "(#{emit_value_set(rel.value, rel.expression, rel.operation)})"
63
62
  else
@@ -70,8 +69,7 @@ module CldrPlurals
70
69
  case value
71
70
  when CldrPlurals::Compiler::Range
72
71
  neg = operator.symbol == '!=' ? '!' : ''
73
- operand_str = emit(operand)
74
- "#{neg}((#{operand_str} >= #{value.start}) && (#{operand_str} <= #{value.finish}))"
72
+ "#{neg}(#{emit_range_check(value, operand)})"
75
73
  else
76
74
  "(#{emit(operand)} #{emit(operator)} #{emit(value)})"
77
75
  end
@@ -84,6 +82,12 @@ module CldrPlurals
84
82
  end
85
83
  end
86
84
 
85
+ def emit_range_check(range, operand)
86
+ # a..b represents all *integers* between a and b, inclusive.
87
+ n = emit(operand)
88
+ "(Math.floor(#{n}) === #{n}) && (#{n} >= #{range.start}) && (#{n} <= #{range.finish})"
89
+ end
90
+
87
91
  def emit_operator(op)
88
92
  case op.symbol
89
93
  when '='
@@ -43,7 +43,7 @@ module CldrPlurals
43
43
  case expr.value
44
44
  when CldrPlurals::Compiler::Range
45
45
  neg = expr.operation.symbol == '!=' ? '!' : ''
46
- "#{neg}(#{emit_range(expr.value)}).include?(#{emit(expr.operand)})"
46
+ "#{neg}(#{emit_range_check(expr.value, expr.operand)})"
47
47
  when CldrPlurals::Compiler::ValueSet
48
48
  "(#{emit_value_set(expr.value, expr.operand, expr.operation)})"
49
49
  else
@@ -56,7 +56,7 @@ module CldrPlurals
56
56
  when CldrPlurals::Compiler::Range
57
57
  expr = emit(rel.expression)
58
58
  neg = rel.operation.symbol == '!=' ? '!' : ''
59
- "#{neg}(#{emit_range(rel.value)}).include?(#{expr})"
59
+ "#{neg}(#{emit_range_check(rel.value, expr)})"
60
60
  when CldrPlurals::Compiler::ValueSet
61
61
  "(#{emit_value_set(rel.value, rel.expression, rel.operation)})"
62
62
  else
@@ -69,7 +69,7 @@ module CldrPlurals
69
69
  case value
70
70
  when CldrPlurals::Compiler::Range
71
71
  neg = operator.symbol == '!=' ? '!' : ''
72
- "#{neg}(#{emit_range(value)}).include?(#{emit(operand)})"
72
+ "#{neg}(#{emit_range_check(value, operand)})"
73
73
  else
74
74
  "(#{emit(operand)} #{emit(operator)} #{emit(value)})"
75
75
  end
@@ -82,8 +82,10 @@ module CldrPlurals
82
82
  end
83
83
  end
84
84
 
85
- def emit_range(range)
86
- "#{emit(range.start)}..#{emit(range.finish)}"
85
+ def emit_range_check(range, operand)
86
+ # a..b represents all *integers* between a and b, inclusive.
87
+ n = emit(operand)
88
+ "(#{n}.floor == #{n}) && (#{n} >= #{range.start}) && (#{n} <= #{range.finish})"
87
89
  end
88
90
 
89
91
  def emit_operator(op)
@@ -1,5 +1,5 @@
1
1
  # encoding: UTF-8
2
2
 
3
3
  module CldrPlurals
4
- VERSION = '1.0.1'
4
+ VERSION = '1.1.0'
5
5
  end
@@ -3,7 +3,7 @@ bm/bo/dz/id/ig/ii/in/ja/jbo/jv/jw/kde/kea/km/ko/lkt/lo/ms/my/nqo/root/sah/ses/sg
3
3
  - :text: ''
4
4
  :name: :other
5
5
  :samples:
6
- - :type: '@integer'
6
+ - :type: "@integer"
7
7
  :samples:
8
8
  - '0'
9
9
  - '1'
@@ -26,7 +26,7 @@ bm/bo/dz/id/ig/ii/in/ja/jbo/jv/jw/kde/kea/km/ko/lkt/lo/ms/my/nqo/root/sah/ses/sg
26
26
  - '10000'
27
27
  - '100000'
28
28
  - '1000000'
29
- - :type: '@decimal'
29
+ - :type: "@decimal"
30
30
  :samples:
31
31
  - '0.0'
32
32
  - '0.1'
@@ -50,15 +50,15 @@ bm/bo/dz/id/ig/ii/in/ja/jbo/jv/jw/kde/kea/km/ko/lkt/lo/ms/my/nqo/root/sah/ses/sg
50
50
  - '10000.0'
51
51
  - '100000.0'
52
52
  - '1000000.0'
53
- am/bn/fa/gu/hi/kn/mr/zu:
53
+ am/as/bn/fa/gu/hi/kn/mr/zu:
54
54
  - :text: i = 0 or n = 1
55
55
  :name: :one
56
56
  :samples:
57
- - :type: '@integer'
57
+ - :type: "@integer"
58
58
  :samples:
59
59
  - '0'
60
60
  - '1'
61
- - :type: '@decimal'
61
+ - :type: "@decimal"
62
62
  :samples:
63
63
  - '0.0'
64
64
  - '0.1'
@@ -79,7 +79,7 @@ am/bn/fa/gu/hi/kn/mr/zu:
79
79
  - :text: ''
80
80
  :name: :other
81
81
  :samples:
82
- - :type: '@integer'
82
+ - :type: "@integer"
83
83
  :samples:
84
84
  - '2'
85
85
  - '3'
@@ -102,7 +102,7 @@ am/bn/fa/gu/hi/kn/mr/zu:
102
102
  - '10000'
103
103
  - '100000'
104
104
  - '1000000'
105
- - :type: '@decimal'
105
+ - :type: "@decimal"
106
106
  :samples:
107
107
  - '1.1'
108
108
  - '1.2'
@@ -130,11 +130,11 @@ ff/fr/hy/kab:
130
130
  - :text: i = 0,1
131
131
  :name: :one
132
132
  :samples:
133
- - :type: '@integer'
133
+ - :type: "@integer"
134
134
  :samples:
135
135
  - '0'
136
136
  - '1'
137
- - :type: '@decimal'
137
+ - :type: "@decimal"
138
138
  :samples:
139
139
  - '0.0'
140
140
  - '0.1'
@@ -155,7 +155,7 @@ ff/fr/hy/kab:
155
155
  - :text: ''
156
156
  :name: :other
157
157
  :samples:
158
- - :type: '@integer'
158
+ - :type: "@integer"
159
159
  :samples:
160
160
  - '2'
161
161
  - '3'
@@ -178,7 +178,7 @@ ff/fr/hy/kab:
178
178
  - '10000'
179
179
  - '100000'
180
180
  - '1000000'
181
- - :type: '@decimal'
181
+ - :type: "@decimal"
182
182
  :samples:
183
183
  - '2.0'
184
184
  - '2.1'
@@ -206,13 +206,13 @@ ast/ca/de/en/et/fi/fy/gl/it/ji/nl/sv/sw/ur/yi:
206
206
  - :text: i = 1 and v = 0
207
207
  :name: :one
208
208
  :samples:
209
- - :type: '@integer'
209
+ - :type: "@integer"
210
210
  :samples:
211
211
  - '1'
212
212
  - :text: ''
213
213
  :name: :other
214
214
  :samples:
215
- - :type: '@integer'
215
+ - :type: "@integer"
216
216
  :samples:
217
217
  - '0'
218
218
  - '2'
@@ -235,7 +235,7 @@ ast/ca/de/en/et/fi/fy/gl/it/ji/nl/sv/sw/ur/yi:
235
235
  - '10000'
236
236
  - '100000'
237
237
  - '1000000'
238
- - :type: '@decimal'
238
+ - :type: "@decimal"
239
239
  :samples:
240
240
  - '0.0'
241
241
  - '0.1'
@@ -263,11 +263,11 @@ si:
263
263
  - :text: n = 0,1 or i = 0 and f = 1
264
264
  :name: :one
265
265
  :samples:
266
- - :type: '@integer'
266
+ - :type: "@integer"
267
267
  :samples:
268
268
  - '0'
269
269
  - '1'
270
- - :type: '@decimal'
270
+ - :type: "@decimal"
271
271
  :samples:
272
272
  - '0.0'
273
273
  - '0.1'
@@ -284,7 +284,7 @@ si:
284
284
  - :text: ''
285
285
  :name: :other
286
286
  :samples:
287
- - :type: '@integer'
287
+ - :type: "@integer"
288
288
  :samples:
289
289
  - '2'
290
290
  - '3'
@@ -307,7 +307,7 @@ si:
307
307
  - '10000'
308
308
  - '100000'
309
309
  - '1000000'
310
- - :type: '@decimal'
310
+ - :type: "@decimal"
311
311
  :samples:
312
312
  - '0.2'
313
313
  - '0.3'
@@ -335,11 +335,11 @@ ak/bh/guw/ln/mg/nso/pa/ti/wa:
335
335
  - :text: n = 0..1
336
336
  :name: :one
337
337
  :samples:
338
- - :type: '@integer'
338
+ - :type: "@integer"
339
339
  :samples:
340
340
  - '0'
341
341
  - '1'
342
- - :type: '@decimal'
342
+ - :type: "@decimal"
343
343
  :samples:
344
344
  - '0.0'
345
345
  - '1.0'
@@ -352,7 +352,7 @@ ak/bh/guw/ln/mg/nso/pa/ti/wa:
352
352
  - :text: ''
353
353
  :name: :other
354
354
  :samples:
355
- - :type: '@integer'
355
+ - :type: "@integer"
356
356
  :samples:
357
357
  - '2'
358
358
  - '3'
@@ -375,7 +375,7 @@ ak/bh/guw/ln/mg/nso/pa/ti/wa:
375
375
  - '10000'
376
376
  - '100000'
377
377
  - '1000000'
378
- - :type: '@decimal'
378
+ - :type: "@decimal"
379
379
  :samples:
380
380
  - '0.1'
381
381
  - '0.2'
@@ -403,7 +403,7 @@ tzm:
403
403
  - :text: n = 0..1 or n = 11..99
404
404
  :name: :one
405
405
  :samples:
406
- - :type: '@integer'
406
+ - :type: "@integer"
407
407
  :samples:
408
408
  - '0'
409
409
  - '1'
@@ -421,7 +421,7 @@ tzm:
421
421
  - '22'
422
422
  - '23'
423
423
  - '24'
424
- - :type: '@decimal'
424
+ - :type: "@decimal"
425
425
  :samples:
426
426
  - '0.0'
427
427
  - '1.0'
@@ -442,7 +442,7 @@ tzm:
442
442
  - :text: ''
443
443
  :name: :other
444
444
  :samples:
445
- - :type: '@integer'
445
+ - :type: "@integer"
446
446
  :samples:
447
447
  - '2'
448
448
  - '3'
@@ -464,7 +464,7 @@ tzm:
464
464
  - '10000'
465
465
  - '100000'
466
466
  - '1000000'
467
- - :type: '@decimal'
467
+ - :type: "@decimal"
468
468
  :samples:
469
469
  - '0.1'
470
470
  - '0.2'
@@ -492,11 +492,11 @@ pt:
492
492
  - :text: n = 0..2 and n != 2
493
493
  :name: :one
494
494
  :samples:
495
- - :type: '@integer'
495
+ - :type: "@integer"
496
496
  :samples:
497
497
  - '0'
498
498
  - '1'
499
- - :type: '@decimal'
499
+ - :type: "@decimal"
500
500
  :samples:
501
501
  - '0.0'
502
502
  - '1.0'
@@ -509,7 +509,7 @@ pt:
509
509
  - :text: ''
510
510
  :name: :other
511
511
  :samples:
512
- - :type: '@integer'
512
+ - :type: "@integer"
513
513
  :samples:
514
514
  - '2'
515
515
  - '3'
@@ -532,7 +532,7 @@ pt:
532
532
  - '10000'
533
533
  - '100000'
534
534
  - '1000000'
535
- - :type: '@decimal'
535
+ - :type: "@decimal"
536
536
  :samples:
537
537
  - '0.1'
538
538
  - '0.2'
@@ -556,14 +556,14 @@ pt:
556
556
  - '10000.0'
557
557
  - '100000.0'
558
558
  - '1000000.0'
559
- ? af/asa/az/bem/bez/bg/brx/cgg/chr/ckb/dv/ee/el/eo/es/eu/fo/fur/gsw/ha/haw/hu/jgo/jmc/ka/kaj/kcg/kk/kkj/kl/ks/ksb/ku/ky/lb/lg/mas/mgo/ml/mn/nah/nb/nd/ne/nn/nnh/no/nr/ny/nyn/om/or/os/pap/ps/rm/rof/rwk/saq/seh/sn/so/sq/ss/ssy/st/syr/ta/te/teo/tig/tk/tn/tr/ts/ug/uz/ve/vo/vun/wae/xh/xog
559
+ ? af/asa/az/bem/bez/bg/brx/ce/cgg/chr/ckb/dv/ee/el/eo/es/eu/fo/fur/gsw/ha/haw/hu/jgo/jmc/ka/kaj/kcg/kk/kkj/kl/ks/ksb/ku/ky/lb/lg/mas/mgo/ml/mn/nah/nb/nd/ne/nn/nnh/no/nr/ny/nyn/om/or/os/pap/ps/rm/rof/rwk/saq/sdh/seh/sn/so/sq/ss/ssy/st/syr/ta/te/teo/tig/tk/tn/tr/ts/ug/uz/ve/vo/vun/wae/xh/xog
560
560
  : - :text: n = 1
561
561
  :name: :one
562
562
  :samples:
563
- - :type: '@integer'
563
+ - :type: "@integer"
564
564
  :samples:
565
565
  - '1'
566
- - :type: '@decimal'
566
+ - :type: "@decimal"
567
567
  :samples:
568
568
  - '1.0'
569
569
  - '1.00'
@@ -572,7 +572,7 @@ pt:
572
572
  - :text: ''
573
573
  :name: :other
574
574
  :samples:
575
- - :type: '@integer'
575
+ - :type: "@integer"
576
576
  :samples:
577
577
  - '0'
578
578
  - '2'
@@ -595,7 +595,7 @@ pt:
595
595
  - '10000'
596
596
  - '100000'
597
597
  - '1000000'
598
- - :type: '@decimal'
598
+ - :type: "@decimal"
599
599
  :samples:
600
600
  - '0.0'
601
601
  - '0.1'
@@ -623,13 +623,13 @@ pt_PT:
623
623
  - :text: n = 1 and v = 0
624
624
  :name: :one
625
625
  :samples:
626
- - :type: '@integer'
626
+ - :type: "@integer"
627
627
  :samples:
628
628
  - '1'
629
629
  - :text: ''
630
630
  :name: :other
631
631
  :samples:
632
- - :type: '@integer'
632
+ - :type: "@integer"
633
633
  :samples:
634
634
  - '0'
635
635
  - '2'
@@ -652,7 +652,7 @@ pt_PT:
652
652
  - '10000'
653
653
  - '100000'
654
654
  - '1000000'
655
- - :type: '@decimal'
655
+ - :type: "@decimal"
656
656
  :samples:
657
657
  - '0.0'
658
658
  - '0.1'
@@ -680,10 +680,10 @@ da:
680
680
  - :text: n = 1 or t != 0 and i = 0,1
681
681
  :name: :one
682
682
  :samples:
683
- - :type: '@integer'
683
+ - :type: "@integer"
684
684
  :samples:
685
685
  - '1'
686
- - :type: '@decimal'
686
+ - :type: "@decimal"
687
687
  :samples:
688
688
  - '0.1'
689
689
  - '0.2'
@@ -704,7 +704,7 @@ da:
704
704
  - :text: ''
705
705
  :name: :other
706
706
  :samples:
707
- - :type: '@integer'
707
+ - :type: "@integer"
708
708
  :samples:
709
709
  - '0'
710
710
  - '2'
@@ -727,7 +727,7 @@ da:
727
727
  - '10000'
728
728
  - '100000'
729
729
  - '1000000'
730
- - :type: '@decimal'
730
+ - :type: "@decimal"
731
731
  :samples:
732
732
  - '0.0'
733
733
  - '2.0'
@@ -755,7 +755,7 @@ is:
755
755
  - :text: t = 0 and i % 10 = 1 and i % 100 != 11 or t != 0
756
756
  :name: :one
757
757
  :samples:
758
- - :type: '@integer'
758
+ - :type: "@integer"
759
759
  :samples:
760
760
  - '1'
761
761
  - '21'
@@ -767,7 +767,7 @@ is:
767
767
  - '81'
768
768
  - '101'
769
769
  - '1001'
770
- - :type: '@decimal'
770
+ - :type: "@decimal"
771
771
  :samples:
772
772
  - '0.1'
773
773
  - '0.2'
@@ -791,7 +791,7 @@ is:
791
791
  - :text: ''
792
792
  :name: :other
793
793
  :samples:
794
- - :type: '@integer'
794
+ - :type: "@integer"
795
795
  :samples:
796
796
  - '0'
797
797
  - '2'
@@ -814,7 +814,7 @@ is:
814
814
  - '10000'
815
815
  - '100000'
816
816
  - '1000000'
817
- - :type: '@decimal'
817
+ - :type: "@decimal"
818
818
  :samples:
819
819
  - '0.0'
820
820
  - '2.0'
@@ -834,7 +834,7 @@ mk:
834
834
  - :text: v = 0 and i % 10 = 1 or f % 10 = 1
835
835
  :name: :one
836
836
  :samples:
837
- - :type: '@integer'
837
+ - :type: "@integer"
838
838
  :samples:
839
839
  - '1'
840
840
  - '11'
@@ -846,7 +846,7 @@ mk:
846
846
  - '71'
847
847
  - '101'
848
848
  - '1001'
849
- - :type: '@decimal'
849
+ - :type: "@decimal"
850
850
  :samples:
851
851
  - '0.1'
852
852
  - '1.1'
@@ -862,7 +862,7 @@ mk:
862
862
  - :text: ''
863
863
  :name: :other
864
864
  :samples:
865
- - :type: '@integer'
865
+ - :type: "@integer"
866
866
  :samples:
867
867
  - '0'
868
868
  - '2'
@@ -885,7 +885,7 @@ mk:
885
885
  - '10000'
886
886
  - '100000'
887
887
  - '1000000'
888
- - :type: '@decimal'
888
+ - :type: "@decimal"
889
889
  :samples:
890
890
  - '0.0'
891
891
  - '0.2'
@@ -914,7 +914,7 @@ fil/tl:
914
914
  4,6,9
915
915
  :name: :one
916
916
  :samples:
917
- - :type: '@integer'
917
+ - :type: "@integer"
918
918
  :samples:
919
919
  - '0'
920
920
  - '1'
@@ -937,7 +937,7 @@ fil/tl:
937
937
  - '10000'
938
938
  - '100000'
939
939
  - '1000000'
940
- - :type: '@decimal'
940
+ - :type: "@decimal"
941
941
  :samples:
942
942
  - '0.0'
943
943
  - '0.1'
@@ -964,7 +964,7 @@ fil/tl:
964
964
  - :text: ''
965
965
  :name: :other
966
966
  :samples:
967
- - :type: '@integer'
967
+ - :type: "@integer"
968
968
  :samples:
969
969
  - '4'
970
970
  - '6'
@@ -976,7 +976,7 @@ fil/tl:
976
976
  - '26'
977
977
  - '104'
978
978
  - '1004'
979
- - :type: '@decimal'
979
+ - :type: "@decimal"
980
980
  :samples:
981
981
  - '0.4'
982
982
  - '0.6'
@@ -993,7 +993,7 @@ lv/prg:
993
993
  - :text: n % 10 = 0 or n % 100 = 11..19 or v = 2 and f % 100 = 11..19
994
994
  :name: :zero
995
995
  :samples:
996
- - :type: '@integer'
996
+ - :type: "@integer"
997
997
  :samples:
998
998
  - '0'
999
999
  - '10'
@@ -1016,7 +1016,7 @@ lv/prg:
1016
1016
  - '10000'
1017
1017
  - '100000'
1018
1018
  - '1000000'
1019
- - :type: '@decimal'
1019
+ - :type: "@decimal"
1020
1020
  :samples:
1021
1021
  - '0.0'
1022
1022
  - '10.0'
@@ -1035,7 +1035,7 @@ lv/prg:
1035
1035
  v != 2 and f % 10 = 1
1036
1036
  :name: :one
1037
1037
  :samples:
1038
- - :type: '@integer'
1038
+ - :type: "@integer"
1039
1039
  :samples:
1040
1040
  - '1'
1041
1041
  - '21'
@@ -1047,7 +1047,7 @@ lv/prg:
1047
1047
  - '81'
1048
1048
  - '101'
1049
1049
  - '1001'
1050
- - :type: '@decimal'
1050
+ - :type: "@decimal"
1051
1051
  :samples:
1052
1052
  - '0.1'
1053
1053
  - '1.0'
@@ -1064,7 +1064,7 @@ lv/prg:
1064
1064
  - :text: ''
1065
1065
  :name: :other
1066
1066
  :samples:
1067
- - :type: '@integer'
1067
+ - :type: "@integer"
1068
1068
  :samples:
1069
1069
  - '2'
1070
1070
  - '3'
@@ -1084,7 +1084,7 @@ lv/prg:
1084
1084
  - '29'
1085
1085
  - '102'
1086
1086
  - '1002'
1087
- - :type: '@decimal'
1087
+ - :type: "@decimal"
1088
1088
  :samples:
1089
1089
  - '0.2'
1090
1090
  - '0.3'
@@ -1109,10 +1109,10 @@ lag:
1109
1109
  - :text: n = 0
1110
1110
  :name: :zero
1111
1111
  :samples:
1112
- - :type: '@integer'
1112
+ - :type: "@integer"
1113
1113
  :samples:
1114
1114
  - '0'
1115
- - :type: '@decimal'
1115
+ - :type: "@decimal"
1116
1116
  :samples:
1117
1117
  - '0.0'
1118
1118
  - '0.00'
@@ -1121,10 +1121,10 @@ lag:
1121
1121
  - :text: i = 0,1 and n != 0
1122
1122
  :name: :one
1123
1123
  :samples:
1124
- - :type: '@integer'
1124
+ - :type: "@integer"
1125
1125
  :samples:
1126
1126
  - '1'
1127
- - :type: '@decimal'
1127
+ - :type: "@decimal"
1128
1128
  :samples:
1129
1129
  - '0.1'
1130
1130
  - '0.2'
@@ -1145,7 +1145,7 @@ lag:
1145
1145
  - :text: ''
1146
1146
  :name: :other
1147
1147
  :samples:
1148
- - :type: '@integer'
1148
+ - :type: "@integer"
1149
1149
  :samples:
1150
1150
  - '2'
1151
1151
  - '3'
@@ -1168,7 +1168,7 @@ lag:
1168
1168
  - '10000'
1169
1169
  - '100000'
1170
1170
  - '1000000'
1171
- - :type: '@decimal'
1171
+ - :type: "@decimal"
1172
1172
  :samples:
1173
1173
  - '2.0'
1174
1174
  - '2.1'
@@ -1196,10 +1196,10 @@ ksh:
1196
1196
  - :text: n = 0
1197
1197
  :name: :zero
1198
1198
  :samples:
1199
- - :type: '@integer'
1199
+ - :type: "@integer"
1200
1200
  :samples:
1201
1201
  - '0'
1202
- - :type: '@decimal'
1202
+ - :type: "@decimal"
1203
1203
  :samples:
1204
1204
  - '0.0'
1205
1205
  - '0.00'
@@ -1208,10 +1208,10 @@ ksh:
1208
1208
  - :text: n = 1
1209
1209
  :name: :one
1210
1210
  :samples:
1211
- - :type: '@integer'
1211
+ - :type: "@integer"
1212
1212
  :samples:
1213
1213
  - '1'
1214
- - :type: '@decimal'
1214
+ - :type: "@decimal"
1215
1215
  :samples:
1216
1216
  - '1.0'
1217
1217
  - '1.00'
@@ -1220,7 +1220,7 @@ ksh:
1220
1220
  - :text: ''
1221
1221
  :name: :other
1222
1222
  :samples:
1223
- - :type: '@integer'
1223
+ - :type: "@integer"
1224
1224
  :samples:
1225
1225
  - '2'
1226
1226
  - '3'
@@ -1243,7 +1243,7 @@ ksh:
1243
1243
  - '10000'
1244
1244
  - '100000'
1245
1245
  - '1000000'
1246
- - :type: '@decimal'
1246
+ - :type: "@decimal"
1247
1247
  :samples:
1248
1248
  - '0.1'
1249
1249
  - '0.2'
@@ -1271,10 +1271,10 @@ iu/kw/naq/se/sma/smi/smj/smn/sms:
1271
1271
  - :text: n = 1
1272
1272
  :name: :one
1273
1273
  :samples:
1274
- - :type: '@integer'
1274
+ - :type: "@integer"
1275
1275
  :samples:
1276
1276
  - '1'
1277
- - :type: '@decimal'
1277
+ - :type: "@decimal"
1278
1278
  :samples:
1279
1279
  - '1.0'
1280
1280
  - '1.00'
@@ -1283,10 +1283,10 @@ iu/kw/naq/se/sma/smi/smj/smn/sms:
1283
1283
  - :text: n = 2
1284
1284
  :name: :two
1285
1285
  :samples:
1286
- - :type: '@integer'
1286
+ - :type: "@integer"
1287
1287
  :samples:
1288
1288
  - '2'
1289
- - :type: '@decimal'
1289
+ - :type: "@decimal"
1290
1290
  :samples:
1291
1291
  - '2.0'
1292
1292
  - '2.00'
@@ -1295,7 +1295,7 @@ iu/kw/naq/se/sma/smi/smj/smn/sms:
1295
1295
  - :text: ''
1296
1296
  :name: :other
1297
1297
  :samples:
1298
- - :type: '@integer'
1298
+ - :type: "@integer"
1299
1299
  :samples:
1300
1300
  - '0'
1301
1301
  - '3'
@@ -1318,7 +1318,7 @@ iu/kw/naq/se/sma/smi/smj/smn/sms:
1318
1318
  - '10000'
1319
1319
  - '100000'
1320
1320
  - '1000000'
1321
- - :type: '@decimal'
1321
+ - :type: "@decimal"
1322
1322
  :samples:
1323
1323
  - '0.0'
1324
1324
  - '0.1'
@@ -1346,11 +1346,11 @@ shi:
1346
1346
  - :text: i = 0 or n = 1
1347
1347
  :name: :one
1348
1348
  :samples:
1349
- - :type: '@integer'
1349
+ - :type: "@integer"
1350
1350
  :samples:
1351
1351
  - '0'
1352
1352
  - '1'
1353
- - :type: '@decimal'
1353
+ - :type: "@decimal"
1354
1354
  :samples:
1355
1355
  - '0.0'
1356
1356
  - '0.1'
@@ -1371,7 +1371,7 @@ shi:
1371
1371
  - :text: n = 2..10
1372
1372
  :name: :few
1373
1373
  :samples:
1374
- - :type: '@integer'
1374
+ - :type: "@integer"
1375
1375
  :samples:
1376
1376
  - '2'
1377
1377
  - '3'
@@ -1382,7 +1382,7 @@ shi:
1382
1382
  - '8'
1383
1383
  - '9'
1384
1384
  - '10'
1385
- - :type: '@decimal'
1385
+ - :type: "@decimal"
1386
1386
  :samples:
1387
1387
  - '2.0'
1388
1388
  - '3.0'
@@ -1403,7 +1403,7 @@ shi:
1403
1403
  - :text: ''
1404
1404
  :name: :other
1405
1405
  :samples:
1406
- - :type: '@integer'
1406
+ - :type: "@integer"
1407
1407
  :samples:
1408
1408
  - '11'
1409
1409
  - '12'
@@ -1426,7 +1426,7 @@ shi:
1426
1426
  - '10000'
1427
1427
  - '100000'
1428
1428
  - '1000000'
1429
- - :type: '@decimal'
1429
+ - :type: "@decimal"
1430
1430
  :samples:
1431
1431
  - '1.1'
1432
1432
  - '1.2'
@@ -1454,13 +1454,13 @@ mo/ro:
1454
1454
  - :text: i = 1 and v = 0
1455
1455
  :name: :one
1456
1456
  :samples:
1457
- - :type: '@integer'
1457
+ - :type: "@integer"
1458
1458
  :samples:
1459
1459
  - '1'
1460
1460
  - :text: v != 0 or n = 0 or n != 1 and n % 100 = 1..19
1461
1461
  :name: :few
1462
1462
  :samples:
1463
- - :type: '@integer'
1463
+ - :type: "@integer"
1464
1464
  :samples:
1465
1465
  - '0'
1466
1466
  - '2'
@@ -1480,7 +1480,7 @@ mo/ro:
1480
1480
  - '16'
1481
1481
  - '101'
1482
1482
  - '1001'
1483
- - :type: '@decimal'
1483
+ - :type: "@decimal"
1484
1484
  :samples:
1485
1485
  - '0.0'
1486
1486
  - '0.1'
@@ -1507,7 +1507,7 @@ mo/ro:
1507
1507
  - :text: ''
1508
1508
  :name: :other
1509
1509
  :samples:
1510
- - :type: '@integer'
1510
+ - :type: "@integer"
1511
1511
  :samples:
1512
1512
  - '20'
1513
1513
  - '21'
@@ -1534,7 +1534,7 @@ bs/hr/sh/sr:
1534
1534
  - :text: v = 0 and i % 10 = 1 and i % 100 != 11 or f % 10 = 1 and f % 100 != 11
1535
1535
  :name: :one
1536
1536
  :samples:
1537
- - :type: '@integer'
1537
+ - :type: "@integer"
1538
1538
  :samples:
1539
1539
  - '1'
1540
1540
  - '21'
@@ -1546,7 +1546,7 @@ bs/hr/sh/sr:
1546
1546
  - '81'
1547
1547
  - '101'
1548
1548
  - '1001'
1549
- - :type: '@decimal'
1549
+ - :type: "@decimal"
1550
1550
  :samples:
1551
1551
  - '0.1'
1552
1552
  - '1.1'
@@ -1563,7 +1563,7 @@ bs/hr/sh/sr:
1563
1563
  != 12..14
1564
1564
  :name: :few
1565
1565
  :samples:
1566
- - :type: '@integer'
1566
+ - :type: "@integer"
1567
1567
  :samples:
1568
1568
  - '2'
1569
1569
  - '3'
@@ -1583,7 +1583,7 @@ bs/hr/sh/sr:
1583
1583
  - '62'
1584
1584
  - '102'
1585
1585
  - '1002'
1586
- - :type: '@decimal'
1586
+ - :type: "@decimal"
1587
1587
  :samples:
1588
1588
  - '0.2'
1589
1589
  - '0.3'
@@ -1607,7 +1607,7 @@ bs/hr/sh/sr:
1607
1607
  - :text: ''
1608
1608
  :name: :other
1609
1609
  :samples:
1610
- - :type: '@integer'
1610
+ - :type: "@integer"
1611
1611
  :samples:
1612
1612
  - '0'
1613
1613
  - '5'
@@ -1630,7 +1630,7 @@ bs/hr/sh/sr:
1630
1630
  - '10000'
1631
1631
  - '100000'
1632
1632
  - '1000000'
1633
- - :type: '@decimal'
1633
+ - :type: "@decimal"
1634
1634
  :samples:
1635
1635
  - '0.0'
1636
1636
  - '0.5'
@@ -1658,11 +1658,11 @@ gd:
1658
1658
  - :text: n = 1,11
1659
1659
  :name: :one
1660
1660
  :samples:
1661
- - :type: '@integer'
1661
+ - :type: "@integer"
1662
1662
  :samples:
1663
1663
  - '1'
1664
1664
  - '11'
1665
- - :type: '@decimal'
1665
+ - :type: "@decimal"
1666
1666
  :samples:
1667
1667
  - '1.0'
1668
1668
  - '11.0'
@@ -1674,11 +1674,11 @@ gd:
1674
1674
  - :text: n = 2,12
1675
1675
  :name: :two
1676
1676
  :samples:
1677
- - :type: '@integer'
1677
+ - :type: "@integer"
1678
1678
  :samples:
1679
1679
  - '2'
1680
1680
  - '12'
1681
- - :type: '@decimal'
1681
+ - :type: "@decimal"
1682
1682
  :samples:
1683
1683
  - '2.0'
1684
1684
  - '12.0'
@@ -1690,7 +1690,7 @@ gd:
1690
1690
  - :text: n = 3..10,13..19
1691
1691
  :name: :few
1692
1692
  :samples:
1693
- - :type: '@integer'
1693
+ - :type: "@integer"
1694
1694
  :samples:
1695
1695
  - '3'
1696
1696
  - '4'
@@ -1707,7 +1707,7 @@ gd:
1707
1707
  - '17'
1708
1708
  - '18'
1709
1709
  - '19'
1710
- - :type: '@decimal'
1710
+ - :type: "@decimal"
1711
1711
  :samples:
1712
1712
  - '3.0'
1713
1713
  - '4.0'
@@ -1728,7 +1728,7 @@ gd:
1728
1728
  - :text: ''
1729
1729
  :name: :other
1730
1730
  :samples:
1731
- - :type: '@integer'
1731
+ - :type: "@integer"
1732
1732
  :samples:
1733
1733
  - '0'
1734
1734
  - '20'
@@ -1751,7 +1751,7 @@ gd:
1751
1751
  - '10000'
1752
1752
  - '100000'
1753
1753
  - '1000000'
1754
- - :type: '@decimal'
1754
+ - :type: "@decimal"
1755
1755
  :samples:
1756
1756
  - '0.0'
1757
1757
  - '0.1'
@@ -1779,7 +1779,7 @@ sl:
1779
1779
  - :text: v = 0 and i % 100 = 1
1780
1780
  :name: :one
1781
1781
  :samples:
1782
- - :type: '@integer'
1782
+ - :type: "@integer"
1783
1783
  :samples:
1784
1784
  - '1'
1785
1785
  - '101'
@@ -1793,7 +1793,7 @@ sl:
1793
1793
  - :text: v = 0 and i % 100 = 2
1794
1794
  :name: :two
1795
1795
  :samples:
1796
- - :type: '@integer'
1796
+ - :type: "@integer"
1797
1797
  :samples:
1798
1798
  - '2'
1799
1799
  - '102'
@@ -1807,7 +1807,7 @@ sl:
1807
1807
  - :text: v = 0 and i % 100 = 3..4 or v != 0
1808
1808
  :name: :few
1809
1809
  :samples:
1810
- - :type: '@integer'
1810
+ - :type: "@integer"
1811
1811
  :samples:
1812
1812
  - '3'
1813
1813
  - '4'
@@ -1826,7 +1826,7 @@ sl:
1826
1826
  - '703'
1827
1827
  - '704'
1828
1828
  - '1003'
1829
- - :type: '@decimal'
1829
+ - :type: "@decimal"
1830
1830
  :samples:
1831
1831
  - '0.0'
1832
1832
  - '0.1'
@@ -1853,7 +1853,7 @@ sl:
1853
1853
  - :text: ''
1854
1854
  :name: :other
1855
1855
  :samples:
1856
- - :type: '@integer'
1856
+ - :type: "@integer"
1857
1857
  :samples:
1858
1858
  - '0'
1859
1859
  - '5'
@@ -1880,7 +1880,7 @@ dsb/hsb:
1880
1880
  - :text: v = 0 and i % 100 = 1 or f % 100 = 1
1881
1881
  :name: :one
1882
1882
  :samples:
1883
- - :type: '@integer'
1883
+ - :type: "@integer"
1884
1884
  :samples:
1885
1885
  - '1'
1886
1886
  - '101'
@@ -1891,7 +1891,7 @@ dsb/hsb:
1891
1891
  - '601'
1892
1892
  - '701'
1893
1893
  - '1001'
1894
- - :type: '@decimal'
1894
+ - :type: "@decimal"
1895
1895
  :samples:
1896
1896
  - '0.1'
1897
1897
  - '1.1'
@@ -1907,7 +1907,7 @@ dsb/hsb:
1907
1907
  - :text: v = 0 and i % 100 = 2 or f % 100 = 2
1908
1908
  :name: :two
1909
1909
  :samples:
1910
- - :type: '@integer'
1910
+ - :type: "@integer"
1911
1911
  :samples:
1912
1912
  - '2'
1913
1913
  - '102'
@@ -1918,7 +1918,7 @@ dsb/hsb:
1918
1918
  - '602'
1919
1919
  - '702'
1920
1920
  - '1002'
1921
- - :type: '@decimal'
1921
+ - :type: "@decimal"
1922
1922
  :samples:
1923
1923
  - '0.2'
1924
1924
  - '1.2'
@@ -1934,7 +1934,7 @@ dsb/hsb:
1934
1934
  - :text: v = 0 and i % 100 = 3..4 or f % 100 = 3..4
1935
1935
  :name: :few
1936
1936
  :samples:
1937
- - :type: '@integer'
1937
+ - :type: "@integer"
1938
1938
  :samples:
1939
1939
  - '3'
1940
1940
  - '4'
@@ -1953,7 +1953,7 @@ dsb/hsb:
1953
1953
  - '703'
1954
1954
  - '704'
1955
1955
  - '1003'
1956
- - :type: '@decimal'
1956
+ - :type: "@decimal"
1957
1957
  :samples:
1958
1958
  - '0.3'
1959
1959
  - '0.4'
@@ -1977,7 +1977,7 @@ dsb/hsb:
1977
1977
  - :text: ''
1978
1978
  :name: :other
1979
1979
  :samples:
1980
- - :type: '@integer'
1980
+ - :type: "@integer"
1981
1981
  :samples:
1982
1982
  - '0'
1983
1983
  - '5'
@@ -2000,7 +2000,7 @@ dsb/hsb:
2000
2000
  - '10000'
2001
2001
  - '100000'
2002
2002
  - '1000000'
2003
- - :type: '@decimal'
2003
+ - :type: "@decimal"
2004
2004
  :samples:
2005
2005
  - '0.0'
2006
2006
  - '0.5'
@@ -2028,19 +2028,19 @@ he/iw:
2028
2028
  - :text: i = 1 and v = 0
2029
2029
  :name: :one
2030
2030
  :samples:
2031
- - :type: '@integer'
2031
+ - :type: "@integer"
2032
2032
  :samples:
2033
2033
  - '1'
2034
2034
  - :text: i = 2 and v = 0
2035
2035
  :name: :two
2036
2036
  :samples:
2037
- - :type: '@integer'
2037
+ - :type: "@integer"
2038
2038
  :samples:
2039
2039
  - '2'
2040
2040
  - :text: v = 0 and n != 0..10 and n % 10 = 0
2041
2041
  :name: :many
2042
2042
  :samples:
2043
- - :type: '@integer'
2043
+ - :type: "@integer"
2044
2044
  :samples:
2045
2045
  - '20'
2046
2046
  - '30'
@@ -2058,7 +2058,7 @@ he/iw:
2058
2058
  - :text: ''
2059
2059
  :name: :other
2060
2060
  :samples:
2061
- - :type: '@integer'
2061
+ - :type: "@integer"
2062
2062
  :samples:
2063
2063
  - '0'
2064
2064
  - '3'
@@ -2078,7 +2078,7 @@ he/iw:
2078
2078
  - '17'
2079
2079
  - '101'
2080
2080
  - '1001'
2081
- - :type: '@decimal'
2081
+ - :type: "@decimal"
2082
2082
  :samples:
2083
2083
  - '0.0'
2084
2084
  - '0.1'
@@ -2106,13 +2106,13 @@ cs/sk:
2106
2106
  - :text: i = 1 and v = 0
2107
2107
  :name: :one
2108
2108
  :samples:
2109
- - :type: '@integer'
2109
+ - :type: "@integer"
2110
2110
  :samples:
2111
2111
  - '1'
2112
2112
  - :text: i = 2..4 and v = 0
2113
2113
  :name: :few
2114
2114
  :samples:
2115
- - :type: '@integer'
2115
+ - :type: "@integer"
2116
2116
  :samples:
2117
2117
  - '2'
2118
2118
  - '3'
@@ -2120,7 +2120,7 @@ cs/sk:
2120
2120
  - :text: v != 0
2121
2121
  :name: :many
2122
2122
  :samples:
2123
- - :type: '@decimal'
2123
+ - :type: "@decimal"
2124
2124
  :samples:
2125
2125
  - '0.0'
2126
2126
  - '0.1'
@@ -2147,7 +2147,7 @@ cs/sk:
2147
2147
  - :text: ''
2148
2148
  :name: :other
2149
2149
  :samples:
2150
- - :type: '@integer'
2150
+ - :type: "@integer"
2151
2151
  :samples:
2152
2152
  - '0'
2153
2153
  - '5'
@@ -2174,13 +2174,13 @@ pl:
2174
2174
  - :text: i = 1 and v = 0
2175
2175
  :name: :one
2176
2176
  :samples:
2177
- - :type: '@integer'
2177
+ - :type: "@integer"
2178
2178
  :samples:
2179
2179
  - '1'
2180
2180
  - :text: v = 0 and i % 10 = 2..4 and i % 100 != 12..14
2181
2181
  :name: :few
2182
2182
  :samples:
2183
- - :type: '@integer'
2183
+ - :type: "@integer"
2184
2184
  :samples:
2185
2185
  - '2'
2186
2186
  - '3'
@@ -2204,7 +2204,7 @@ pl:
2204
2204
  i % 100 = 12..14
2205
2205
  :name: :many
2206
2206
  :samples:
2207
- - :type: '@integer'
2207
+ - :type: "@integer"
2208
2208
  :samples:
2209
2209
  - '0'
2210
2210
  - '5'
@@ -2230,7 +2230,7 @@ pl:
2230
2230
  - :text: ''
2231
2231
  :name: :other
2232
2232
  :samples:
2233
- - :type: '@decimal'
2233
+ - :type: "@decimal"
2234
2234
  :samples:
2235
2235
  - '0.0'
2236
2236
  - '0.1'
@@ -2258,7 +2258,7 @@ be:
2258
2258
  - :text: n % 10 = 1 and n % 100 != 11
2259
2259
  :name: :one
2260
2260
  :samples:
2261
- - :type: '@integer'
2261
+ - :type: "@integer"
2262
2262
  :samples:
2263
2263
  - '1'
2264
2264
  - '21'
@@ -2270,7 +2270,7 @@ be:
2270
2270
  - '81'
2271
2271
  - '101'
2272
2272
  - '1001'
2273
- - :type: '@decimal'
2273
+ - :type: "@decimal"
2274
2274
  :samples:
2275
2275
  - '1.0'
2276
2276
  - '21.0'
@@ -2285,7 +2285,7 @@ be:
2285
2285
  - :text: n % 10 = 2..4 and n % 100 != 12..14
2286
2286
  :name: :few
2287
2287
  :samples:
2288
- - :type: '@integer'
2288
+ - :type: "@integer"
2289
2289
  :samples:
2290
2290
  - '2'
2291
2291
  - '3'
@@ -2305,7 +2305,7 @@ be:
2305
2305
  - '62'
2306
2306
  - '102'
2307
2307
  - '1002'
2308
- - :type: '@decimal'
2308
+ - :type: "@decimal"
2309
2309
  :samples:
2310
2310
  - '2.0'
2311
2311
  - '3.0'
@@ -2320,7 +2320,7 @@ be:
2320
2320
  - :text: n % 10 = 0 or n % 10 = 5..9 or n % 100 = 11..14
2321
2321
  :name: :many
2322
2322
  :samples:
2323
- - :type: '@integer'
2323
+ - :type: "@integer"
2324
2324
  :samples:
2325
2325
  - '0'
2326
2326
  - '5'
@@ -2343,7 +2343,7 @@ be:
2343
2343
  - '10000'
2344
2344
  - '100000'
2345
2345
  - '1000000'
2346
- - :type: '@decimal'
2346
+ - :type: "@decimal"
2347
2347
  :samples:
2348
2348
  - '0.0'
2349
2349
  - '5.0'
@@ -2361,7 +2361,7 @@ be:
2361
2361
  - :text: ''
2362
2362
  :name: :other
2363
2363
  :samples:
2364
- - :type: '@decimal'
2364
+ - :type: "@decimal"
2365
2365
  :samples:
2366
2366
  - '0.1'
2367
2367
  - '0.2'
@@ -2386,7 +2386,7 @@ lt:
2386
2386
  - :text: n % 10 = 1 and n % 100 != 11..19
2387
2387
  :name: :one
2388
2388
  :samples:
2389
- - :type: '@integer'
2389
+ - :type: "@integer"
2390
2390
  :samples:
2391
2391
  - '1'
2392
2392
  - '21'
@@ -2398,7 +2398,7 @@ lt:
2398
2398
  - '81'
2399
2399
  - '101'
2400
2400
  - '1001'
2401
- - :type: '@decimal'
2401
+ - :type: "@decimal"
2402
2402
  :samples:
2403
2403
  - '1.0'
2404
2404
  - '21.0'
@@ -2413,7 +2413,7 @@ lt:
2413
2413
  - :text: n % 10 = 2..9 and n % 100 != 11..19
2414
2414
  :name: :few
2415
2415
  :samples:
2416
- - :type: '@integer'
2416
+ - :type: "@integer"
2417
2417
  :samples:
2418
2418
  - '2'
2419
2419
  - '3'
@@ -2433,7 +2433,7 @@ lt:
2433
2433
  - '29'
2434
2434
  - '102'
2435
2435
  - '1002'
2436
- - :type: '@decimal'
2436
+ - :type: "@decimal"
2437
2437
  :samples:
2438
2438
  - '2.0'
2439
2439
  - '3.0'
@@ -2449,7 +2449,7 @@ lt:
2449
2449
  - :text: f != 0
2450
2450
  :name: :many
2451
2451
  :samples:
2452
- - :type: '@decimal'
2452
+ - :type: "@decimal"
2453
2453
  :samples:
2454
2454
  - '0.1'
2455
2455
  - '0.2'
@@ -2473,7 +2473,7 @@ lt:
2473
2473
  - :text: ''
2474
2474
  :name: :other
2475
2475
  :samples:
2476
- - :type: '@integer'
2476
+ - :type: "@integer"
2477
2477
  :samples:
2478
2478
  - '0'
2479
2479
  - '10'
@@ -2496,7 +2496,7 @@ lt:
2496
2496
  - '10000'
2497
2497
  - '100000'
2498
2498
  - '1000000'
2499
- - :type: '@decimal'
2499
+ - :type: "@decimal"
2500
2500
  :samples:
2501
2501
  - '0.0'
2502
2502
  - '10.0'
@@ -2515,10 +2515,10 @@ mt:
2515
2515
  - :text: n = 1
2516
2516
  :name: :one
2517
2517
  :samples:
2518
- - :type: '@integer'
2518
+ - :type: "@integer"
2519
2519
  :samples:
2520
2520
  - '1'
2521
- - :type: '@decimal'
2521
+ - :type: "@decimal"
2522
2522
  :samples:
2523
2523
  - '1.0'
2524
2524
  - '1.00'
@@ -2527,7 +2527,7 @@ mt:
2527
2527
  - :text: n = 0 or n % 100 = 2..10
2528
2528
  :name: :few
2529
2529
  :samples:
2530
- - :type: '@integer'
2530
+ - :type: "@integer"
2531
2531
  :samples:
2532
2532
  - '0'
2533
2533
  - '2'
@@ -2546,7 +2546,7 @@ mt:
2546
2546
  - '106'
2547
2547
  - '107'
2548
2548
  - '1002'
2549
- - :type: '@decimal'
2549
+ - :type: "@decimal"
2550
2550
  :samples:
2551
2551
  - '0.0'
2552
2552
  - '2.0'
@@ -2562,7 +2562,7 @@ mt:
2562
2562
  - :text: n % 100 = 11..19
2563
2563
  :name: :many
2564
2564
  :samples:
2565
- - :type: '@integer'
2565
+ - :type: "@integer"
2566
2566
  :samples:
2567
2567
  - '11'
2568
2568
  - '12'
@@ -2581,7 +2581,7 @@ mt:
2581
2581
  - '116'
2582
2582
  - '117'
2583
2583
  - '1011'
2584
- - :type: '@decimal'
2584
+ - :type: "@decimal"
2585
2585
  :samples:
2586
2586
  - '11.0'
2587
2587
  - '12.0'
@@ -2596,7 +2596,7 @@ mt:
2596
2596
  - :text: ''
2597
2597
  :name: :other
2598
2598
  :samples:
2599
- - :type: '@integer'
2599
+ - :type: "@integer"
2600
2600
  :samples:
2601
2601
  - '20'
2602
2602
  - '21'
@@ -2619,7 +2619,7 @@ mt:
2619
2619
  - '10000'
2620
2620
  - '100000'
2621
2621
  - '1000000'
2622
- - :type: '@decimal'
2622
+ - :type: "@decimal"
2623
2623
  :samples:
2624
2624
  - '0.1'
2625
2625
  - '0.2'
@@ -2647,7 +2647,7 @@ ru/uk:
2647
2647
  - :text: v = 0 and i % 10 = 1 and i % 100 != 11
2648
2648
  :name: :one
2649
2649
  :samples:
2650
- - :type: '@integer'
2650
+ - :type: "@integer"
2651
2651
  :samples:
2652
2652
  - '1'
2653
2653
  - '21'
@@ -2662,7 +2662,7 @@ ru/uk:
2662
2662
  - :text: v = 0 and i % 10 = 2..4 and i % 100 != 12..14
2663
2663
  :name: :few
2664
2664
  :samples:
2665
- - :type: '@integer'
2665
+ - :type: "@integer"
2666
2666
  :samples:
2667
2667
  - '2'
2668
2668
  - '3'
@@ -2685,7 +2685,7 @@ ru/uk:
2685
2685
  - :text: v = 0 and i % 10 = 0 or v = 0 and i % 10 = 5..9 or v = 0 and i % 100 = 11..14
2686
2686
  :name: :many
2687
2687
  :samples:
2688
- - :type: '@integer'
2688
+ - :type: "@integer"
2689
2689
  :samples:
2690
2690
  - '0'
2691
2691
  - '5'
@@ -2711,7 +2711,7 @@ ru/uk:
2711
2711
  - :text: ''
2712
2712
  :name: :other
2713
2713
  :samples:
2714
- - :type: '@decimal'
2714
+ - :type: "@decimal"
2715
2715
  :samples:
2716
2716
  - '0.0'
2717
2717
  - '0.1'
@@ -2739,7 +2739,7 @@ br:
2739
2739
  - :text: n % 10 = 1 and n % 100 != 11,71,91
2740
2740
  :name: :one
2741
2741
  :samples:
2742
- - :type: '@integer'
2742
+ - :type: "@integer"
2743
2743
  :samples:
2744
2744
  - '1'
2745
2745
  - '21'
@@ -2750,7 +2750,7 @@ br:
2750
2750
  - '81'
2751
2751
  - '101'
2752
2752
  - '1001'
2753
- - :type: '@decimal'
2753
+ - :type: "@decimal"
2754
2754
  :samples:
2755
2755
  - '1.0'
2756
2756
  - '21.0'
@@ -2764,7 +2764,7 @@ br:
2764
2764
  - :text: n % 10 = 2 and n % 100 != 12,72,92
2765
2765
  :name: :two
2766
2766
  :samples:
2767
- - :type: '@integer'
2767
+ - :type: "@integer"
2768
2768
  :samples:
2769
2769
  - '2'
2770
2770
  - '22'
@@ -2775,7 +2775,7 @@ br:
2775
2775
  - '82'
2776
2776
  - '102'
2777
2777
  - '1002'
2778
- - :type: '@decimal'
2778
+ - :type: "@decimal"
2779
2779
  :samples:
2780
2780
  - '2.0'
2781
2781
  - '22.0'
@@ -2789,7 +2789,7 @@ br:
2789
2789
  - :text: n % 10 = 3..4,9 and n % 100 != 10..19,70..79,90..99
2790
2790
  :name: :few
2791
2791
  :samples:
2792
- - :type: '@integer'
2792
+ - :type: "@integer"
2793
2793
  :samples:
2794
2794
  - '3'
2795
2795
  - '4'
@@ -2805,7 +2805,7 @@ br:
2805
2805
  - '49'
2806
2806
  - '103'
2807
2807
  - '1003'
2808
- - :type: '@decimal'
2808
+ - :type: "@decimal"
2809
2809
  :samples:
2810
2810
  - '3.0'
2811
2811
  - '4.0'
@@ -2820,10 +2820,10 @@ br:
2820
2820
  - :text: n != 0 and n % 1000000 = 0
2821
2821
  :name: :many
2822
2822
  :samples:
2823
- - :type: '@integer'
2823
+ - :type: "@integer"
2824
2824
  :samples:
2825
2825
  - '1000000'
2826
- - :type: '@decimal'
2826
+ - :type: "@decimal"
2827
2827
  :samples:
2828
2828
  - '1000000.0'
2829
2829
  - '1000000.00'
@@ -2831,7 +2831,7 @@ br:
2831
2831
  - :text: ''
2832
2832
  :name: :other
2833
2833
  :samples:
2834
- - :type: '@integer'
2834
+ - :type: "@integer"
2835
2835
  :samples:
2836
2836
  - '0'
2837
2837
  - '5'
@@ -2853,7 +2853,7 @@ br:
2853
2853
  - '1000'
2854
2854
  - '10000'
2855
2855
  - '100000'
2856
- - :type: '@decimal'
2856
+ - :type: "@decimal"
2857
2857
  :samples:
2858
2858
  - '0.0'
2859
2859
  - '0.1'
@@ -2880,10 +2880,10 @@ ga:
2880
2880
  - :text: n = 1
2881
2881
  :name: :one
2882
2882
  :samples:
2883
- - :type: '@integer'
2883
+ - :type: "@integer"
2884
2884
  :samples:
2885
2885
  - '1'
2886
- - :type: '@decimal'
2886
+ - :type: "@decimal"
2887
2887
  :samples:
2888
2888
  - '1.0'
2889
2889
  - '1.00'
@@ -2892,10 +2892,10 @@ ga:
2892
2892
  - :text: n = 2
2893
2893
  :name: :two
2894
2894
  :samples:
2895
- - :type: '@integer'
2895
+ - :type: "@integer"
2896
2896
  :samples:
2897
2897
  - '2'
2898
- - :type: '@decimal'
2898
+ - :type: "@decimal"
2899
2899
  :samples:
2900
2900
  - '2.0'
2901
2901
  - '2.00'
@@ -2904,13 +2904,13 @@ ga:
2904
2904
  - :text: n = 3..6
2905
2905
  :name: :few
2906
2906
  :samples:
2907
- - :type: '@integer'
2907
+ - :type: "@integer"
2908
2908
  :samples:
2909
2909
  - '3'
2910
2910
  - '4'
2911
2911
  - '5'
2912
2912
  - '6'
2913
- - :type: '@decimal'
2913
+ - :type: "@decimal"
2914
2914
  :samples:
2915
2915
  - '3.0'
2916
2916
  - '4.0'
@@ -2931,13 +2931,13 @@ ga:
2931
2931
  - :text: n = 7..10
2932
2932
  :name: :many
2933
2933
  :samples:
2934
- - :type: '@integer'
2934
+ - :type: "@integer"
2935
2935
  :samples:
2936
2936
  - '7'
2937
2937
  - '8'
2938
2938
  - '9'
2939
2939
  - '10'
2940
- - :type: '@decimal'
2940
+ - :type: "@decimal"
2941
2941
  :samples:
2942
2942
  - '7.0'
2943
2943
  - '8.0'
@@ -2958,7 +2958,7 @@ ga:
2958
2958
  - :text: ''
2959
2959
  :name: :other
2960
2960
  :samples:
2961
- - :type: '@integer'
2961
+ - :type: "@integer"
2962
2962
  :samples:
2963
2963
  - '0'
2964
2964
  - '11'
@@ -2981,7 +2981,7 @@ ga:
2981
2981
  - '10000'
2982
2982
  - '100000'
2983
2983
  - '1000000'
2984
- - :type: '@decimal'
2984
+ - :type: "@decimal"
2985
2985
  :samples:
2986
2986
  - '0.0'
2987
2987
  - '0.1'
@@ -3009,7 +3009,7 @@ gv:
3009
3009
  - :text: v = 0 and i % 10 = 1
3010
3010
  :name: :one
3011
3011
  :samples:
3012
- - :type: '@integer'
3012
+ - :type: "@integer"
3013
3013
  :samples:
3014
3014
  - '1'
3015
3015
  - '11'
@@ -3024,7 +3024,7 @@ gv:
3024
3024
  - :text: v = 0 and i % 10 = 2
3025
3025
  :name: :two
3026
3026
  :samples:
3027
- - :type: '@integer'
3027
+ - :type: "@integer"
3028
3028
  :samples:
3029
3029
  - '2'
3030
3030
  - '12'
@@ -3039,7 +3039,7 @@ gv:
3039
3039
  - :text: v = 0 and i % 100 = 0,20,40,60,80
3040
3040
  :name: :few
3041
3041
  :samples:
3042
- - :type: '@integer'
3042
+ - :type: "@integer"
3043
3043
  :samples:
3044
3044
  - '0'
3045
3045
  - '20'
@@ -3056,7 +3056,7 @@ gv:
3056
3056
  - :text: v != 0
3057
3057
  :name: :many
3058
3058
  :samples:
3059
- - :type: '@decimal'
3059
+ - :type: "@decimal"
3060
3060
  :samples:
3061
3061
  - '0.0'
3062
3062
  - '0.1'
@@ -3083,7 +3083,7 @@ gv:
3083
3083
  - :text: ''
3084
3084
  :name: :other
3085
3085
  :samples:
3086
- - :type: '@integer'
3086
+ - :type: "@integer"
3087
3087
  :samples:
3088
3088
  - '3'
3089
3089
  - '4'
@@ -3107,10 +3107,10 @@ ar:
3107
3107
  - :text: n = 0
3108
3108
  :name: :zero
3109
3109
  :samples:
3110
- - :type: '@integer'
3110
+ - :type: "@integer"
3111
3111
  :samples:
3112
3112
  - '0'
3113
- - :type: '@decimal'
3113
+ - :type: "@decimal"
3114
3114
  :samples:
3115
3115
  - '0.0'
3116
3116
  - '0.00'
@@ -3119,10 +3119,10 @@ ar:
3119
3119
  - :text: n = 1
3120
3120
  :name: :one
3121
3121
  :samples:
3122
- - :type: '@integer'
3122
+ - :type: "@integer"
3123
3123
  :samples:
3124
3124
  - '1'
3125
- - :type: '@decimal'
3125
+ - :type: "@decimal"
3126
3126
  :samples:
3127
3127
  - '1.0'
3128
3128
  - '1.00'
@@ -3131,10 +3131,10 @@ ar:
3131
3131
  - :text: n = 2
3132
3132
  :name: :two
3133
3133
  :samples:
3134
- - :type: '@integer'
3134
+ - :type: "@integer"
3135
3135
  :samples:
3136
3136
  - '2'
3137
- - :type: '@decimal'
3137
+ - :type: "@decimal"
3138
3138
  :samples:
3139
3139
  - '2.0'
3140
3140
  - '2.00'
@@ -3143,7 +3143,7 @@ ar:
3143
3143
  - :text: n % 100 = 3..10
3144
3144
  :name: :few
3145
3145
  :samples:
3146
- - :type: '@integer'
3146
+ - :type: "@integer"
3147
3147
  :samples:
3148
3148
  - '3'
3149
3149
  - '4'
@@ -3162,7 +3162,7 @@ ar:
3162
3162
  - '109'
3163
3163
  - '110'
3164
3164
  - '1003'
3165
- - :type: '@decimal'
3165
+ - :type: "@decimal"
3166
3166
  :samples:
3167
3167
  - '3.0'
3168
3168
  - '4.0'
@@ -3177,7 +3177,7 @@ ar:
3177
3177
  - :text: n % 100 = 11..99
3178
3178
  :name: :many
3179
3179
  :samples:
3180
- - :type: '@integer'
3180
+ - :type: "@integer"
3181
3181
  :samples:
3182
3182
  - '11'
3183
3183
  - '12'
@@ -3197,7 +3197,7 @@ ar:
3197
3197
  - '26'
3198
3198
  - '111'
3199
3199
  - '1011'
3200
- - :type: '@decimal'
3200
+ - :type: "@decimal"
3201
3201
  :samples:
3202
3202
  - '11.0'
3203
3203
  - '12.0'
@@ -3212,7 +3212,7 @@ ar:
3212
3212
  - :text: ''
3213
3213
  :name: :other
3214
3214
  :samples:
3215
- - :type: '@integer'
3215
+ - :type: "@integer"
3216
3216
  :samples:
3217
3217
  - '100'
3218
3218
  - '101'
@@ -3234,7 +3234,7 @@ ar:
3234
3234
  - '10000'
3235
3235
  - '100000'
3236
3236
  - '1000000'
3237
- - :type: '@decimal'
3237
+ - :type: "@decimal"
3238
3238
  :samples:
3239
3239
  - '0.1'
3240
3240
  - '0.2'
@@ -3262,10 +3262,10 @@ cy:
3262
3262
  - :text: n = 0
3263
3263
  :name: :zero
3264
3264
  :samples:
3265
- - :type: '@integer'
3265
+ - :type: "@integer"
3266
3266
  :samples:
3267
3267
  - '0'
3268
- - :type: '@decimal'
3268
+ - :type: "@decimal"
3269
3269
  :samples:
3270
3270
  - '0.0'
3271
3271
  - '0.00'
@@ -3274,10 +3274,10 @@ cy:
3274
3274
  - :text: n = 1
3275
3275
  :name: :one
3276
3276
  :samples:
3277
- - :type: '@integer'
3277
+ - :type: "@integer"
3278
3278
  :samples:
3279
3279
  - '1'
3280
- - :type: '@decimal'
3280
+ - :type: "@decimal"
3281
3281
  :samples:
3282
3282
  - '1.0'
3283
3283
  - '1.00'
@@ -3286,10 +3286,10 @@ cy:
3286
3286
  - :text: n = 2
3287
3287
  :name: :two
3288
3288
  :samples:
3289
- - :type: '@integer'
3289
+ - :type: "@integer"
3290
3290
  :samples:
3291
3291
  - '2'
3292
- - :type: '@decimal'
3292
+ - :type: "@decimal"
3293
3293
  :samples:
3294
3294
  - '2.0'
3295
3295
  - '2.00'
@@ -3298,10 +3298,10 @@ cy:
3298
3298
  - :text: n = 3
3299
3299
  :name: :few
3300
3300
  :samples:
3301
- - :type: '@integer'
3301
+ - :type: "@integer"
3302
3302
  :samples:
3303
3303
  - '3'
3304
- - :type: '@decimal'
3304
+ - :type: "@decimal"
3305
3305
  :samples:
3306
3306
  - '3.0'
3307
3307
  - '3.00'
@@ -3310,10 +3310,10 @@ cy:
3310
3310
  - :text: n = 6
3311
3311
  :name: :many
3312
3312
  :samples:
3313
- - :type: '@integer'
3313
+ - :type: "@integer"
3314
3314
  :samples:
3315
3315
  - '6'
3316
- - :type: '@decimal'
3316
+ - :type: "@decimal"
3317
3317
  :samples:
3318
3318
  - '6.0'
3319
3319
  - '6.00'
@@ -3322,7 +3322,7 @@ cy:
3322
3322
  - :text: ''
3323
3323
  :name: :other
3324
3324
  :samples:
3325
- - :type: '@integer'
3325
+ - :type: "@integer"
3326
3326
  :samples:
3327
3327
  - '4'
3328
3328
  - '5'
@@ -3345,7 +3345,7 @@ cy:
3345
3345
  - '10000'
3346
3346
  - '100000'
3347
3347
  - '1000000'
3348
- - :type: '@decimal'
3348
+ - :type: "@decimal"
3349
3349
  :samples:
3350
3350
  - '0.1'
3351
3351
  - '0.2'