Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pt] Fix ACENTUAÇÃO_VOGAL_ÊNCLISE #10477

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -834,13 +834,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
<!-- p-goulart@2024-03-27 - DESC: this rule technically matches correct forms such as "canta-la", but they're rare enough in pt-BR that we can be certain "cantá-la" is meant -->
<pattern>
<marker>
<token postag='VMIP2S0:PP3..A00' postag_regexp='yes' regexp="yes">.+-l[oa]s?</token>
<token postag='VMIP2S0:PP3..A00' postag_regexp='yes' regexp="yes">.+[aeo]-l[oa]s?</token>
</marker>
</pattern>
<message>Possível erro de acentuação.</message>
<suggestion><match no="1" postag="VMIP2S0:(PP.+)" postag_regexp="yes" postag_replace="VMN0000:$1"/></suggestion>
<example correction="escrevê-lo">Ele vai <marker>escreve-lo</marker> amanhã.</example>
<example correction="puxá-las">O ímpeto de <marker>puxa-las</marker>.</example>
<example>Quero revê-la.</example>
</rule>


Expand Down