Changeset 21
- Timestamp:
- May 4, 2016, 9:51:49 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AcronymDecoder.lpi
r20 r21 92 92 </Item5> 93 93 </RequiredPackages> 94 <Units Count="1 1">94 <Units Count="12"> 95 95 <Unit0> 96 96 <Filename Value="AcronymDecoder.lpr"/> … … 158 158 <ResourceBaseClass Value="Form"/> 159 159 </Unit10> 160 <Unit11> 161 <Filename Value="Forms\UFormAbout.pas"/> 162 <IsPartOfProject Value="True"/> 163 <ComponentName Value="FormAbout"/> 164 <HasResources Value="True"/> 165 <ResourceBaseClass Value="Form"/> 166 </Unit11> 160 167 </Units> 161 168 </ProjectOptions> -
trunk/AcronymDecoder.lpr
r20 r21 10 10 Forms, UAcronym, synapse, Common, SysUtils, TemplateGenerics, UFormImport, 11 11 CoolTranslator, UFormCategorySelect, UFormMain, UFormAcronym, UFormSettings, 12 UFormCategories, UFormAcronyms, UFormImportSource, UFormImportSources 12 UFormCategories, UFormAcronyms, UFormImportSource, UFormImportSources, 13 UFormAbout 13 14 { you can add units after this }; 14 15 … … 40 41 Application.CreateForm(TFormImportSource, FormImportSource); 41 42 Application.CreateForm(TFormImportSources, FormImportSources); 43 Application.CreateForm(TFormAbout, FormAbout); 42 44 Application.Run; 43 45 end. -
trunk/Forms/UFormMain.lfm
r20 r21 5 5 Width = 631 6 6 Caption = 'Acronym Decoder' 7 ClientHeight = 4 217 ClientHeight = 414 8 8 ClientWidth = 631 9 9 Menu = MainMenu1 … … 13 13 OnDestroy = FormDestroy 14 14 OnShow = FormShow 15 LCLVersion = '1. 6.0.4'15 LCLVersion = '1.7' 16 16 object ListViewAcronyms: TListView 17 17 Left = 8 18 Height = 3 4019 Top = 7218 Height = 333 19 Top = 64 20 20 Width = 613 21 21 Anchors = [akTop, akLeft, akRight, akBottom] … … 51 51 object CheckBoxExactMath: TCheckBox 52 52 Left = 8 53 Height = 2 453 Height = 28 54 54 Top = 3 55 Width = 1 0455 Width = 129 56 56 Caption = 'Exact match' 57 57 OnChange = CheckBoxExactMathChange … … 4420 4420 OnExecute = AShowImportSourcesExecute 4421 4421 end 4422 object AShowAbout: TAction 4423 Caption = 'About' 4424 OnExecute = AShowAboutExecute 4425 end 4422 4426 end 4423 4427 object PersistentForm1: TPersistentForm … … 4430 4434 Images = ImageList1 4431 4435 left = 464 4432 top = 804436 top = 96 4433 4437 object MenuItem8: TMenuItem 4434 4438 Caption = 'File' … … 4479 4483 end 4480 4484 end 4485 object MenuItem5: TMenuItem 4486 Caption = 'Help' 4487 object MenuItem6: TMenuItem 4488 Action = AShowAbout 4489 end 4490 end 4481 4491 end 4482 4492 object OpenDialog1: TOpenDialog … … 4503 4513 OnCompareItem = ListViewSort1CompareItem 4504 4514 OnFilter = ListViewSort1Filter 4505 Column = 04506 Order = so Down4515 Column = 2 4516 Order = soUp 4507 4517 left = 464 4508 4518 top = 208 -
trunk/Forms/UFormMain.lrt
r20 r21 16 16 TFORMMAIN.ASHOWACRONYMS.CAPTION=Acronyms 17 17 TFORMMAIN.ASHOWIMPORTSOURCES.CAPTION=Import sources 18 TFORMMAIN.ASHOWABOUT.CAPTION=About 18 19 TFORMMAIN.MENUITEM8.CAPTION=File 19 20 TFORMMAIN.MENUITEMOPENRECENT.CAPTION=Open recent … … 21 22 TFORMMAIN.MENUITEM20.CAPTION=View 22 23 TFORMMAIN.MENUITEM16.CAPTION=Tools 24 TFORMMAIN.MENUITEM5.CAPTION=Help -
trunk/Forms/UFormMain.pas
r20 r21 16 16 17 17 TFormMain = class(TForm) 18 AShowAbout: TAction; 18 19 AShowImportSources: TAction; 19 20 AShowAcronyms: TAction; … … 52 53 MenuItem22: TMenuItem; 53 54 MenuItem4: TMenuItem; 55 MenuItem5: TMenuItem; 56 MenuItem6: TMenuItem; 54 57 MenuItemOpenRecent: TMenuItem; 55 58 MenuItem2: TMenuItem; … … 70 73 procedure AImportExecute(Sender: TObject); 71 74 procedure ASettingsExecute(Sender: TObject); 75 procedure AShowAboutExecute(Sender: TObject); 72 76 procedure AShowAcronymsExecute(Sender: TObject); 73 77 procedure AShowCategoriesExecute(Sender: TObject); … … 115 119 uses 116 120 UFormImport, UFormAcronym, UFormSettings, UFormCategories, UFormAcronyms, 117 UFormImportSource, UFormImportSources ;121 UFormImportSource, UFormImportSources, UFormAbout; 118 122 119 123 resourcestring … … 244 248 if FormSettings.ShowModal = mrOk then 245 249 FormSettings.Save; 250 end; 251 252 procedure TFormMain.AShowAboutExecute(Sender: TObject); 253 begin 254 FormAbout.ShowModal; 246 255 end; 247 256 -
trunk/Languages/AcronymDecoder.cs.po
r20 r21 12 12 "X-Generator: Poedit 1.8.7.1\n" 13 13 14 #: tformabout.buttonclose.caption 15 msgctxt "tformabout.buttonclose.caption" 16 msgid "Close" 17 msgstr "Zavřít" 18 19 #: tformabout.buttonhomepage.caption 20 msgid "Home page" 21 msgstr "Domovská stránka" 22 23 #: tformabout.labelappname.caption 24 msgctxt "tformabout.labelappname.caption" 25 msgid "Acronym Decoder" 26 msgstr "Acronym Decoder" 27 28 #: tformabout.labelcontent.caption 29 msgctxt "tformabout.labelcontent.caption" 30 msgid " " 31 msgstr " " 32 33 #: tformabout.labeldescription.caption 34 msgctxt "tformabout.labeldescription.caption" 35 msgid "Simple tool for quick search and find meaning for various acronyms and abbreviations." 36 msgstr "Jednoduchý nástroj pro hledání významu různých zkratek a zkrácení." 37 14 38 #: tformacronym.acategoryadd.caption 15 39 msgctxt "tformacronym.acategoryadd.caption" … … 54 78 55 79 #: tformacronyms.aadd.caption 56 #, fuzzy57 80 msgctxt "tformacronyms.aadd.caption" 58 81 msgid "Add" … … 60 83 61 84 #: tformacronyms.amodify.caption 62 #, fuzzy63 85 msgctxt "tformacronyms.amodify.caption" 64 86 msgid "Modify" … … 66 88 67 89 #: tformacronyms.aremove.caption 68 #, fuzzy69 90 msgctxt "tformacronyms.aremove.caption" 70 91 msgid "Remove" … … 81 102 82 103 #: tformacronyms.listviewacronyms.columns[0].caption 83 #, fuzzy84 104 msgctxt "tformacronyms.listviewacronyms.columns[0].caption" 85 105 msgid "Name" … … 87 107 88 108 #: tformacronyms.listviewacronyms.columns[1].caption 89 #, fuzzy90 109 msgctxt "tformacronyms.listviewacronyms.columns[1].caption" 91 110 msgid "Description" … … 161 180 162 181 #: tformimportsource.buttoncancel.caption 163 #, fuzzy164 182 msgctxt "tformimportsource.buttoncancel.caption" 165 183 msgid "Cancel" … … 167 185 168 186 #: tformimportsource.buttonok.caption 169 #, fuzzy170 187 msgctxt "tformimportsource.buttonok.caption" 171 188 msgid "Ok" … … 175 192 msgctxt "tformimportsource.caption" 176 193 msgid "Import source" 177 msgstr " "194 msgstr "Zdroj importu" 178 195 179 196 #: tformimportsource.label1.caption 180 #, fuzzy181 197 msgctxt "tformimportsource.label1.caption" 182 198 msgid "Name:" … … 185 201 #: tformimportsource.label2.caption 186 202 msgid "Source URL:" 187 msgstr " "203 msgstr "Zdrojové URL:" 188 204 189 205 #: tformimportsources.aadd.caption 190 #, fuzzy191 206 msgctxt "tformimportsources.aadd.caption" 192 207 msgid "Add" … … 194 209 195 210 #: tformimportsources.amodify.caption 196 #, fuzzy197 211 msgctxt "tformimportsources.amodify.caption" 198 212 msgid "Modify" … … 200 214 201 215 #: tformimportsources.aremove.caption 202 #, fuzzy203 216 msgctxt "tformimportsources.aremove.caption" 204 217 msgid "Remove" … … 208 221 msgctxt "tformimportsources.caption" 209 222 msgid "Import sources" 210 msgstr " "223 msgstr "Zdroje importu" 211 224 212 225 #: tformimportsources.listview1.columns[0].caption 213 #, fuzzy214 226 msgctxt "tformimportsources.listview1.columns[0].caption" 215 227 msgid "Name" … … 218 230 #: tformimportsources.listview1.columns[1].caption 219 231 msgid "URL" 220 msgstr " "232 msgstr "URL" 221 233 222 234 #: tformmain.aexit.caption … … 225 237 226 238 #: tformmain.afileclose.caption 239 msgctxt "tformmain.afileclose.caption" 227 240 msgid "Close" 228 241 msgstr "Zavřít" … … 271 284 msgctxt "tformmain.ashowimportsources.caption" 272 285 msgid "Import sources" 273 msgstr " "286 msgstr "Zdroje importu" 274 287 275 288 #: tformmain.caption 289 msgctxt "tformmain.caption" 276 290 msgid "Acronym Decoder" 277 291 msgstr "Acronym Decoder" … … 308 322 msgstr "Zobrazení" 309 323 324 #: tformmain.menuitem5.caption 325 msgid "Help" 326 msgstr "Nápověda" 327 310 328 #: tformmain.menuitem8.caption 311 329 msgid "File" … … 343 361 msgstr "Špatný formát souboru" 344 362 363 #: uformabout.slicense 364 msgid "License" 365 msgstr "Licence" 366 367 #: uformabout.sreleasedate 368 msgid "Release date:" 369 msgstr "Datum uvolnění:" 370 371 #: uformabout.sversion 372 msgid "Version" 373 msgstr "Verze" 374 345 375 #: uformacronym.scategory 346 376 msgctxt "uformacronym.scategory" … … 359 389 360 390 #: uformacronyms.sremoveacronym 361 #, fuzzy362 391 msgctxt "uformacronyms.sremoveacronym" 363 392 msgid "Remove acronym" … … 365 394 366 395 #: uformacronyms.sremoveacronymquery 367 #, fuzzy368 396 msgctxt "uformacronyms.sremoveacronymquery" 369 397 msgid "Do you want to remove selected acronym?" … … 371 399 372 400 #: uformacronyms.sremoveallacronyms 373 #, fuzzy374 401 msgctxt "uformacronyms.sremoveallacronyms" 375 402 msgid "Remove all acronyms" … … 377 404 378 405 #: uformacronyms.sremoveallacronymsquery 379 #, fuzzy380 406 msgctxt "uformacronyms.sremoveallacronymsquery" 381 407 msgid "Do you want to remove all acronyms?" … … 396 422 397 423 #: uformcategories.sremovecategory 398 #, fuzzy399 #| msgid "Remove category"400 424 msgctxt "uformcategories.sremovecategory" 401 425 msgid "Remove categories" 402 msgstr "Odebrat kategori i"426 msgstr "Odebrat kategorie" 403 427 404 428 #: uformcategories.sremovecategoryquery 405 #, fuzzy406 #| msgid "Do you really want to remove category?"407 429 msgctxt "uformcategories.sremovecategoryquery" 408 430 msgid "Do you really want to remove selected categories?" 409 msgstr "Opravdu chcete odebrat kategorii?"431 msgstr "Opravdu chcete odebrat vybrabé kategorie?" 410 432 411 433 #: uformimport.simportednewacronyms … … 416 438 msgctxt "uformimportsources.simportsource" 417 439 msgid "Import source" 418 msgstr " "440 msgstr "Zdroje importu" 419 441 420 442 #: uformimportsources.simportsourcealreadyexists 421 443 msgid "Import source %s already exists!" 422 msgstr " "444 msgstr "Zdroj importu %s již existuje!" 423 445 424 446 #: uformimportsources.simportsourcequery 425 447 msgid "Enter name of import source" 426 msgstr " "448 msgstr "Zadejte jméno zdroje importu" 427 449 428 450 #: uformimportsources.sremoveimportsource 429 451 msgid "Remove import sources" 430 msgstr " "452 msgstr "Odstranit zdroje importu" 431 453 432 454 #: uformimportsources.sremoveimportsourcequery 433 455 msgid "Do you really want to remove selected import sources?" 434 msgstr " "456 msgstr "Opravdu chcete odebrat vybrané zdroje importu?" 435 457 436 458 #: uformmain.sappexit … … 445 467 msgid "modified" 446 468 msgstr "upraveno" 447 -
trunk/Languages/AcronymDecoder.po
r20 r21 1 1 msgid "" 2 2 msgstr "Content-Type: text/plain; charset=UTF-8" 3 4 #: tform1.buttonclose.caption 5 msgctxt "TFORM1.BUTTONCLOSE.CAPTION" 6 msgid "Close" 7 msgstr "" 8 9 #: tform1.caption 10 msgid "Form1" 11 msgstr "" 12 13 #: tform1.label1.caption 14 msgctxt "TFORM1.LABEL1.CAPTION" 15 msgid "Acronym Decoder" 16 msgstr "" 17 18 #: tform1.label2.caption 19 msgctxt "tform1.label2.caption" 20 msgid "Tool for quick search and find meaning for various acronyms and abbreviations" 21 msgstr "" 22 23 #: tform1.labelcontent.caption 24 msgctxt "tform1.labelcontent.caption" 25 msgid " " 26 msgstr "" 27 28 #: tformabout.buttonclose.caption 29 msgctxt "TFORMABOUT.BUTTONCLOSE.CAPTION" 30 msgid "Close" 31 msgstr "" 32 33 #: tformabout.buttonhomepage.caption 34 msgid "Home page" 35 msgstr "" 36 37 #: tformabout.caption 38 msgid "About" 39 msgstr "" 40 41 #: tformabout.labelappname.caption 42 msgctxt "TFORMABOUT.LABELAPPNAME.CAPTION" 43 msgid "Acronym Decoder" 44 msgstr "" 45 46 #: tformabout.labelcontent.caption 47 msgctxt "TFORMABOUT.LABELCONTENT.CAPTION" 48 msgid " " 49 msgstr "" 50 51 #: tformabout.labeldescription.caption 52 msgctxt "TFORMABOUT.LABELDESCRIPTION.CAPTION" 53 msgid "Simple tool for quick search and find meaning for various acronyms and abbreviations." 54 msgstr "" 3 55 4 56 #: tformacronym.acategoryadd.caption … … 203 255 204 256 #: tformmain.afileclose.caption 257 msgctxt "tformmain.afileclose.caption" 205 258 msgid "Close" 206 259 msgstr "" … … 236 289 msgstr "" 237 290 291 #: tformmain.ashowabout.caption 292 msgid "About" 293 msgstr "" 294 238 295 #: tformmain.ashowacronyms.caption 239 296 msgctxt "TFORMMAIN.ASHOWACRONYMS.CAPTION" … … 252 309 253 310 #: tformmain.caption 311 msgctxt "tformmain.caption" 254 312 msgid "Acronym Decoder" 255 313 msgstr "" … … 286 344 msgstr "" 287 345 346 #: tformmain.menuitem5.caption 347 msgid "Help" 348 msgstr "" 349 288 350 #: tformmain.menuitem8.caption 289 351 msgid "File" … … 321 383 msgstr "" 322 384 385 #: uformabout.slicense 386 msgid "License" 387 msgstr "" 388 389 #: uformabout.sreleasedate 390 msgid "Release date:" 391 msgstr "" 392 393 #: uformabout.sversion 394 msgid "Version" 395 msgstr "" 396 323 397 #: uformacronym.scategory 324 398 msgctxt "uformacronym.scategory"
Note:
See TracChangeset
for help on using the changeset viewer.