Changeset 198 for trunk


Ignore:
Timestamp:
Aug 23, 2018, 3:38:32 PM (6 years ago)
Author:
chronos
Message:
  • Added: Configurable case sensitivity for comparison in Document check.
  • Modified: Show Document check report as ListView. Show message type in separate column.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormCheck.lfm

    r192 r198  
    3434    object GroupBox1: TGroupBox
    3535      Left = 11
    36       Height = 284
     36      Height = 217
    3737      Top = 199
    3838      Width = 206
    3939      Anchors = [akTop, akLeft, akRight]
    4040      Caption = 'Summary section'
    41       ClientHeight = 259
     41      ClientHeight = 192
    4242      ClientWidth = 202
    4343      TabOrder = 1
     
    128128      OnClick = ButtonLoadFromFileClick
    129129      TabOrder = 3
     130    end
     131    object CheckBoxCaseSensitive: TCheckBox
     132      Left = 11
     133      Height = 24
     134      Top = 424
     135      Width = 197
     136      Caption = 'Case sensitive comparison'
     137      TabOrder = 4
    130138    end
    131139  end
     
    151159      Top = 8
    152160      Width = 645
    153       ActivePage = TabSheetSource
     161      ActivePage = TabSheetReport
    154162      Align = alClient
    155163      BorderSpacing.Around = 8
    156       TabIndex = 0
     164      TabIndex = 1
    157165      TabOrder = 0
    158166      object TabSheetSource: TTabSheet
     
    175183        ClientHeight = 586
    176184        ClientWidth = 637
    177         object MemoReport: TMemo
    178           Left = 8
    179           Height = 568
    180           Top = 8
    181           Width = 620
     185        object ListViewReport: TListView
     186          Left = 7
     187          Height = 564
     188          Top = 13
     189          Width = 625
    182190          Anchors = [akTop, akLeft, akRight, akBottom]
     191          Columns = <         
     192            item
     193              Caption = 'Position'
     194              Width = 80
     195            end         
     196            item
     197              Caption = 'Type'
     198              Width = 100
     199            end         
     200            item
     201              Caption = 'Message'
     202              Width = 800
     203            end>
     204          OwnerData = True
     205          PopupMenu = PopupMenuReport
    183206          ReadOnly = True
    184           ScrollBars = ssAutoBoth
     207          RowSelect = True
    185208          TabOrder = 0
     209          ViewStyle = vsReport
     210          OnData = ListViewReportData
    186211        end
    187212      end
     
    194219    top = 493
    195220  end
     221  object PopupMenuReport: TPopupMenu
     222    left = 378
     223    top = 202
     224    object MenuItemGoTo: TMenuItem
     225      Caption = 'Go to location'
     226      OnClick = MenuItemGoToClick
     227    end
     228  end
    196229end
  • trunk/Forms/UFormCheck.pas

    r195 r198  
    77uses
    88  Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
    9   ExtCtrls, ComCtrls, UAcronym, URegistry, Registry, UCommon;
     9  ExtCtrls, ComCtrls, Menus, UAcronym, URegistry, Registry, UCommon, fgl;
    1010
    1111type
     12  TReportType = (rtNone, rtNote, rtWarning, rtError);
     13
     14  TReportItem = class
     15    Message: string;
     16    Position: TPoint;
     17    Kind: TReportType;
     18  end;
     19
     20  { TReportItems }
     21
     22  TReportItems = class(TFPGObjectList<TReportItem>)
     23    function AddNew(Message: string; Position: TPoint;
     24      Kind: TReportType = rtNone): TReportItem;
     25  end;
    1226
    1327  { TFormCheck }
     
    1832    ButtonAcronymsSummary: TButton;
    1933    ButtonCheck: TButton;
     34    CheckBoxCaseSensitive: TCheckBox;
    2035    EditSummaryStart: TEdit;
    2136    EditSummaryEnd: TEdit;
     
    2641    LabelAcronymCountContent: TLabel;
    2742    LabelAcronymCountSummary: TLabel;
     43    ListViewReport: TListView;
    2844    MemoDocument: TMemo;
    29     MemoReport: TMemo;
     45    MenuItemGoTo: TMenuItem;
    3046    OpenDialog1: TOpenDialog;
    3147    PageControl1: TPageControl;
    3248    Panel1: TPanel;
    3349    Panel2: TPanel;
     50    PopupMenuReport: TPopupMenu;
    3451    Splitter1: TSplitter;
    3552    TabSheetSource: TTabSheet;
     
    4360    procedure FormDestroy(Sender: TObject);
    4461    procedure FormShow(Sender: TObject);
     62    procedure ListViewReportData(Sender: TObject; Item: TListItem);
     63    procedure MenuItemGoToClick(Sender: TObject);
    4564  private
    4665    AcronymDbSummary: TAcronymDb;
     
    6180    procedure ReportDifferencies;
    6281    function WordContainsLetters(Text, Letters: string): Boolean;
     82    function StringEqual(Text1, Text2: string): Boolean;
     83    procedure ReloadReport;
    6384  public
     85    ReportItems: TReportItems;
    6486    procedure UpdateInterface;
    6587    procedure LoadConfig;
     
    7092  FormCheck: TFormCheck;
    7193
     94const
     95  ReportTypeString: array[TReportType] of string = ('', 'Note', 'Warning', 'Error');
     96
    7297
    7398implementation
     
    81106  SAcronymCountContent = 'Content acronym count:';
    82107  SAcronymCountSummary = 'Summary acronym count:';
    83   SDuplicateAcronymContent = 'Warning: Duplicate acronym %s with "%s" in document body.';
    84   SDuplicateAcronymSummary = 'Warning: Duplicate acronym %s with "%s" in acronym summary.';
    85   SMissingAcronymContent = 'Warning: Document body acronym %s with meaning "%s" missing from acronym summary.';
    86   SMissingAcronymSummary = 'Warning: Summary acronym %s with meaning "%s" missing from document body.';
    87   SAcronymContentMultipleMeanings = 'Warning: Content acronym %s has multiple meanings: %s.';
    88   SAcronymSummaryMultipleMeanings = 'Warning: Summary acronym %s has multiple meanings: %s.';
    89   SAcronymWithDifferentMeaning = 'Warning: Acronym %s has different meaning for content "%s" and for summary "%s".';
    90   SAcronymWithDifferentMeaningCount = 'Warning: Acronym %s has different meaning count for content (%d) and for summary (%d).';
    91   SPluralAcronym = 'Note: Acronym %s is defined as plural in document body.';
    92   SPluralAcronymUsed = 'Note: Acronym %s is used as plural in document body.';
     108  SDuplicateAcronymContent = 'Duplicate acronym %s with "%s" in document body.';
     109  SDuplicateAcronymSummary = 'Duplicate acronym %s with "%s" in acronym summary.';
     110  SMissingAcronymContent = 'Document body acronym %s with meaning "%s" missing from acronym summary.';
     111  SMissingAcronymSummary = 'Summary acronym %s with meaning "%s" missing from document body.';
     112  SAcronymContentMultipleMeanings = 'Content acronym %s has multiple meanings: %s.';
     113  SAcronymSummaryMultipleMeanings = 'Summary acronym %s has multiple meanings: %s.';
     114  SAcronymWithDifferentMeaning = 'Acronym %s has different meaning for content "%s" and for summary "%s".';
     115  SAcronymWithDifferentMeaningCount = 'Acronym %s has different meaning count for content (%d) and for summary (%d).';
     116  SPluralAcronym = 'Acronym %s is defined as plural in document body.';
     117  SPluralAcronymUsed = 'Acronym %s is used as plural in document body.';
    93118  SSummaryAcronyms = 'Summary acronyms';
    94119  SContentAcronyms = 'Content acronyms';
     
    98123  MinAcronymLength = 2;
    99124
     125{ TReportItems }
     126
     127function TReportItems.AddNew(Message: string; Position: TPoint;
     128  Kind: TReportType = rtNone): TReportItem;
     129begin
     130  Result := TReportItem.Create;
     131  Result.Message := Message;
     132  Result.Position := Position;
     133  Result.Kind := Kind;
     134  Add(Result);
     135end;
     136
    100137{ TFormCheck }
    101138
    102139procedure TFormCheck.ButtonCheckClick(Sender: TObject);
    103140begin
    104   MemoReport.Lines.Clear;
     141  ReportItems.Clear;
     142  UpdateInterface;
    105143  FindInSummary;
    106144  FindInContent;
    107145  ReportDifferencies;
    108146  UpdateInterface;
     147  ReloadReport;
    109148  TabSheetReport.Show;
    110149end;
     
    132171  Core.CoolTranslator1.TranslateComponentRecursive(Self);
    133172  Core.ThemeManager.UseTheme(Self);
     173  ReportItems := TReportItems.Create;
    134174end;
    135175
    136176procedure TFormCheck.FormDestroy(Sender: TObject);
    137177begin
     178  ReportItems.Free;
    138179  AcronymDbSummary.Free;
    139180  AcronymDbContent.Free;
     
    142183procedure TFormCheck.FormShow(Sender: TObject);
    143184begin
     185  PageControl1.TabIndex := 0;
    144186  Core.PersistentForm1.Load(Self);
    145   if FileExists(LastDocumentFileName) then MemoDocument.Lines.LoadFromFile(LastDocumentFileName);
     187  if FileExists(LastDocumentFileName) then
     188    MemoDocument.Lines.LoadFromFile(LastDocumentFileName);
    146189  UpdateInterface;
     190end;
     191
     192procedure TFormCheck.ListViewReportData(Sender: TObject; Item: TListItem);
     193begin
     194  if Item.Index < ReportItems.Count then
     195    with ReportItems[Item.Index] do begin
     196      if Position <> Point(0, 0) then
     197        Item.Caption := IntToStr(Position.X) + ', ' + IntToStr(Position.Y)
     198        else Item.Caption := '';
     199      Item.Data := ReportItems[Item.Index];
     200      Item.SubItems.Add(ReportTypeString[Kind]);
     201      Item.SubItems.Add(Message);
     202    end;
     203end;
     204
     205procedure TFormCheck.MenuItemGoToClick(Sender: TObject);
     206begin
     207  if Assigned(ListViewReport.Selected) then
     208  with TReportItem(ListViewReport.Selected.Data) do
     209  if Position <> Point(0, 0) then begin
     210    MemoDocument.CaretPos := Position;
     211    TabSheetSource.Show;
     212  end;
    147213end;
    148214
     
    214280              Meaning := Trim(Copy(Line, Pos(' ', Line) + 1, Length(Line)));
    215281              if Assigned(AcronymDbSummary.SearchAcronym(Acronym, Meaning)) then
    216                 MemoReport.Lines.Add(Format(SDuplicateAcronymSummary, [Acronym, Meaning]))
     282                ReportItems.AddNew(Format(SDuplicateAcronymSummary, [Acronym, Meaning]), Point(0, I), rtWarning)
    217283                else AcronymDbSummary.AddAcronym(Acronym, Meaning);
    218284            end;
     
    295361          AllowedSideChar(AcronymCharBefore, AcronymCharAfter) then begin
    296362            // If plural acronym then try to remove ending 's' character from the meaning
    297             if Plural then MemoReport.Lines.Add(Format(SPluralAcronymUsed, [Acronym]));
     363            if Plural then ReportItems.AddNew(Format(SPluralAcronymUsed, [Acronym]), Point(0, 0), rtNote);
    298364
    299365            Acro := AcronymDbContent.Acronyms.SearchByName(Acronym);
    300366            if not Assigned(Acro) then begin
    301               MemoReport.Lines.Add(Format(SAcronymUsedBeforeDefined, [Acronym]));
     367              ReportItems.AddNew(Format(SAcronymUsedBeforeDefined, [Acronym]), Point(0, 0), rtNote);
    302368              AcronymDbContent.AddAcronym(Acronym, '');
    303369            end;
     
    323389          if HasMeaning1 or HasMeaning2 then begin
    324390            // If plural acronym then try to remove ending 's' character from the meaning
    325             if Plural then MemoReport.Lines.Add(Format(SPluralAcronym, [Acronym]));
     391            if Plural then ReportItems.AddNew(Format(SPluralAcronym, [Acronym]), Point(0, 0));
    326392            if Plural and (Length(Meaning) >= 1) and (Meaning[Length(Meaning)] = 's') then begin
    327393              Meaning := Copy(Meaning, 1, Length(Meaning) - 1);
    328394            end;
    329395            if Assigned(AcronymDbContent.SearchAcronym(Acronym, Meaning)) then
    330               MemoReport.Lines.Add(Format(SDuplicateAcronymContent, [Acronym, Meaning]))
     396              ReportItems.AddNew(Format(SDuplicateAcronymContent, [Acronym, Meaning]), Point(0, 0), rtWarning)
    331397              else AcronymDbContent.AddAcronym(Acronym, Meaning);
    332398          end;
     
    511577    Acronym := TAcronym(AcronymDbContent.Acronyms[I]);
    512578    if Acronym.Meanings.Count > 1 then
    513       MemoReport.Lines.Add(Format(SAcronymContentMultipleMeanings, [Acronym.Name, Acronym.Meanings.GetNames]));
     579      ReportItems.AddNew(Format(SAcronymContentMultipleMeanings, [Acronym.Name,
     580        Acronym.Meanings.GetNames]), Point(0, 0), rtWarning);
    514581    Acronym2 := AcronymDbSummary.Acronyms.SearchByName(Acronym.Name);
    515582    if not Assigned(Acronym2) then
     
    517584      Meaning := TAcronymMeaning(Acronym.Meanings[J]);
    518585      if not Assigned(AcronymDbSummary.SearchAcronym(Acronym.Name, Meaning.Name, [sfCaseInsensitive])) then
    519         MemoReport.Lines.Add(Format(SMissingAcronymContent, [Acronym.Name, Meaning.Name]));
     586        ReportItems.AddNew(Format(SMissingAcronymContent, [Acronym.Name, Meaning.Name]), Point(0, 0), rtWarning);
    520587    end;
    521588  end;
     
    525592    Acronym := TAcronym(AcronymDbSummary.Acronyms[I]);
    526593    if Acronym.Meanings.Count > 1 then
    527       MemoReport.Lines.Add(Format(SAcronymSummaryMultipleMeanings, [Acronym.Name, Acronym.Meanings.GetNames]));
     594      ReportItems.AddNew(Format(SAcronymSummaryMultipleMeanings, [Acronym.Name, Acronym.Meanings.GetNames]), Point(0, 0), rtWarning);
    528595    Acronym2 := AcronymDbContent.Acronyms.SearchByName(Acronym.Name);
    529596    if not Assigned(Acronym2) then
     
    531598      Meaning := TAcronymMeaning(Acronym.Meanings[J]);
    532599      if not Assigned(AcronymDbContent.SearchAcronym(Acronym.Name, Meaning.Name, [sfCaseInsensitive])) then
    533         MemoReport.Lines.Add(Format(SMissingAcronymSummary, [Acronym.Name, Meaning.Name]));
     600        ReportItems.AddNew(Format(SMissingAcronymSummary, [Acronym.Name, Meaning.Name]), Point(0, 0), rtWarning);
    534601    end;
    535602  end;
     
    543610        Meaning := TAcronymMeaning(Acronym.Meanings[0]);
    544611        Meaning2 := TAcronymMeaning(Acronym2.Meanings[0]);
    545         if Meaning.Name <> Meaning2.Name then
    546           MemoReport.Lines.Add(Format(SAcronymWithDifferentMeaning, [Acronym.Name, Meaning.Name, Meaning2.Name]));
     612        if not StringEqual(Meaning.Name, Meaning2.Name) then
     613          ReportItems.AddNew(Format(SAcronymWithDifferentMeaning, [Acronym.Name, Meaning2.Name, Meaning.Name]), Point(0, 0), rtWarning);
    547614      end else
    548         MemoReport.Lines.Add(Format(SAcronymWithDifferentMeaningCount, [Acronym.Name, Acronym.Meanings.Count, Acronym2.Meanings.Count]));
     615        ReportItems.AddNew(Format(SAcronymWithDifferentMeaningCount, [Acronym.Name, Acronym2.Meanings.Count, Acronym.Meanings.Count]), Point(0, 0), rtWarning);
    549616    end;
    550617  end;
     
    568635end;
    569636
     637function TFormCheck.StringEqual(Text1, Text2: string): Boolean;
     638begin
     639  if CheckBoxCaseSensitive.Checked then Result := Text1 = Text2
     640    else Result := LowerCase(Text1) = LowerCase(Text2);
     641end;
     642
     643procedure TFormCheck.ReloadReport;
     644begin
     645  ListViewReport.Items.Count := ReportItems.Count;
     646  ListViewReport.Refresh;
     647end;
     648
    570649procedure TFormCheck.UpdateInterface;
    571650begin
     
    582661    EditSummaryStart.Text := ReadStringWithDefault('SummaryStart', 'ACRONYMS AND ABBREVIATIONS');
    583662    EditSummaryEnd.Text := ReadStringWithDefault('SummaryEnd', 'Appendix');
    584     LastDocumentFileName := ReadStringWithDefault('LastDocumentFileName', '')
     663    LastDocumentFileName := ReadStringWithDefault('LastDocumentFileName', '');
     664    CheckBoxCaseSensitive.Checked := ReadBoolWithDefault('CaseSensitiveComparison', False);
    585665  finally
    586666    Free;
     
    597677    WriteString('SummaryEnd', EditSummaryEnd.Text);
    598678    WriteString('LastDocumentFileName', LastDocumentFileName);
     679    WriteBool('CaseSensitiveComparison', CheckBoxCaseSensitive.Checked);
    599680  finally
    600681    Free;
  • trunk/Languages/AcronymDecoder.cs.po

    r192 r198  
    3434msgctxt "tformabout.labelcontent.caption"
    3535msgid "   "
    36 msgstr "   "
     36msgstr " "
    3737
    3838#: tformacronym.acategoryadd.caption
     
    213213msgstr "Kontrolovat dokument"
    214214
     215#: tformcheck.checkboxcasesensitive.caption
     216msgid "Case sensitive comparison"
     217msgstr "Porovnání podle velikosti písmen"
     218
    215219#: tformcheck.groupbox1.caption
    216220msgid "Summary section"
     
    241245msgstr "Počet zkratek:"
    242246
     247#: tformcheck.listviewreport.columns[0].caption
     248msgid "Position"
     249msgstr "Pozice"
     250
     251#: tformcheck.listviewreport.columns[1].caption
     252msgctxt "tformcheck.listviewreport.columns[1].caption"
     253msgid "Type"
     254msgstr "Typ"
     255
     256#: tformcheck.listviewreport.columns[2].caption
     257msgctxt "tformcheck.listviewreport.columns[2].caption"
     258msgid "Message"
     259msgstr "Zpráva"
     260
     261#: tformcheck.menuitemgoto.caption
     262msgid "Go to location"
     263msgstr "Jít na umístění"
     264
    243265#: tformcheck.tabsheetreport.caption
    244266msgid "Report"
     
    918940
    919941#: uformcheck.sacronymcontentmultiplemeanings
    920 msgid "Warning: Content acronym %s has multiple meanings: %s."
    921 msgstr "Varování: Zkratka těla dokumentu %s má více významů: %s."
     942msgid "Content acronym %s has multiple meanings: %s."
     943msgstr "Zkratka těla dokumentu %s má více významů: %s."
    922944
    923945#: uformcheck.sacronymcountcontent
     
    932954
    933955#: uformcheck.sacronymsummarymultiplemeanings
    934 msgid "Warning: Summary acronym %s has multiple meanings: %s."
    935 msgstr "Varování: Zkratka přehledu dokumentu %s má více významů: %s."
     956msgid "Summary acronym %s has multiple meanings: %s."
     957msgstr "Zkratka přehledu dokumentu %s má více významů: %s."
    936958
    937959#: uformcheck.sacronymusedbeforedefined
     
    940962
    941963#: uformcheck.sacronymwithdifferentmeaning
    942 msgid "Warning: Acronym %s has different meaning for content \"%s\" and for summary \"%s\"."
    943 msgstr "Varování: Zkratka %s má odlišný význam pro tělo dokumentu \"%s\" a pro přehled \"%s\"."
     964msgid "Acronym %s has different meaning for content \"%s\" and for summary \"%s\"."
     965msgstr "Zkratka %s má odlišný význam pro tělo dokumentu \"%s\" a pro přehled \"%s\"."
    944966
    945967#: uformcheck.sacronymwithdifferentmeaningcount
    946 msgid "Warning: Acronym %s has different meaning count for content (%d) and for summary (%d)."
    947 msgstr "Varování: Zkratka %s má odlišný počet významů pro tělo dokumentu (%d) a pro přehled (%d)."
     968msgid "Acronym %s has different meaning count for content (%d) and for summary (%d)."
     969msgstr "Zkratka %s má odlišný počet významů pro tělo dokumentu (%d) a pro přehled (%d)."
    948970
    949971#: uformcheck.scontentacronyms
     
    952974
    953975#: uformcheck.sduplicateacronymcontent
    954 msgid "Warning: Duplicate acronym %s with \"%s\" in document body."
    955 msgstr "Varování: Zdvojená zkratka %s s významem \"%s\" v těle dokumentu."
     976msgid "Duplicate acronym %s with \"%s\" in document body."
     977msgstr "Zdvojená zkratka %s s významem \"%s\" v těle dokumentu."
    956978
    957979#: uformcheck.sduplicateacronymsummary
    958 msgid "Warning: Duplicate acronym %s with \"%s\" in acronym summary."
    959 msgstr "Varování: Zdvojená zkratka %s s významem \"%s\" v přehledu zkratek."
     980msgid "Duplicate acronym %s with \"%s\" in acronym summary."
     981msgstr "Zdvojená zkratka %s s významem \"%s\" v přehledu zkratek."
    960982
    961983#: uformcheck.smissingacronymcontent
    962 msgid "Warning: Document body acronym %s with meaning \"%s\" missing from acronym summary."
    963 msgstr "Varování: V zkratkách přehledu chybí zkratka těla dokumentu %s s významem \"%s\"."
     984msgid "Document body acronym %s with meaning \"%s\" missing from acronym summary."
     985msgstr "V zkratkách přehledu chybí zkratka těla dokumentu %s s významem \"%s\"."
    964986
    965987#: uformcheck.smissingacronymsummary
    966 msgid "Warning: Summary acronym %s with meaning \"%s\" missing from document body."
    967 msgstr "Varování: Ve zkratkách těla dokumentu chybí zkratka přehledu %s s významem \"%s\"."
     988msgid "Summary acronym %s with meaning \"%s\" missing from document body."
     989msgstr "Ve zkratkách těla dokumentu chybí zkratka přehledu %s s významem \"%s\"."
    968990
    969991#: uformcheck.spluralacronym
    970 msgid "Note: Acronym %s is defined as plural in document body."
    971 msgstr "Poznámka: Zkratka %s je definována v těle dokumentu v množném čísle."
     992msgid "Acronym %s is defined as plural in document body."
     993msgstr "Zkratka %s je definována v těle dokumentu v množném čísle."
    972994
    973995#: uformcheck.spluralacronymused
    974 msgid "Note: Acronym %s is used as plural in document body."
    975 msgstr "Poznámka: Zkratka %s je použita v množném čísle v těle dokumentu."
     996msgid "Acronym %s is used as plural in document body."
     997msgstr "Zkratka %s je použita v množném čísle v těle dokumentu."
    976998
    977999#: uformcheck.ssummaryacronyms
  • trunk/Languages/AcronymDecoder.po

    r192 r198  
    203203msgstr ""
    204204
     205#: tformcheck.checkboxcasesensitive.caption
     206msgid "Case sensitive comparison"
     207msgstr ""
     208
    205209#: tformcheck.groupbox1.caption
    206210msgid "Summary section"
     
    231235msgstr ""
    232236
     237#: tformcheck.listviewreport.columns[0].caption
     238msgid "Position"
     239msgstr ""
     240
     241#: tformcheck.listviewreport.columns[1].caption
     242msgctxt "tformcheck.listviewreport.columns[1].caption"
     243msgid "Type"
     244msgstr ""
     245
     246#: tformcheck.listviewreport.columns[2].caption
     247msgctxt "tformcheck.listviewreport.columns[2].caption"
     248msgid "Message"
     249msgstr ""
     250
     251#: tformcheck.menuitemgoto.caption
     252msgid "Go to location"
     253msgstr ""
     254
    233255#: tformcheck.tabsheetreport.caption
    234256msgid "Report"
     
    908930
    909931#: uformcheck.sacronymcontentmultiplemeanings
    910 msgid "Warning: Content acronym %s has multiple meanings: %s."
     932msgid "Content acronym %s has multiple meanings: %s."
    911933msgstr ""
    912934
     
    922944
    923945#: uformcheck.sacronymsummarymultiplemeanings
    924 msgid "Warning: Summary acronym %s has multiple meanings: %s."
     946msgid "Summary acronym %s has multiple meanings: %s."
    925947msgstr ""
    926948
     
    930952
    931953#: uformcheck.sacronymwithdifferentmeaning
    932 msgid "Warning: Acronym %s has different meaning for content \"%s\" and for summary \"%s\"."
     954msgid "Acronym %s has different meaning for content \"%s\" and for summary \"%s\"."
    933955msgstr ""
    934956
    935957#: uformcheck.sacronymwithdifferentmeaningcount
    936 msgid "Warning: Acronym %s has different meaning count for content (%d) and for summary (%d)."
     958msgid "Acronym %s has different meaning count for content (%d) and for summary (%d)."
    937959msgstr ""
    938960
     
    942964
    943965#: uformcheck.sduplicateacronymcontent
    944 msgid "Warning: Duplicate acronym %s with \"%s\" in document body."
     966msgid "Duplicate acronym %s with \"%s\" in document body."
    945967msgstr ""
    946968
    947969#: uformcheck.sduplicateacronymsummary
    948 msgid "Warning: Duplicate acronym %s with \"%s\" in acronym summary."
     970msgid "Duplicate acronym %s with \"%s\" in acronym summary."
    949971msgstr ""
    950972
    951973#: uformcheck.smissingacronymcontent
    952 msgid "Warning: Document body acronym %s with meaning \"%s\" missing from acronym summary."
     974msgid "Document body acronym %s with meaning \"%s\" missing from acronym summary."
    953975msgstr ""
    954976
    955977#: uformcheck.smissingacronymsummary
    956 msgid "Warning: Summary acronym %s with meaning \"%s\" missing from document body."
     978msgid "Summary acronym %s with meaning \"%s\" missing from document body."
    957979msgstr ""
    958980
    959981#: uformcheck.spluralacronym
    960 msgid "Note: Acronym %s is defined as plural in document body."
     982msgid "Acronym %s is defined as plural in document body."
    961983msgstr ""
    962984
    963985#: uformcheck.spluralacronymused
    964 msgid "Note: Acronym %s is used as plural in document body."
     986msgid "Acronym %s is used as plural in document body."
    965987msgstr ""
    966988
Note: See TracChangeset for help on using the changeset viewer.