-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathgrammar.xml
6075 lines (5917 loc) · 352 KB
/
grammar.xml
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
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="../../../../../../../../../languagetool-core/src/main/resources/org/languagetool/rules/print.xsl"
title="Pretty print" ?>
<?xml-stylesheet type="text/css" href="../../../../../../../../../languagetool-core/src/main/resources/org/languagetool/rules/rules.css"
title="Easy editing stylesheet" ?>
<!--
Romanian Grammar and Typo Rules for LanguageTool Copyright (C) 2009-2012
Ionuț Păduraru
Current status for Romanian xml rules is available at http://code.google.com/p/languagetoolro/issues
If there is an error you want LanguageTool to detect but you do not know how to do it: open an issue
there describing the error, give some examples - I'll try to fix it as soon as I can.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
-->
<!DOCTYPE rules [
<!ENTITY LunileAnului "ianuarie|februarie|martie|aprilie|mai|iunie|iulie|august|septembrie|octombrie|noiembrie|decembrie|ian|feb|mart|apr|iun|iul|aug|sept|oct|nov|dec">
<!ENTITY UnIn "[uî]n">
]>
<rules lang="ro" xsi:noNamespaceSchemaLocation="../../../../../../../../../languagetool-core/src/main/resources/org/languagetool/rules/rules.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<phrases>
<phrase id="FARA_GRAD_DE_COMPARATIE">
<token regexp="yes" inflected="yes">celebru|bestial|frigorific|perfect|rarisim|vast|optim|admirabil|superior|inferior|uriaș|imens|magnific|străvechi|teribil|metalic|bărbătesc|trunghiular|minor|enorm|plin|gol|mort|complet|întreg|principal|termogen|major|oportun|anterior|posterior|ulterior|interior|exterior|extrem|minim|maxim|suprem|ultim|asemenea|general|gigantic|petrolifer|unic|veșnic|uluitor|nemaipomenit|extraordinar|oral|desăvârșit|fantastic|formidabil|ultra|super|trăsnet|mortal|supraaglomerat|ultrasensibil|excelent|splendid|geniu|genial|calitativ|endocrin|viu</token>
</phrase>
<phrase id="LUNILE_ANULUI">
<token regexp="yes">&LunileAnului;</token>
</phrase>
</phrases>
<unification feature="gen">
<equivalence type="feminin"><token postag_regexp="yes" postag=".f..*"></token></equivalence>
<equivalence type="masculin"><token postag_regexp="yes" postag=".m..*"></token></equivalence>
<equivalence type="neutru"><token postag_regexp="yes" postag=".n..*"></token></equivalence>
<equivalence type="fara_gen"><token postag_regexp="yes" postag=".0..*"></token></equivalence>
</unification>
<unification feature="numar">
<equivalence type="singular"><token postag_regexp="yes" postag="..s.*"></token></equivalence>
<equivalence type="plural"><token postag_regexp="yes" postag="..p.*"></token></equivalence>
<equivalence type="fara_numar"><token postag_regexp="yes" postag="..0.*"></token></equivalence>
</unification>
<unification feature="persoana">
<equivalence type="intai"><token postag_regexp="yes" postag="...1.*"></token></equivalence>
<equivalence type="a_doua"><token postag_regexp="yes" postag="...2.*"></token></equivalence>
<equivalence type="a_trea"><token postag_regexp="yes" postag="...3.*"></token></equivalence>
<equivalence type="fara_persoana"><token postag_regexp="yes" postag="...0.*"></token></equivalence>
</unification>
<category id="CAT1" name="Litere inversate">
<rulegroup id="LITERE_INVERSATE_LA_UN" name="Litere inversate - la nu = la un">
<rule name="la nu - la un">
<pattern>
<token>la</token>
<marker>
<token>nu</token>
</marker>
<token postag="S(n|m)s3anc000|Dms3a0h000|N0..a0h000|A.s3an0000" postag_regexp="yes">
<exception>mai</exception>
</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>un</suggestion>?</message>
<example correction="un">La <marker>nu</marker> proiect.</example>
<example correction="un">La <marker>nu</marker> băiat.</example>
<example correction="un">La <marker>nu</marker> oarecare moment.</example>
<example correction="un">La <marker>nu</marker> anumit moment.</example>
<example correction="un">La <marker>nu</marker> oarecare moment.</example>
<example correction="un">La <marker>nu</marker> mare moment.</example>
<example>La <marker>nu</marker> mai puțin de un metru.</example>
</rule>
</rulegroup>
<rulegroup id="LITERE_INVERSATE_AL_LA" name="al + (subst acuzativ)/(subst neart) - al + (subst genitiv)/al + (subst neart)">
<rule>
<pattern case_sensitive="yes">
<marker>
<token>al</token>
<token postag_regexp="yes" postag="S(n|f)s3anc000"><exception postag="N(.*)|G(.*)|Sfs3gac000|Sns3gac000" postag_regexp="yes"/><exception regexp="yes">[A-Z,ĂÎȘȚ](.*)</exception></token>
</marker>
<token><exception>-</exception></token>
</pattern>
<message>Ați dorit să scrieți <suggestion><match no="1"/> <match no="2" postag="Sfs3gac000|Sns3gac000" postag_regexp="yes"/></suggestion> sau <suggestion>la <match no="2"></match></suggestion>?</message>
<example>Recensământ <marker>al populației</marker>.</example>
<example correction="al populației|la populație">ceea ce a fost <marker>al populație</marker> dat.</example>
<example>Mergem <marker>la piață</marker>.</example>
<example correction="al pieței|la piață">Mergem <marker>al piață</marker>.</example>
<example>Mergem <marker>la film</marker>.</example>
<example correction="al filmului|la film">Mergem <marker>al film</marker>.</example>
<example>Mergem <marker>la mai</marker> multe filme.</example>
<example>Este <marker>al mai</marker> multor filme.</example>
<example>Este <marker>al tău</marker>.</example>
<example>Este <marker>al cui</marker> se cuvine.</example>
<example>Situl oficial <marker>al Studio</marker> Pierrot.</example>
<example correction="al studioului|la studio">Situl oficial <marker>al studio</marker> Pierrot.</example>
<example>Situl oficial <marker>al Început</marker> Zilei.</example>
<example>Director și editor <marker>al site</marker>-ului de stiri.</example>
<example>Director și editor <marker>al sitului</marker> de stiri.</example>
<example>Un nivel mai scăzut <marker>al TVA</marker>-ului.</example>
</rule>
</rulegroup>
<rulegroup id="LITERE_INVERSATE_SI_CE_UNDE" name="și ce unde - și de unde">
<rule>
<pattern>
<token>și</token>
<token>ce</token>
<token>unde</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 de \3</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="și de unde">Cum <marker>și ce unde</marker> se vor obține datele.</example>
</rule>
</rulegroup>
<rulegroup id="LITERE_INVERSATE_LA_NIVEL_CE" name="la nivel ce - la nivel de">
<rule>
<pattern>
<token>la</token>
<token>nivel</token>
<marker>
<token>ce</token>
</marker>
<token postag_regexp="yes" postag="S..3anc000"></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>de</suggestion>?</message>
<example correction="de">La nivel <marker>ce</marker> nod.</example>
<example correction="de">La nivel <marker>ce</marker> carte.</example>
<example correction="de">La nivel <marker>ce</marker> cărți.</example>
</rule>
</rulegroup>
</category>
<category id="MISC" name="Diverse">
<rule id="TRECUT_IN_NEFIINTA" name="a trece în neființă">
<pattern>
<token inflected="yes">trece</token>
<token>în</token>
<token>neființă</token>
</pattern>
<message>Inadvertenţă gramaticală între verbul „a trece” şi substantivul „nefiinţă”. Puteți folosi <suggestion>\1 la cele veșnice</suggestion>, <suggestion>\1 la cele sfinte</suggestion>, <suggestion><match no="1" postag="(.*)" postag_replace="$1" postag_regexp="yes" case_conversion="preserve">pleca</match> dintre noi</suggestion>, <suggestion><match no="1" postag="(.*)" postag_replace="$1" postag_regexp="yes" case_conversion="preserve">înceta</match> din viață</suggestion> etc.</message>
<short>Formă nerecomandată.</short>
<example correction="trecuse la cele veșnice|trecuse la cele sfinte|plecase dintre noi|încetase din viață">A <marker>trecuse în neființă</marker> destul de devreme.</example>
<example correction="Trece la cele veșnice|Trece la cele sfinte|Pleacă dintre noi|Încetează din viață"><marker>Trece în neființă</marker> la vârsta de 39 de ani.</example>
<example>A trecut la cele veșnice prea devreme.</example>
</rule>
<rule id="STARE_CIVILA" name="stare civila -> stare civilă">
<pattern>
<token inflected="yes">stare</token>
<token>civila</token>
</pattern>
<message>Ați dorit să scrieți <suggestion><match no="1"/> <match no="2" case_conversion="preserve" postag_regexp="yes" postag="Afs3aa0000" postag_replace="Afs3an0000"/></suggestion>?</message>
<short>Dezacord sau diacritice lispă.</short>
<example correction="starea civilă">L-am întrebat de <marker>starea civila</marker>.</example>
<example correction="Starea Civilă">L-am trimis la <marker>Starea Civila</marker>.</example>
<example correction="STAREA CIVILĂ">L-am trimis la <marker>STAREA CIVILA</marker>.</example>
<example>L-am întrebat de starea civilă.</example>
</rule>
<rulegroup id="UN_O" name="un o">
<rule name="un o (subst. masc.)">
<pattern>
<token>un</token>
<token>o</token>
<token postag_regexp="yes" postag="Sm.*"/>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \3</suggestion></message>
<short>Posibilă greșeală.</short>
<example correction="un om">Au găsit <marker>un o om</marker> de încredere.</example>
<example>Au găsit un om de încredere.</example>
</rule>
<rule name="un o (subst. fem.)">
<pattern>
<token>un</token>
<token>o</token>
<token postag_regexp="yes" postag="Sf.*"/>
</pattern>
<message>Ați dorit să scrieți <suggestion>\2 \3</suggestion></message>
<short>Posibilă greșeală.</short>
<example correction="o serie">Au găsit <marker>un o serie</marker> de coroane.</example>
<example>Au găsit o serie de coroane.</example>
</rule>
<rule name="un o">
<pattern>
<token>un</token>
<token>o</token>
<token><exception postag_regexp="yes" postag="S(m|f).*|P.*"/></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \3</suggestion> sau <suggestion>\2 \3</suggestion></message>
<short>Posibilă greșeală.</short>
<example correction="un altă|o altă">Au găsit <marker>un o altă</marker> ordine.</example>
<example>Au găsit o altă ordine.</example>
<example>Se va folosi un O pentru om și un M pentru animal.</example>
<!-- false alarm <example>Se pronunță ca un o lung.</example> -->
</rule>
</rulegroup>
<rulegroup id="SPUS_CA_SA_L_ASTEPT" name="a spus ca să-l aștept">
<rule>
<pattern>
<token regexp="yes">a|au</token>
<token>spus</token>
<token>ca</token>
<token>să</token>
<token>-</token>
<token></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \2 \4\5\6</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="a spus să-l">El <marker>a spus ca să-l</marker> aștept.</example>
<example correction="au spus să-i">Ei <marker>au spus ca să-i</marker> aștept.</example>
</rule>
<rule>
<pattern>
<token regexp="yes">a|au</token>
<token>spus</token>
<token>ca</token>
<token>să</token>
<token regexp="yes">îl|le|l|îi</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \2 \4 \5</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="a spus să îl">El <marker>a spus ca să îl</marker> aștept.</example>
<example correction="au spus să îi">Ei <marker>au spus ca să îi</marker> aștept.</example>
</rule>
</rulegroup>
<rule id="MIAU" name="miau - mi-au">
<pattern>
<token>miau</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>mi-au</suggestion>?</message>
<example correction="mi-au">Nu <marker>miau</marker> spus tot.</example>
</rule>
<rule id="ANUL_NOU" name="Anul nou - Anul Nou">
<pattern case_sensitive="yes">
<token>Anul</token>
<token>nou</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>Anul Nou</suggestion>?</message>
<example correction="Anul Nou">L-am invitat de <marker>Anul nou</marker> la noi.</example>
</rule>
<rule id="BUNA_VESTIRE" name="Buna vestire - Buna Vestire">
<pattern case_sensitive="yes">
<token>Buna</token>
<token>vestire</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>Buna Vestire</suggestion>?</message>
<example correction="Buna Vestire">L-am invitat de <marker>Buna vestire</marker> la noi.</example>
</rule>
<rule id="CREIAM" name="creiam/creiai/creia/creiați/creiau">
<pattern>
<token regexp="yes">crei(am|ai|a|ați|au|ez|ezi|ăm|eze|ași|arăm|arăți|asem|aseși|ase|aserăm|aserăți|aseră)</token>
</pattern>
<message>Ați dorit să scrieți <suggestion><match no="1" regexp_match="(cre)i(.*)" regexp_replace="$1$2"></match></suggestion>?</message>
<example correction="cream">Eu <marker>creiam</marker> ceva.</example>
<example correction="creai">Tu <marker>creiai</marker> ceva.</example>
<example correction="crea">El/Ea <marker>creia</marker> ceva.</example>
<example correction="cream">Noi <marker>creiam</marker> ceva.</example>
<example correction="creați">Voi <marker>creiați</marker> ceva.</example>
<example correction="creaserăm">Noi <marker>creiaserăm</marker> ceva.</example>
<example correction="creau">Voi <marker>creiau</marker> ceva.</example>
</rule>
<rule id="CREEM_CREAM" name="creem - creăm">
<pattern>
<token>creem</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>creăm</suggestion>?</message>
<example correction="creăm">Acum noi <marker>creem</marker> prototipul mașinii.</example>
</rule>
<rule id="CREAZA_CREEAZA" name="crează - creează">
<pattern>
<token>crează</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>creează</suggestion>?</message>
<example correction="creează">Acum el <marker>crează</marker> prototipul mașinii.</example>
</rule>
<rule id="CREEATA_CREATA" name="creeată - creată">
<pattern>
<token>creeată</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>creată</suggestion>?</message>
<example correction="creată">Opera a fost <marker>creeată</marker> cu mult timp în urmă.</example>
<example>Opera a fost<marker>creată</marker> cu mult timp în urmă.</example>
</rule>
<rule id="CREEAT_CREAT" name="creeat - creat">
<pattern>
<token>creeat</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>creat</suggestion>?</message>
<example correction="creat">Opusul a fost <marker>creeat</marker> cu mult timp în urmă.</example>
<example>Opusul a fost<marker>creat</marker> cu mult timp în urmă.</example>
</rule>
<rule id="REFERIT_DESPRE" name="referit despre">
<pattern>
<token>referit</token>
<token>despre</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>referit la</suggestion>, <suggestion>referit la modul cum</suggestion> sau <suggestion>referit la modul în care</suggestion>?</message>
<example correction="referit la|referit la modul cum|referit la modul în care">M-am <marker>referit despre</marker> cum au jucat ei.</example>
<example>M-am <marker>referit la</marker> cum au jucat ei.</example>
</rule>
<rule id="AS_AVEA" name="as avea - aș avea (avea, vrea, dori, putea)">
<pattern>
<token>as</token>
<token regexp="yes">avea|vrea|dori|putea</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>aș \2</suggestion>?</message>
<example correction="aș dori">Nu <marker>as dori</marker> nimic altceva.</example>
</rule>
<rule id="ASA" name="asa - așa">
<pattern>
<token>asa</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>așa</suggestion>?</message>
<example correction="așa">Nu este <marker>asa</marker> cum spui.</example>
</rule>
<rule id="MAI_MULTI" name="mai multi - mai mulți">
<pattern>
<token>mai</token>
<token>multi</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 mulți</suggestion>?</message>
<example correction="mai mulți">Cei <marker>mai multi</marker> cumpărători preferă aceste produse.</example>
</rule>
<rule id="COMPETENTE_COMPETENTE" name="aptitudini și competente/competențe">
<pattern>
<token>aptitudini</token>
<token>și</token>
<token>competente</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>aptitudini și competențe</suggestion>?</message>
<example correction="aptitudini și competențe">El are multe <marker>aptitudini și competente</marker>.</example>
</rule>
<rule id="SE_POT_OFERI_SA" name="se pot oferi sa/să">
<pattern>
<token>se</token>
<token>pot</token>
<token postag="V000000f00"></token>
<marker>
<token>sa</token>
</marker>
<token postag="V0p3000cz0"></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>să</suggestion>?</message>
<example correction="să">Se pot oferi <marker>sa</marker> facă multe.</example>
</rule>
<rule id="VREA_SA_FACA_MULTE" name="sa - să. Ex: vrea sa/să facă">
<pattern>
<token postag="V0s3000iz0"></token>
<marker>
<token>sa</token>
</marker>
<token postag="V0s3000cz0"></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>să</suggestion>?</message>
<example correction="să">Vrea <marker>sa</marker> facă multe.</example>
</rule>
<rule id="VOR_SA_FACA_MULTE" name="sa - să. Ex: vor sa/să facă">
<pattern>
<token postag="V0p3000iz0"></token>
<marker>
<token>sa</token>
</marker>
<token postag="V0p3000cz0"></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>să</suggestion>?</message>
<example correction="să">Vor <marker>sa</marker> facă multe.</example>
</rule>
<rule id="MAI_ITI_ESTE" name="mai îți este...">
<pattern>
<marker>
<token>mai</token>
<token regexp="yes">îți|vă|îi|ne|le</token>
<token regexp="yes">este|era</token>
</marker>
<token postag_regexp="yes" postag="S...anc000|A....n0000"></token>
</pattern>
<message>Ați vrut să scrieți <suggestion>\2 mai \3</suggestion> \4?</message>
<short>Greșeală de exprimare</short>
<example correction="Le mai era"><marker>Mai le era</marker> cald?</example>
<example><marker>Îți mai este</marker> cald?</example>
<example correction="Îți mai este"><marker>Mai îți este</marker> foame?</example>
</rule>
<rulegroup id="DIVERSE_GRESELI" name="Diverse">
<rule name="proceduri stocate">
<pattern>
<token inflected="yes">procedură</token>
<token>stocare</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 stocate</suggestion> sau <suggestion>\1 de stocare</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="proceduri stocate|proceduri de stocare">A scris câteva <marker>proceduri stocare</marker>.</example>
<example>A scris câteva <marker>proceduri stocate</marker>.</example>
</rule>
<rule name=".. un doar un" id="UN_DOAR_UN">
<pattern>
<token></token>
<token>un</token>
<token>doar</token>
<token>un</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \3 \4</suggestion> sau <suggestion>\1 \2</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="era doar un|era un">Acolo <marker>era un doar un</marker> copil.</example>
<example>Acolo <marker>era doar un</marker> copil.</example>
</rule>
<rule name=".. o doar o" id="O_DOAR_O">
<pattern>
<token></token>
<token>o</token>
<token>doar</token>
<token>o</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 \3 \4</suggestion> sau <suggestion>\1 \2</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="era doar o|era o">Acolo <marker>era o doar o</marker> copilă.</example>
<example>Acolo <marker>era doar o</marker> copilă.</example>
</rule>
<rule id="S_A_ARE" name="s-a - sa. Ex: mama s-a are...">
<pattern>
<token>s</token>
<token>-</token>
<token>a</token>
<token postag="V.*i.." postag_regexp="yes"><exception postag_regexp="yes" postag="V.*p..|V.*f.."/></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>sa \4</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="sa este">Mama <marker>s-a este</marker> aici.</example>
<example>Mama <marker>sa are</marker> nevoie de liniste.</example>
<example>Suprafața orașului <marker>s-a mărit</marker> în semnificativ.</example>
<example>Spune-i și <marker>s-a îndrepta</marker> îndată.</example>
</rule>
<rule id="SA_DUS" name="sa - s-a. Ex: sa dus...">
<pattern>
<token>sa</token>
<token postag="V(m|n)s3000p00" postag_regexp="yes"><exception postag="G.*|Sfs3anc000" postag_regexp="yes"/></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>s-a \2</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="s-a dus">Bunicul <marker>sa dus</marker> la piata.</example>
<example>Mama <marker>sa dusă</marker> a fost.</example>
<example>Experiența <marker>sa deosebit</marker> de variată l-a ajutat mult.</example>
<example correction="s-a găsit">Acolo <marker>sa găsit</marker> Tezaurul de Guarrazar.</example>
<example correction="s-a terminat">Acest conflict <marker>sa terminat</marker> cu războiul de la Arauco</example>
<example correction="s-a realizat">Acest lucru <marker>sa realizat</marker> prin întreruperea fasciculului de lumină.</example>
<example correction="s-a apucat">El <marker>sa apucat</marker> de treabă</example>
<!-- <example>Are în structura <marker>sa țesut</marker> adipos.</example> -->
</rule>
</rulegroup>
<rule id="DINTRODATA" name="dintrodată - dintr-odată/ dintr-o dată">
<pattern>
<token>dintrodată</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>dintr-odată</suggestion> (loc. adv.) sau <suggestion>dintr-o dată</suggestion> (prop.)?</message>
<short>Greșeală de scriere</short>
<example correction="dintr-odată|dintr-o dată">A plecat <marker>dintrodată</marker>.</example>
<example>A plecat <marker>dintr-odată</marker>.</example>
</rule>
<rule id="VASAZICA" name="va să zică - vasăzică">
<pattern>
<token>va</token>
<token>să</token>
<token>zică</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>vasăzică</suggestion> (conj. adv.)?</message>
<short>Greșeală de scriere</short>
<example correction="Vasăzică"><marker>Va să zică</marker> a plecat...</example>
</rule>
<rule id="AZINOAPTE" name="azinoapte - azi-noapte">
<pattern>
<token>azinoapte</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>azi-noapte</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="azi-noapte">A venit <marker>azinoapte</marker>, pe la trei.</example>
</rule>
<rule id="DINTRADINS" name="dintradins - dintr-adins">
<pattern>
<token>dintradins</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>dintr-adins</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="dintr-adins">Sunt sigur că a făcut <marker>dintradins</marker>.</example>
</rule>
<rule id="ASUPRA_CE" name="asupra ce - asupra a ce">
<pattern>
<token>asupra</token>
<token>ce</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 a \2</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="asupra a ce">Nu sunt dubii <marker>asupra ce</marker> va face.</example>
<example correction="asupra a ce">Nu știu <marker>asupra ce</marker> elemente vrei să te oprești.</example>
</rule>
<rule id="BUNA_STARE" name="bună-stare - bunăstare">
<pattern>
<token>bună</token>
<token>-</token>
<token>stare</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>bunăstare</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="bunăstare">A arătat <marker>bună-stare</marker>.</example>
</rule>
<rule id="INTRODUCERE_PRELIMINARA" name="introducere preliminară">
<pattern>
<token inflected="yes">introducere</token>
<token inflected="yes">preliminar</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="introducere">Aș dori să fac o <marker>introducere preliminară</marker>.</example>
<example correction="introducerea">În ceea ce privește <marker>introducerea preliminară</marker> făcută de el, nu sunt de acord.</example>
</rule>
<rule id="A_IESI_AFARA" name="a ieși afară">
<pattern>
<token inflected="yes">ieși</token>
<token>afară</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1</suggestion>?</message>
<short>Greșeală de scriere</short>
<example correction="ieșind">L-am văzut <marker>ieșind afară</marker>.</example>
<example correction="ieșit">El a <marker>ieșit afară</marker>.</example>
</rule>
</category>
<category id="CAT2" name="Ghilimele">
<rule id="GHILIMELE_DUBLE_INCEPUT" name="Ghilimele duble la început de propoziție: ["] în loc de [„]">
<pattern case_sensitive="no">
<token postag="SENT_START"/>
<marker>
<token>"</token>
</marker>
</pattern>
<message>Pentru limba română se folosește simbolul <suggestion>„</suggestion>.</message>
<short>Ghilimele românești.</short>
<example correction="„"><marker>"</marker>Un test".</example>
<example>„Test”.</example>
</rule>
<rule id="GHILIMELE_DUBLE_SFARSIT" name="Ghilimele duble la sfârșit de propoziție: ["] în loc de [”]">
<pattern>
<token regexp="yes">.*(\p{L}|.)</token>
<marker>
<token postag="SENT_END" spacebefore="no">"</token>
</marker>
</pattern>
<message>Pentru limba română se folosește simbolul <suggestion>”</suggestion>.</message>
<short>Ghilimele românești.</short>
<example correction="”">"Un test<marker>"</marker></example>
<example correction="”">"Un test.<marker>"</marker></example>
<!-- this for Romanian this is not a correct sentence, the dot must be inside quotes, as above
<example correction="”">"Un test<marker>"</marker>.</example> -->
<example>„Test”</example>
</rule>
<rule id="GHILIMELE_DUBLE_INTERIOR_INCEPUT" name="Citat în citat (deschidere): [<<] în loc de «">
<pattern>
<token><</token>
<token><</token>
</pattern>
<message>Pentru limba română se folosește simbolul <suggestion>«</suggestion>.</message>
<short>Ghilimele românești.</short>
<example correction="«">Un <marker><<</marker>prim test».</example>
<example correction="«"><marker><<</marker>un alt test»</example>
<example>Un «test».</example>
</rule>
<rule id="GHILIMELE_DUBLE_INTERIOR_SFARSIT" name="Citat în citat (închidere): [>>] în loc de »">
<pattern>
<token>></token>
<token>></token>
</pattern>
<message>Pentru limba română se folosește simbolul <suggestion>»</suggestion>.</message>
<short>Ghilimele românești.</short>
<example correction="»">Un «test<marker>>></marker> oarecare.</example>
<example correction="»">„Un «test<marker>>></marker> oarecare.”</example>
<example>Un «test» oarecare.</example>
</rule>
</category>
<category id="CAT3" name="Greșeli de exprimare">
<rule id="A_DA_SFARA_IN_TARA" name="a da sfară în țară">
<pattern>
<token inflected="yes">da</token>
<token>sfoară</token>
<token>în</token>
<token/>
</pattern>
<message>Pentru sensul „a da de știre” folosiți „sfară”, nu „sfoară”: <suggestion>\1 sfară \3 \4</suggestion>.</message>
<short>Greșeală de exprimare.</short>
<example>A dat sfară în țară că va demisiona.</example>
<example correction="dea sfară în țară">A vrut să <marker>dea sfoară în țară</marker> că va nu este de aceeași părere.</example>
<example correction="dea sfară în târg">A vrut să <marker>dea sfoară în târg</marker> că va nu este de aceeași părere.</example>
</rule>
<rulegroup id="CARE__PE_CARE" name="Care/pe care">
<rule id="CARE_PE_CARE__CARTEA_CARE_TI-AM" name="(s ac art) + care ți-am + (v part)">
<pattern>
<token postag="Sf..aac000" postag_regexp="yes"></token>
<marker>
<token>care</token>
</marker>
<token regexp="yes">ți|mi|i|v</token>
<token>-</token>
<token regexp="yes">a|au|am|ai</token>
<token postag_regexp="yes" postag="V...000p00"></token>
<token>-</token>
<token>o</token>
</pattern>
<message>În acest context formularea corectă este <suggestion>pe care</suggestion>.</message>
<example correction="pe care">Cartea <marker>care</marker> ți-am dat-o.</example>
<example>S-a ivit pe cer steaua <marker>care</marker> i-a călăuzit pe cei trei.</example>
<example correction="pe care">Ea nu intră decât pe ușa <marker>care</marker> i-am deschis-o.</example>
<example>Cu puterea <marker>care</marker> mi s-a dat.</example>
<example>Generația <marker>care</marker> i-a urmat lui Mozart.</example>
</rule>
<rule id="CARE_PE_CARE__CAIETUL_CARE_L-AM" name="(s ac art) + care l-am + (v part)" default="off">
<pattern>
<token postag="S...aac000" postag_regexp="yes"></token>
<marker>
<token>care</token>
<token regexp="yes">l|i|le</token>
<token>-</token>
<token regexp="yes">am|ai|au</token>
</marker>
<token postag_regexp="yes" postag="V...000p00"></token>
</pattern>
<message>În acest context formularea corectă este <suggestion>pe care \3\4\5</suggestion>.</message>
<example correction="pe care l-am">Votul <marker>care l-am</marker> dat ieri a fost anulat</example>
<example>Votul <marker>pe care l-am</marker> dat ieri a fost anulat</example>
</rule>
<rule id="CARE_PE_CARE__CAIETUL_CARE_IL-DESCHID" name="(s ac art) + care îl + (v part)" default="off">
<pattern>
<token postag="S(m|n)..aac000" postag_regexp="yes"></token>
<marker>
<token>care</token>
<token>îl</token>
</marker>
<token postag_regexp="yes" postag="V...000iz0"><exception inflected="yes">putea</exception></token>
</pattern>
<message>Ați dorit să scrieți <suggestion>pe care \3</suggestion>.</message>
<example correction="pe care îl">Caietul <marker>care îl</marker> citesc este al meu.</example>
<example>Caietul <marker>pe care îl</marker> citesc este al meu.</example>
<example>Vehiculele care îl pot transporta nu sunt disponibile.</example>
<example>Teorema care îi poartă numele este cunosută.</example>
<example>Organizația care îl susține este foarte puternică.</example>
<!-- <example>Grupul care îl susține este foarte puternic.</example>-->
<example>Este afacerea care îi aduce cel mai mare profit.</example>
</rule>
<rule id="CARE_PE_CARE__BINELE_CARE_MI_L_AI" name="(s ac art) + care mi l-ai + (v part)">
<pattern>
<token postag="S...aac000" postag_regexp="yes"></token>
<marker>
<token>care</token>
<token regexp="yes">ni|mi|ți|i</token>
<token>l</token>
<token>-</token>
<token regexp="yes">am|au|ai|a</token>
</marker>
<token postag_regexp="yes" postag="V...000p00"></token>
</pattern>
<message>În acest context formularea corectă este <suggestion>pe care \3 \4\5\6</suggestion>.</message>
<example correction="pe care mi l-ai">Binele <marker>care mi l-ai</marker> făcut nu poate fi uitat.</example>
</rule>
</rulegroup>
<rule id="SA_VORBESTE" name="să 'vorbește'">
<pattern>
<token>să</token>
<marker>
<token postag="V0s3000iz0"><exception postag_regexp="yes" postag="V0s1000cz0|V0s2000cz0|V0s3000cz0|V0p1000cz0|V0p2000cz0|V0p3000cz0"></exception></token>
</marker>
</pattern>
<message>Dezacord. Ați dorit să scrieți <suggestion><match no="2" postag_regexp="yes" postag="V0s1000cz0|V0s2000cz0|V0s3000cz0|V0p1000cz0|V0p2000cz0|V0p3000cz0"></match></suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="vorbească|vorbesc|vorbești|vorbim|vorbiți">Să <marker>vorbește</marker> frumos.</example>
<example>Să <marker>vorbesc</marker> frumos.</example>
<example>Să <marker>vorbească</marker> frumos.</example>
<example>Să <marker>vorbim</marker> frumos.</example>
<example correction="asmut|asmută|asmuți|asmuțim|asmuțiți" reason="el dorea să asmute câinii">El dorea să <marker>asmute</marker> câinii.</example>
</rule>
<rule id="ESTE_CU_SIGURANTA" name="este cu sigurantă">
<pattern>
<token regexp="yes">e|este|era</token>
<token>cu</token>
<token inflected="yes">siguranță</token>
<token>că</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>\1 sigur că</suggestion> sau <suggestion>cu siguranță că</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="E sigur că|Cu siguranță că"><marker>E cu siguranță că</marker> va veni.</example>
<example><marker>Cu siguranță că</marker> va veni.</example>
<example><marker>Sigur că</marker> va veni.</example>
</rule>
<rule id="ESTE_BINE_CA_SA_SIGURANTA" name="este bine ca să ...">
<pattern>
<token regexp="yes">e|este</token>
<token postag="G00000p00m"></token>
<marker>
<token>ca</token>
<token>să</token>
<token postag_regexp="yes" postag="V0(.*)000cz0"></token>
</marker>
</pattern>
<message>Ați dorit să scrieți <suggestion>să \5</suggestion>?</message>
<short>Greșeală de exprimare</short>
<example correction="să pleci">E bine <marker>ca să pleci</marker> mâine.</example>
<example correction="să plecăm">E bine <marker>ca să plecăm</marker> mâine.</example>
<example correction="să plecați">E bine <marker>ca să plecați</marker> mâine.</example>
<example correction="să plece">E bine <marker>ca să plece</marker> mâine.</example>
<example correction="să contribui">Este esențial <marker>ca să contribui</marker>.</example>
<example correction="să poată">Este suficient <marker>ca să poată</marker> fi categorisită.</example>
<example correction="să existe">Este necesar <marker>ca să existe</marker> un înalt nivel de dezvolare.</example>
</rule>
<rule id="ALE_CEEA_CE" name="ale ceea ce...">
<pattern>
<token postag="Sfp3aac000"></token>
<marker>
<token>ale</token>
</marker>
<token>ceea</token>
<token>ce</token>
</pattern>
<message>Ați dorit să scrieți <suggestion>a</suggestion> ceea ce?</message>
<short>Greșeală de exprimare</short>
<example correction="a">Consecințele <marker>ale</marker> ceea ce a făcut.</example>
</rule>
<rule id="MI-AR_PLACEA" name="mi-ar plăcea">
<pattern>
<token>mi</token>
<token>-</token>
<token>ar</token>
<marker>
<token>place</token>
</marker>
</pattern>
<message>Se folosește forma de infinitiv: mi-ar <suggestion>plăcea</suggestion>.</message>
<short>Greșeală de exprimare</short>
<example correction="plăcea">Mi-ar <marker>place</marker> să vii.</example>
</rule>
<rulegroup id="SE_MERITA" name="se merită, se riscă">
<rule>
<pattern>
<token>se</token>
<token inflected="yes" regexp="yes">merita|risca</token>
</pattern>
<message>"Se \2" este greșit, formularea corectă este <suggestion>\2</suggestion></message>
<short>Greșeală de exprimare.</short>
<example correction="merită">Cred că <marker>se merită</marker> să... </example>
<example correction="meritau">Cred că <marker>se meritau</marker> făcuți... </example>
<example correction="riscă">Nu <marker>se riscă</marker> stând târziu.</example>
<example>Cred că <marker>merită</marker> să...</example>
</rule>
<rule>
<pattern>
<token>m</token>
<token>-</token>
<token>aș</token>
<token>risca</token>
</pattern>
<message>Ați vrut să scrieți <suggestion>\3 \4</suggestion></message>
<short>Greșeală de exprimare.</short>
<example correction="aș risca">Nu <marker>m-aș risca</marker>.</example>
</rule>
<rule>
<pattern>
<token>s</token>
<token>-</token>
<token>ar</token>
<token regexp="yes">risca|merita</token>
</pattern>
<message>Ați vrut să scrieți <suggestion>\3 \4</suggestion></message>
<short>Greșeală de exprimare.</short>
<example correction="ar risca">Zice că nu <marker>s-ar risca</marker>.</example>
<example correction="ar merita">Zice că nu <marker>s-ar merita</marker> să mai stăm.</example>
</rule>
<rule>
<pattern>
<token>mă</token>
<token>risc</token>
</pattern>
<message>Ați vrut să scrieți <suggestion>\2</suggestion></message>
<short>Greșeală de exprimare.</short>
<example correction="risc">Nu <marker>mă risc</marker>.</example>
</rule>
<rule>
<pattern>
<token>te</token>
<token>riști</token>
</pattern>
<message>Ați vrut să scrieți <suggestion>\2</suggestion></message>
<short>Greșeală de exprimare.</short>
<example correction="riști">Nu <marker>te riști</marker>.</example>
<example correction="Riști"><marker>Te riști</marker>?</example>
</rule>
</rulegroup>
<rulegroup id="DECAT_ATAT" name="decât atât">
<rule name="decât atât">
<pattern>
<and>
<token negate="yes">-</token>
<token negate="yes">nu</token>
</and>
<token>a</token>
<token postag="Vms3000p00"></token>
<marker>
<token>decât</token>
<token>atât</token>
</marker>
</pattern>
<message>"decât atât" este greșit, formularea corectă este <suggestion>atât</suggestion></message>
<short>"decât atât" este greșit.</short>
<example correction="atât">A făcut <marker>decât atât</marker> cât a putut.</example>
<example>A făcut atât cât a putut.</example>
<example>Nu a făcut <marker>decât atât</marker> cât a putut.</example>
<example>N-a făcut <marker>decât atât</marker> cât a putut.</example>
</rule>
</rulegroup>
<rule id="DE_PREFERABIL" name="de preferabil">
<pattern>
<token>de</token>
<token>preferabil</token>
</pattern>
<message>Ați vrut să scrieți <suggestion>preferabil</suggestion> sau <suggestion>de preferință</suggestion>.</message>
<short>Greșeală de exprimare</short>
<example>Este <marker>preferabil</marker> să vii mai devreme.</example>
<example correction="preferabil|de preferință">Este <marker>de preferabil</marker> să vii mai devreme.</example>
</rule>
</category>
<category id="CAT4" name="Greșeli gramaticale - acord substantiv">
<rule id="UN_SF_O_SF" name="un + (subst fem) - o + (subst fem)">
<pattern>
<marker>
<token>un</token>
</marker>
<token postag="Sfs3anc000"><exception postag_regexp="yes" postag="A(.*)"></exception></token>
</pattern>
<message>Pentru substantivele de gen feminin se folosește <suggestion>o</suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="O"><marker>Un</marker> masă</example>
</rule>
<rule id="ACEASTA_SF_ACEASTA_SF" name="această + (subst fem neart) - această + (subst fem art)">
<pattern>
<token>această</token>
<marker>
<token postag="Sfs3aac000"></token>
</marker>
</pattern>
<message>Folosire incorectă a substantivului feminin articulat. "Această" cere substantiv nearticulat: <suggestion><match
no="2" postag="Sfs3anc000" /></suggestion></message>
<short>"Această" cere substantiv nearticulat.</short>
<example correction="carte">Această <marker>cartea</marker> este a mea.</example>
</rule>
<rule id="SFN_ESTE_A" name="(subst fem neart) + este a - (subst fem art) + este a ">
<pattern>
<token postag="SENT_START"></token>
<marker>
<token postag="Sfs3anc000"></token>
</marker>
<token>este</token>
<token>a</token>
</pattern>
<message>Ați vrut să folosiți substantivul articulat <suggestion><match no="2" postag="Sfs3aac000"></match></suggestion></message>
<short>Greșeală gramaticală</short>
<example><marker>Cartea</marker> este a mea.</example>
<example correction="Carta|Cartea"><marker>Carte</marker> este a mea.</example>
</rule>
<!-- commented out because there's no example that actually matches
<rule id="O_SUBST_ART_TERMINAT_IN_A" name="o + (subst fem art) - o + (subst fem neart)">
<pattern>
<token><exception>-</exception></token>
<token>o</token>
<marker>
<token postag="Sfs3aac000"><exception postag_regexp="yes" postag="V0s3000iz0|V0s3000ii0|Sfs3anc000"></exception></token>
</marker>
</pattern>
<message>Folosire incorectă a substantivului feminin articulat . "o" cere substantiv nearticulat: <suggestion><match
no="3" postag="Sfs3anc000" /></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example>Evoluția pe care a avut-o <marker>regula</marker> aceasta.</example>
<example>El o <marker>ia</marker> de mână.</example>
<example>Îl înconjurau ca o <marker>manta</marker> uriașă.</example>
<example>O <marker>ruga</marker> să-i spuie ce a visat.</example>
<example>El o <marker>urma</marker> mereu.</example>
<example type="incorrect">Părea că o <marker>tabla</marker> neagră se-ntinde în față.</example>
</rule>
-->
<rule id="CEA_MAI_SUBST_ART" name="cea + mai + (subst art) - cea + mai + (subst neart)">
<pattern>
<token regexp="yes">cel|cea</token>
<token>mai</token>
<token postag_regexp="yes" postag="A(...)aa(.*)"></token>
</pattern>
<message>Folosire incorectă a adjectivului articulat. "\1 \2" cere adjectiv nearticulat: <suggestion><match no="1"
/> <match no="2"/> <match
no="3" postag_regexp="yes" postag="A(...)aa(.*)" postag_replace="A$1an$2"/></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="cea mai nouă">Această deltă este <marker>cea mai noua</marker> din lume.</example>
<example correction="cea mai bună">Aceasta este <marker>cea mai buna</marker> carte.</example>
</rule>
<rule id="CEL_MAI_SUBST_PLURAL" name="cel + mai + (subst plural) - cel + mai + (subst singular)">
<pattern>
<token>cel</token>
<token>mai</token>
<token postag_regexp="yes" postag="Amp.*"><exception postag_regexp="yes" postag="Ams.*"></exception></token>
</pattern>
<message>Folosire incorectă a adjectivului. "\1 \2" cere numărul singular: <suggestion><match no="1"
/> <match no="2"/> <match
no="3" postag_regexp="yes" postag="Amp(.*)" postag_replace="Ams$1"/></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="cel mai bun">Este <marker>cel mai buni</marker> dintre toți.</example>
</rule>
<rule id="CEA_MAI_SUBST_PLURAL" name="cea + mai + (subst plural) - cea + mai + (subst singular)">
<pattern>
<token>cea</token>
<token>mai</token>
<token postag_regexp="yes" postag="Afp.*"><exception postag_regexp="yes" postag="Afs.*"/></token>
</pattern>
<message>Folosire incorectă a adjectivului. "\1 \2" cere numărul singular: <suggestion><match no="1"
/> <match no="2"/> <match
no="3" postag_regexp="yes" postag="Afp(.*)" postag_replace="Afs$1"/></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="cea mai nouă">Această deltă este <marker>cea mai noi</marker> din lume.</example>
</rule>
<rule id="CEI_MAI_SUBST_PLURAL" name="cei + mai + (subst singular) - cei + mai + (subst plural)">
<pattern>
<marker>
<token>cei</token>
<token>mai</token>
<token postag_regexp="yes" postag="Ams.*" regexp="yes">bun|remarcabil|curios<exception postag_regexp="yes" postag="Amp.*"></exception></token>
</marker>
<token negate="yes">de</token>
</pattern>
<message>Folosire incorectă a adjectivului. "\1 \2" cere numărul plural: <suggestion><match no="1"/> <match no="2"/> <match
no="3" postag_regexp="yes" postag="Ams(.*)" postag_replace="Amp$1"/></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="cei mai buni">Sunt <marker>cei mai bun</marker> dintre toți.</example>
<example correction="cei mai remarcabili">El este unul dintre <marker>cei mai remarcabil</marker> cățărători ai tuturor timpurilor.</example>
<example>Acești jucători sunt <marker>cei mai ușor</marker> de antrenat.</example>
<example>Printre cronicarii din prima categorie, <marker>cei mai frecvent</marker> citați sînt aceștia.</example>
<example>Ochii albaști sunt <marker>cei mai des</marker> întâlniți.</example>
<example>Suedezii sunt printre <marker>cei mai puțin</marker> religioși oameni.</example>
<example>Pentru <marker>cei mai puțin</marker> tehnici există TV tunerele plug and play.</example>
</rule>
<rule id="CELE_MAI_SUBST_PLURAL" name="cele + mai + (subst singular) - cele + mai + (subst plural)">
<pattern>
<token>cele</token>
<token>mai</token>
<token postag_regexp="yes" postag="Afs.*"><exception postag_regexp="yes" postag="Afp.*"></exception></token>
</pattern>
<message>Folosire incorectă a adjectivului. "\1 \2" cere numărul plural: <suggestion><match no="1"
/> <match no="2"/> <match
no="3" postag_regexp="yes" postag="Afs(.*)" postag_replace="Afp$1"/></suggestion>.</message>
<short>Greșeală gramaticală</short>
<example correction="cele mai noi">Aceste cărți sunt <marker>cele mai nouă</marker>.</example>