https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90120

            Bug ID: 90120
           Summary: inconsistent punctuation in translation messages
           Product: gcc
           Version: 9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: translation
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roland.illig at gmx dot de
  Target Milestone: ---

From arc.c:

      error ("Option %s=%s is not available for %s CPU.",       \
             DOC0, DOC1, arc_selected_cpu->name);               \

      warning (0, "Option %s is ignored, the default value %s"  \
               " is considered for %s CPU.", DOC0, DOC1,        \
               arc_selected_cpu->name);                         \

      error ("Option %s is not available for %s CPU",           \
             DOC, arc_selected_cpu->name);                      \

      warning (0, "Unset option %s is ignored, it is always"    \
               " enabled for %s CPU.", DOC,                     \

The second error does not end in a period. All these diagnostics should use
consistent grammar since they all are full sentences.

Reply via email to