Changeset 19
- Timestamp:
- May 4, 2016, 12:54:09 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormAcronyms.lfm
r18 r19 1 1 object FormAcronyms: TFormAcronyms 2 Left = 4 662 Left = 424 3 3 Height = 558 4 Top = 2974 Top = 310 5 5 Width = 740 6 6 Caption = 'Acronyms' … … 28 28 Width = 300 29 29 end> 30 MultiSelect = True 30 31 OwnerData = True 32 PopupMenu = PopupMenuAcronym 31 33 ReadOnly = True 32 34 RowSelect = True … … 34 36 ViewStyle = vsReport 35 37 OnData = ListViewAcronymsData 38 OnDblClick = ListViewAcronymsDblClick 36 39 OnResize = ListViewAcronymsResize 40 OnSelectItem = ListViewAcronymsSelectItem 37 41 end 38 42 object ListViewFilter1: TListViewFilter … … 53 57 top = 168 54 58 end 59 object ActionList1: TActionList 60 Images = FormMain.ImageList1 61 left = 248 62 top = 232 63 object AAdd: TAction 64 Caption = 'Add' 65 OnExecute = AAddExecute 66 ShortCut = 45 67 end 68 object AModify: TAction 69 Caption = 'Modify' 70 OnExecute = AModifyExecute 71 ShortCut = 13 72 end 73 object ARemove: TAction 74 Caption = 'Remove' 75 OnExecute = ARemoveExecute 76 ShortCut = 46 77 end 78 object ASelectAll: TAction 79 Caption = 'Select all' 80 ShortCut = 16449 81 end 82 end 83 object PopupMenuAcronym: TPopupMenu 84 Images = FormMain.ImageList1 85 left = 248 86 top = 296 87 object MenuItem4: TMenuItem 88 Action = AAdd 89 end 90 object MenuItem5: TMenuItem 91 Action = AModify 92 end 93 object MenuItem6: TMenuItem 94 Action = ARemove 95 end 96 object MenuItem7: TMenuItem 97 Action = ASelectAll 98 end 99 end 55 100 end -
trunk/Forms/UFormAcronyms.lrt
r17 r19 3 3 TFORMACRONYMS.LISTVIEWACRONYMS.COLUMNS[1].CAPTION=Description 4 4 TFORMACRONYMS.LISTVIEWACRONYMS.COLUMNS[2].CAPTION=Categories 5 TFORMACRONYMS.AADD.CAPTION=Add 6 TFORMACRONYMS.AMODIFY.CAPTION=Modify 7 TFORMACRONYMS.AREMOVE.CAPTION=Remove 8 TFORMACRONYMS.ASELECTALL.CAPTION=Select all -
trunk/Forms/UFormAcronyms.pas
r18 r19 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ComCtrls, 9 Menus, UListViewSort, UAcronym, LazUTF8, SpecializedList;9 Menus, ActnList, UListViewSort, UAcronym, LazUTF8, SpecializedList; 10 10 11 11 type … … 14 14 15 15 TFormAcronyms = class(TForm) 16 AAdd: TAction; 17 ASelectAll: TAction; 18 AModify: TAction; 19 ARemove: TAction; 20 ActionList1: TActionList; 16 21 ListViewAcronyms: TListView; 17 22 ListViewFilter1: TListViewFilter; 18 23 ListViewSort1: TListViewSort; 24 MenuItem4: TMenuItem; 25 MenuItem5: TMenuItem; 26 MenuItem6: TMenuItem; 27 MenuItem7: TMenuItem; 28 PopupMenuAcronym: TPopupMenu; 29 procedure AAddExecute(Sender: TObject); 30 procedure AModifyExecute(Sender: TObject); 31 procedure ARemoveExecute(Sender: TObject); 32 procedure ASelectAllExecute(Sender: TObject); 19 33 procedure FormShow(Sender: TObject); 20 34 procedure ListViewAcronymsData(Sender: TObject; Item: TListItem); 35 procedure ListViewAcronymsDblClick(Sender: TObject); 21 36 procedure ListViewAcronymsResize(Sender: TObject); 37 procedure ListViewAcronymsSelectItem(Sender: TObject; Item: TListItem; 38 Selected: Boolean); 22 39 procedure ListViewFilter1Change(Sender: TObject); 23 40 function ListViewSort1CompareItem(Item1, Item2: TObject): Integer; … … 25 42 private 26 43 procedure FilterList(List: TListObject); 44 procedure UpdateAcronymsList; 27 45 public 28 { public declarations }46 procedure UpdateInterface; 29 47 end; 30 48 … … 37 55 38 56 uses 39 UFormMain; 57 UFormMain, UFormAcronym; 58 59 resourcestring 60 SRemoveAllAcronyms = 'Remove all acronyms'; 61 SRemoveAllAcronymsQuery = 'Do you want to remove all acronyms?'; 62 SRemoveAcronym = 'Remove acronym'; 63 SRemoveAcronymQuery = 'Do you want to remove selected acronym?'; 64 40 65 41 66 { TFormAcronyms } … … 52 77 end; 53 78 79 procedure TFormAcronyms.ListViewAcronymsDblClick(Sender: TObject); 80 begin 81 AModify.Execute; 82 end; 83 54 84 procedure TFormAcronyms.ListViewAcronymsResize(Sender: TObject); 55 85 begin … … 57 87 end; 58 88 89 procedure TFormAcronyms.ListViewAcronymsSelectItem(Sender: TObject; 90 Item: TListItem; Selected: Boolean); 91 begin 92 UpdateInterface; 93 end; 94 59 95 procedure TFormAcronyms.FormShow(Sender: TObject); 60 96 begin 61 97 ListViewFilter1.UpdateFromListView(ListViewAcronyms); 62 ListViewSort1.Refresh; 98 UpdateAcronymsList; 99 end; 100 101 procedure TFormAcronyms.AAddExecute(Sender: TObject); 102 var 103 TempEntry: TAcronymEntry; 104 Meaning: TAcronymMeaning; 105 I: Integer; 106 begin 107 TempEntry := TAcronymEntry.Create; 108 TempEntry.Name := ''; 109 TempEntry.Meaning := ''; 110 TempEntry.Description := ''; 111 FormAcronym.Load(TempEntry); 112 if FormAcronym.ShowModal = mrOk then begin 113 FormAcronym.Save(TempEntry); 114 Meaning := FormMain.AcronymDb.AddAcronym(TempEntry.Name, TempEntry.Meaning); 115 Meaning.Description := TempEntry.Description; 116 Meaning.Categories.AssignFromStrings(TempEntry.Categories); 117 for I := 0 to Meaning.Categories.Count - 1 do 118 TAcronymCategory(Meaning.Categories.Items[I]).AcronymMeanings.Add(Meaning); 119 UpdateAcronymsList; 120 UpdateInterface; 121 end; 122 TempEntry.Free; 123 end; 124 125 procedure TFormAcronyms.AModifyExecute(Sender: TObject); 126 var 127 TempEntry: TAcronymEntry; 128 TempCategories: TStringList; 129 Meaning: TAcronymMeaning; 130 I: Integer; 131 begin 132 if Assigned(ListViewAcronyms.Selected) then 133 with TAcronymMeaning(ListViewAcronyms.Selected.Data) do begin 134 TempEntry := TAcronymEntry.Create; 135 TempEntry.Name := Acronym.Name; 136 TempEntry.Meaning := Name; 137 TempEntry.Description := Description; 138 Categories.AssignToStrings(TempEntry.Categories); 139 TempCategories := TStringList.Create; 140 TempCategories.Assign(TempEntry.Categories); 141 FormAcronym.Load(TempEntry); 142 if FormAcronym.ShowModal = mrOk then begin 143 FormAcronym.Save(TempEntry); 144 if (TempEntry.Name <> Acronym.Name) or 145 (TempEntry.Meaning <> Name) or 146 (TempEntry.Description <> Description) or 147 not FormMain.CompareStrings(TempEntry.Categories, TempCategories) then begin 148 // TODO: Update item inplace if possible 149 FormMain.AcronymDb.RemoveAcronym(Acronym.Name, Name); 150 Meaning := FormMain.AcronymDb.AddAcronym(TempEntry.Name, TempEntry.Meaning); 151 Meaning.Description := TempEntry.Description; 152 Meaning.Categories.AssignFromStrings(TempEntry.Categories); 153 for I := 0 to Meaning.Categories.Count - 1 do 154 TAcronymCategory(Meaning.Categories.Items[I]).AcronymMeanings.Add(Meaning); 155 UpdateAcronymsList; 156 UpdateInterface; 157 end; 158 end; 159 TempEntry.Free; 160 TempCategories.Free; 161 end; 162 end; 163 164 procedure TFormAcronyms.ARemoveExecute(Sender: TObject); 165 var 166 I: Integer; 167 begin 168 if Assigned(ListViewAcronyms.Selected) then begin 169 if MessageDlg(SRemoveAcronym, SRemoveAcronymQuery, 170 TMsgDlgType.mtConfirmation, [mbCancel, mbOk], 0) = mrOk then begin 171 for I := ListViewAcronyms.Items.Count - 1 downto 0 do 172 if ListViewAcronyms.Items[I].Selected then begin 173 ListViewAcronyms.Items[I].Selected := False; 174 FormMain.AcronymDb.RemoveAcronym( 175 TAcronymMeaning(ListViewAcronyms.Items[I].Data).Acronym.Name, 176 TAcronymMeaning(ListViewAcronyms.Items[I].Data).Name); 177 end; 178 UpdateAcronymsList; 179 UpdateInterface; 180 end; 181 end; 182 end; 183 184 procedure TFormAcronyms.ASelectAllExecute(Sender: TObject); 185 var 186 I: Integer; 187 begin 188 for I := 0 to ListViewAcronyms.Items.Count - 1 do 189 ListViewAcronyms.Items[I].Selected := True; 63 190 end; 64 191 65 192 procedure TFormAcronyms.ListViewFilter1Change(Sender: TObject); 66 193 begin 67 ListViewSort1.Refresh;194 UpdateAcronymsList; 68 195 end; 69 196 … … 118 245 end; 119 246 247 procedure TFormAcronyms.UpdateAcronymsList; 248 begin 249 ListViewSort1.Refresh; 250 UpdateInterface; 251 end; 252 253 procedure TFormAcronyms.UpdateInterface; 254 begin 255 ARemove.Enabled := Assigned(FormMain.AcronymDb) and Assigned(ListViewAcronyms.Selected); 256 AModify.Enabled := Assigned(FormMain.AcronymDb) and Assigned(ListViewAcronyms.Selected); 257 AAdd.Enabled := Assigned(FormMain.AcronymDb); 258 end; 259 120 260 end. 121 261 -
trunk/Forms/UFormCategories.lfm
r14 r19 8 8 ClientWidth = 784 9 9 OnShow = FormShow 10 LCLVersion = '1. 7'10 LCLVersion = '1.6.0.4' 11 11 object ListViewCategories: TListView 12 12 Left = 16 … … 58 58 end 59 59 object ActionList1: TActionList 60 Images = FormMain.ImageList1 60 61 left = 380 61 62 top = 196 … … 63 64 Caption = 'Add' 64 65 OnExecute = AAddExecute 66 ShortCut = 45 65 67 end 66 68 object ARemove: TAction 67 69 Caption = 'Remove' 68 70 OnExecute = ARemoveExecute 71 ShortCut = 46 69 72 end 70 73 object AModify: TAction 71 74 Caption = 'Modify' 72 75 OnExecute = AModifyExecute 76 ShortCut = 13 73 77 end 74 78 end 75 79 object PopupMenuCategory: TPopupMenu 80 Images = FormMain.ImageList1 76 81 left = 119 77 82 top = 192 -
trunk/Forms/UFormMain.lfm
r18 r19 34 34 end> 35 35 OwnerData = True 36 PopupMenu = PopupMenuAcronym37 36 ReadOnly = True 38 37 RowSelect = True … … 40 39 ViewStyle = vsReport 41 40 OnData = ListViewAcronymsData 42 OnDblClick = ListViewAcronymsDblClick43 OnKeyPress = ListViewAcronymsKeyPress44 41 OnSelectItem = ListViewAcronymsSelectItem 45 42 end … … 4354 4351 end 4355 4352 object PopupMenuTryIcon: TPopupMenu 4353 Images = ImageList1 4356 4354 left = 80 4357 4355 top = 208 … … 4371 4369 end 4372 4370 object ActionList1: TActionList 4371 Images = ImageList1 4373 4372 left = 464 4374 4373 top = 144 … … 4384 4383 Caption = 'Import' 4385 4384 OnExecute = AImportExecute 4386 end4387 object AAcronymAdd: TAction4388 Caption = 'Add'4389 OnExecute = AAcronymAddExecute4390 ShortCut = 454391 end4392 object AAcronymModify: TAction4393 Caption = 'Modify'4394 OnExecute = AAcronymModifyExecute4395 ShortCut = 134396 end4397 object AAcronymRemove: TAction4398 Caption = 'Remove'4399 OnExecute = AAcronymRemoveExecute4400 ShortCut = 464401 end4402 object AAcronymRemoveAll: TAction4403 Caption = 'Remove all'4404 OnExecute = AAcronymRemoveAllExecute4405 4385 end 4406 4386 object AFileOpen: TAction … … 4443 4423 top = 80 4444 4424 end 4445 object PopupMenuAcronym: TPopupMenu4446 left = 2644447 top = 2084448 object MenuItem4: TMenuItem4449 Action = AAcronymAdd4450 end4451 object MenuItem5: TMenuItem4452 Action = AAcronymModify4453 end4454 object MenuItem6: TMenuItem4455 Action = AAcronymRemove4456 end4457 object MenuItem7: TMenuItem4458 Action = AAcronymRemoveAll4459 end4460 end4461 4425 object MainMenu1: TMainMenu 4426 Images = ImageList1 4462 4427 left = 464 4463 4428 top = 80 … … 4536 4501 top = 208 4537 4502 end 4503 object ImageList1: TImageList 4504 left = 464 4505 top = 280 4506 end 4538 4507 end -
trunk/Forms/UFormMain.lrt
r18 r19 7 7 TFORMMAIN.ASHOW.CAPTION=Show 8 8 TFORMMAIN.AIMPORT.CAPTION=Import 9 TFORMMAIN.AACRONYMADD.CAPTION=Add10 TFORMMAIN.AACRONYMMODIFY.CAPTION=Modify11 TFORMMAIN.AACRONYMREMOVE.CAPTION=Remove12 TFORMMAIN.AACRONYMREMOVEALL.CAPTION=Remove all13 9 TFORMMAIN.AFILEOPEN.CAPTION=Open 14 10 TFORMMAIN.AFILENEW.CAPTION=New -
trunk/Forms/UFormMain.pas
r18 r19 16 16 17 17 TFormMain = class(TForm) 18 AAcronymAdd: TAction;19 AAcronymModify: TAction;20 AAcronymRemove: TAction;21 AAcronymRemoveAll: TAction;22 18 AShowAcronyms: TAction; 23 19 AShowCategories: TAction; … … 34 30 CheckBoxExactMath: TCheckBox; 35 31 CoolTranslator1: TCoolTranslator; 32 ImageList1: TImageList; 36 33 LastOpenedList1: TLastOpenedList; 37 34 ListViewAcronyms: TListView; … … 56 53 MenuItem2: TMenuItem; 57 54 MenuItem3: TMenuItem; 58 MenuItem4: TMenuItem;59 MenuItem5: TMenuItem;60 MenuItem6: TMenuItem;61 MenuItem7: TMenuItem;62 55 MenuItem8: TMenuItem; 63 56 MenuItem9: TMenuItem; 64 57 OpenDialog1: TOpenDialog; 65 58 PersistentForm1: TPersistentForm; 66 PopupMenuAcronym: TPopupMenu;67 59 PopupMenuTryIcon: TPopupMenu; 68 60 SaveDialog1: TSaveDialog; 69 61 TrayIcon1: TTrayIcon; 70 procedure AAcronymAddExecute(Sender: TObject);71 procedure AAcronymModifyExecute(Sender: TObject);72 procedure AAcronymRemoveAllExecute(Sender: TObject);73 procedure AAcronymRemoveExecute(Sender: TObject);74 62 procedure AExitExecute(Sender: TObject); 75 63 procedure AFileCloseExecute(Sender: TObject); … … 92 80 procedure LastOpenedList1Change(Sender: TObject); 93 81 procedure ListViewAcronymsData(Sender: TObject; Item: TListItem); 94 procedure ListViewAcronymsDblClick(Sender: TObject);95 procedure ListViewAcronymsKeyPress(Sender: TObject; var Key: char);96 82 procedure ListViewAcronymsSelectItem(Sender: TObject; Item: TListItem; 97 83 Selected: Boolean); … … 102 88 private 103 89 FAlwaysOnTop: Boolean; 104 function CompareStrings(Strings1, Strings2: TStrings): Boolean;105 procedure SetAlwaysOnTop(AValue: Boolean);106 private107 90 RegistryContext: TRegistryContext; 108 91 ProjectClosed: Boolean; 92 procedure SetAlwaysOnTop(AValue: Boolean); 109 93 procedure FilterList(List: TListObject); 110 94 procedure OpenRecentClick(Sender: TObject); … … 115 99 public 116 100 AcronymDb: TAcronymDb; 101 function CompareStrings(Strings1, Strings2: TStrings): Boolean; 117 102 property AlwaysOnTop: Boolean read FAlwaysOnTop write SetAlwaysOnTop; 118 103 end; … … 132 117 SAppExit = 'Application exit'; 133 118 SAppExitQuery = 'Acronyms were modified. Do you want to save them to file before exit?'; 134 SRemoveAllAcronyms = 'Remove all acronyms';135 SRemoveAllAcronymsQuery = 'Do you want to remove all acronyms?';136 SRemoveAcronym = 'Remove acronym';137 SRemoveAcronymQuery = 'Do you want to remove selected acronym?';138 119 139 120 const … … 243 224 end; 244 225 245 procedure TFormMain.AAcronymModifyExecute(Sender: TObject);246 var247 TempEntry: TAcronymEntry;248 TempCategories: TStringList;249 Meaning: TAcronymMeaning;250 I: Integer;251 begin252 if Assigned(ListViewAcronyms.Selected) then253 with TAcronymMeaning(ListViewAcronyms.Selected.Data) do begin254 TempEntry := TAcronymEntry.Create;255 TempEntry.Name := Acronym.Name;256 TempEntry.Meaning := Name;257 TempEntry.Description := Description;258 Categories.AssignToStrings(TempEntry.Categories);259 TempCategories := TStringList.Create;260 TempCategories.Assign(TempEntry.Categories);261 FormAcronym.Load(TempEntry);262 if FormAcronym.ShowModal = mrOk then begin263 FormAcronym.Save(TempEntry);264 if (TempEntry.Name <> Acronym.Name) or265 (TempEntry.Meaning <> Name) or266 (TempEntry.Description <> Description) or267 not CompareStrings(TempEntry.Categories, TempCategories) then begin268 // TODO: Update item inplace if possible269 AcronymDb.RemoveAcronym(Acronym.Name, Name);270 Meaning := AcronymDb.AddAcronym(TempEntry.Name, TempEntry.Meaning);271 Meaning.Description := TempEntry.Description;272 Meaning.Categories.AssignFromStrings(TempEntry.Categories);273 for I := 0 to Meaning.Categories.Count - 1 do274 TAcronymCategory(Meaning.Categories.Items[I]).AcronymMeanings.Add(Meaning);275 UpdateAcronymsList;276 UpdateInterface;277 end;278 end;279 TempEntry.Free;280 TempCategories.Free;281 end;282 end;283 284 procedure TFormMain.AAcronymRemoveAllExecute(Sender: TObject);285 begin286 if MessageDlg(SRemoveAllAcronyms, SRemoveAllAcronymsQuery,287 TMsgDlgType.mtConfirmation, [mbCancel, mbOk], 0) = mrOk then begin288 AcronymDb.Acronyms.Clear;289 AcronymDb.Modified := True;290 UpdateAcronymsList;291 UpdateInterface;292 end;293 end;294 295 procedure TFormMain.AAcronymRemoveExecute(Sender: TObject);296 begin297 if Assigned(ListViewAcronyms.Selected) then begin298 if MessageDlg(SRemoveAcronym, SRemoveAcronymQuery,299 TMsgDlgType.mtConfirmation, [mbCancel, mbOk], 0) = mrOk then begin300 AcronymDb.RemoveAcronym(TAcronymMeaning(ListViewAcronyms.Selected.Data).Acronym.Name,301 TAcronymMeaning(ListViewAcronyms.Selected.Data).Name);302 UpdateAcronymsList;303 UpdateInterface;304 end;305 end;306 end;307 308 procedure TFormMain.AAcronymAddExecute(Sender: TObject);309 var310 TempEntry: TAcronymEntry;311 Meaning: TAcronymMeaning;312 I: Integer;313 begin314 TempEntry := TAcronymEntry.Create;315 TempEntry.Name := '';316 TempEntry.Meaning := '';317 TempEntry.Description := '';318 FormAcronym.Load(TempEntry);319 if FormAcronym.ShowModal = mrOk then begin320 FormAcronym.Save(TempEntry);321 Meaning := AcronymDb.AddAcronym(TempEntry.Name, TempEntry.Meaning);322 Meaning.Description := TempEntry.Description;323 Meaning.Categories.AssignFromStrings(TempEntry.Categories);324 for I := 0 to Meaning.Categories.Count - 1 do325 TAcronymCategory(Meaning.Categories.Items[I]).AcronymMeanings.Add(Meaning);326 UpdateAcronymsList;327 UpdateInterface;328 end;329 TempEntry.Free;330 end;331 332 226 procedure TFormMain.AImportExecute(Sender: TObject); 333 227 begin … … 397 291 Item.SubItems.Add(Categories.GetString); 398 292 end; 399 end;400 401 procedure TFormMain.ListViewAcronymsDblClick(Sender: TObject);402 begin403 AAcronymModify.Execute;404 end;405 406 procedure TFormMain.ListViewAcronymsKeyPress(Sender: TObject; var Key: char);407 begin408 293 end; 409 294 … … 528 413 begin 529 414 ListViewAcronyms.Enabled := Assigned(AcronymDb); 530 AAcronymRemove.Enabled := Assigned(AcronymDb) and Assigned(ListViewAcronyms.Selected);531 AAcronymModify.Enabled := Assigned(AcronymDb) and Assigned(ListViewAcronyms.Selected);532 AAcronymAdd.Enabled := Assigned(AcronymDb);533 AAcronymRemoveAll.Enabled := Assigned(AcronymDb) and (AcronymDb.Acronyms.Count > 0);534 415 AFileClose.Enabled := Assigned(AcronymDb); 535 416 AFileSave.Enabled := Assigned(AcronymDb) and AcronymDb.Modified; -
trunk/Languages/AcronymDecoder.cs.po
r18 r19 52 52 msgstr "Kategorie:" 53 53 54 #: tformacronyms.aadd.caption 55 #, fuzzy 56 msgctxt "tformacronyms.aadd.caption" 57 msgid "Add" 58 msgstr "Přidat" 59 60 #: tformacronyms.amodify.caption 61 #, fuzzy 62 msgctxt "tformacronyms.amodify.caption" 63 msgid "Modify" 64 msgstr "Upravit" 65 66 #: tformacronyms.aremove.caption 67 #, fuzzy 68 msgctxt "tformacronyms.aremove.caption" 69 msgid "Remove" 70 msgstr "Odebrat" 71 72 #: tformacronyms.aselectall.caption 73 msgid "Select all" 74 msgstr "Vybrat vše" 75 54 76 #: tformacronyms.caption 55 77 msgctxt "tformacronyms.caption" … … 137 159 msgstr "Formát dat:" 138 160 139 #: tformmain.aacronymadd.caption140 msgctxt "tformmain.aacronymadd.caption"141 msgid "Add"142 msgstr "Přidat"143 144 #: tformmain.aacronymmodify.caption145 msgctxt "tformmain.aacronymmodify.caption"146 msgid "Modify"147 msgstr "Upravit"148 149 #: tformmain.aacronymremove.caption150 msgctxt "tformmain.aacronymremove.caption"151 msgid "Remove"152 msgstr "Odebrat"153 154 #: tformmain.aacronymremoveall.caption155 msgid "Remove all"156 msgstr "Odebrat vše"157 158 161 #: tformmain.aexit.caption 159 162 msgid "Exit" … … 210 213 #: tformmain.checkboxexactmath.caption 211 214 msgid "Exact match" 212 msgstr " "215 msgstr "Odpovídá přesně" 213 216 214 217 #: tformmain.listviewacronyms.columns[0].caption … … 287 290 msgstr "Opravdu chcete odebrat vybrané kategorie?" 288 291 292 #: uformacronyms.sremoveacronym 293 #, fuzzy 294 msgctxt "uformacronyms.sremoveacronym" 295 msgid "Remove acronym" 296 msgstr "Odebrat zkratku" 297 298 #: uformacronyms.sremoveacronymquery 299 #, fuzzy 300 msgctxt "uformacronyms.sremoveacronymquery" 301 msgid "Do you want to remove selected acronym?" 302 msgstr "Chcete odebrat vybranou zkratku?" 303 304 #: uformacronyms.sremoveallacronyms 305 #, fuzzy 306 msgctxt "uformacronyms.sremoveallacronyms" 307 msgid "Remove all acronyms" 308 msgstr "Odebrat všechny zkratky" 309 310 #: uformacronyms.sremoveallacronymsquery 311 #, fuzzy 312 msgctxt "uformacronyms.sremoveallacronymsquery" 313 msgid "Do you want to remove all acronyms?" 314 msgstr "Chcete odebrat všechny zkratky?" 315 289 316 #: uformcategories.scategory 290 317 msgctxt "uformcategories.scategory" … … 324 351 msgstr "upraveno" 325 352 326 #: uformmain.sremoveacronym327 msgid "Remove acronym"328 msgstr "Odebrat zkratku"329 330 #: uformmain.sremoveacronymquery331 msgid "Do you want to remove selected acronym?"332 msgstr "Chcete odebrat vybranou zkratku?"333 334 #: uformmain.sremoveallacronyms335 msgid "Remove all acronyms"336 msgstr "Odebrat všechny zkratky"337 338 #: uformmain.sremoveallacronymsquery339 msgid "Do you want to remove all acronyms?"340 msgstr "Chcete odebrat všechny zkratky?"341 -
trunk/Languages/AcronymDecoder.po
r18 r19 42 42 msgstr "" 43 43 44 #: tformacronyms.aadd.caption 45 msgctxt "TFORMACRONYMS.AADD.CAPTION" 46 msgid "Add" 47 msgstr "" 48 49 #: tformacronyms.amodify.caption 50 msgctxt "TFORMACRONYMS.AMODIFY.CAPTION" 51 msgid "Modify" 52 msgstr "" 53 54 #: tformacronyms.aremove.caption 55 msgctxt "TFORMACRONYMS.AREMOVE.CAPTION" 56 msgid "Remove" 57 msgstr "" 58 59 #: tformacronyms.aselectall.caption 60 msgid "Select all" 61 msgstr "" 62 44 63 #: tformacronyms.caption 45 64 msgctxt "tformacronyms.caption" … … 125 144 msgstr "" 126 145 127 #: tformmain.aacronymadd.caption128 msgctxt "tformmain.aacronymadd.caption"129 msgid "Add"130 msgstr ""131 132 #: tformmain.aacronymmodify.caption133 msgctxt "tformmain.aacronymmodify.caption"134 msgid "Modify"135 msgstr ""136 137 #: tformmain.aacronymremove.caption138 msgctxt "tformmain.aacronymremove.caption"139 msgid "Remove"140 msgstr ""141 142 #: tformmain.aacronymremoveall.caption143 msgid "Remove all"144 msgstr ""145 146 146 #: tformmain.aexit.caption 147 147 msgid "Exit" … … 275 275 msgstr "" 276 276 277 #: uformacronyms.sremoveacronym 278 msgctxt "uformacronyms.sremoveacronym" 279 msgid "Remove acronym" 280 msgstr "" 281 282 #: uformacronyms.sremoveacronymquery 283 msgctxt "uformacronyms.sremoveacronymquery" 284 msgid "Do you want to remove selected acronym?" 285 msgstr "" 286 287 #: uformacronyms.sremoveallacronyms 288 msgctxt "uformacronyms.sremoveallacronyms" 289 msgid "Remove all acronyms" 290 msgstr "" 291 292 #: uformacronyms.sremoveallacronymsquery 293 msgctxt "uformacronyms.sremoveallacronymsquery" 294 msgid "Do you want to remove all acronyms?" 295 msgstr "" 296 277 297 #: uformcategories.scategory 278 298 msgctxt "uformcategories.scategory" … … 312 332 msgstr "" 313 333 314 #: uformmain.sremoveacronym315 msgid "Remove acronym"316 msgstr ""317 318 #: uformmain.sremoveacronymquery319 msgid "Do you want to remove selected acronym?"320 msgstr ""321 322 #: uformmain.sremoveallacronyms323 msgid "Remove all acronyms"324 msgstr ""325 326 #: uformmain.sremoveallacronymsquery327 msgid "Do you want to remove all acronyms?"328 msgstr ""329
Note:
See TracChangeset
for help on using the changeset viewer.