- Timestamp:
- Sep 10, 2022, 8:13:14 PM (2 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormConnect.lfm
r26 r27 139 139 end 140 140 object TabSheetSqlite: TTabSheet 141 Caption = 'TabSheetSqlite'142 141 end 143 142 object TabSheetRegistry: TTabSheet 144 Caption = 'TabSheetRegistry'145 143 end 146 144 end -
trunk/Forms/UFormConnect.lrj
r26 r27 8 8 {"hash":77164181,"name":"tformconnect.buttonxmlbrowse.caption","sourcebytes":[66,114,111,119,115,101],"value":"Browse"}, 9 9 {"hash":5204602,"name":"tformconnect.label4.caption","sourcebytes":[72,111,115,116,58],"value":"Host:"}, 10 {"hash":5728634,"name":"tformconnect.label5.caption","sourcebytes":[80,111,114,116,58],"value":"Port:"}, 11 {"hash":249552581,"name":"tformconnect.tabsheetsqlite.caption","sourcebytes":[84,97,98,83,104,101,101,116,83,113,108,105,116,101],"value":"TabSheetSqlite"}, 12 {"hash":38716777,"name":"tformconnect.tabsheetregistry.caption","sourcebytes":[84,97,98,83,104,101,101,116,82,101,103,105,115,116,114,121],"value":"TabSheetRegistry"} 10 {"hash":5728634,"name":"tformconnect.label5.caption","sourcebytes":[80,111,114,116,58],"value":"Port:"} 13 11 ]} -
trunk/Forms/UFormMain.lfm
r22 r27 1 1 object FormMain: TFormMain 2 2 Left = 449 3 Height = 8494 Top = 2785 Width = 1 2503 Height = 1274 4 Top = 108 5 Width = 1875 6 6 Caption = 'MyData' 7 ClientHeight = 815 8 ClientWidth = 1250 7 ClientHeight = 1240 8 ClientWidth = 1875 9 DesignTimePPI = 144 9 10 Menu = MainMenu1 10 11 OnActivate = FormActivate 11 12 OnClose = FormClose 12 13 OnShow = FormShow 13 LCLVersion = ' 1.8.0.4'14 LCLVersion = '2.2.2.0' 14 15 WindowState = wsMaximized 15 16 object StatusBar1: TStatusBar 16 17 Left = 0 17 Height = 3018 Top = 78519 Width = 1 25018 Height = 28 19 Top = 1212 20 Width = 1875 20 21 Panels = <> 21 22 end 22 23 object CoolBar1: TCoolBar 23 24 Left = 0 24 Height = 4 325 Height = 44 25 26 Top = 0 26 Width = 1 25027 Width = 1875 27 28 AutoSize = True 28 29 Bands = < … … 41 42 Height = 33 42 43 Top = 5 43 Width = 1 0844 Width = 150 44 45 Align = alNone 45 46 BorderSpacing.Left = 22 46 47 BorderSpacing.Top = 3 47 Caption = 'ToolBar1'48 48 EdgeInner = esNone 49 49 EdgeOuter = esNone … … 57 57 end 58 58 object ToolButton2: TToolButton 59 Left = 3 759 Left = 36 60 60 Top = 0 61 61 Action = Core.ADatabaseDisconnect 62 62 end 63 63 object ToolButton3: TToolButton 64 Left = 7 364 Left = 71 65 65 Top = 0 66 66 Action = Core.APreferences … … 70 70 object MainMenu1: TMainMenu 71 71 Images = Core.ImageList1 72 left = 82473 top = 21672 Left = 1236 73 Top = 324 74 74 object MenuItem1: TMenuItem 75 75 Caption = 'Database' -
trunk/Forms/UFormMain.lrj
r26 r27 1 1 {"version":1,"strings":[ 2 2 {"hash":88975521,"name":"tformmain.caption","sourcebytes":[77,121,68,97,116,97],"value":"MyData"}, 3 {"hash":106991073,"name":"tformmain.toolbar1.caption","sourcebytes":[84,111,111,108,66,97,114,49],"value":"ToolBar1"},4 3 {"hash":145198133,"name":"tformmain.menuitem1.caption","sourcebytes":[68,97,116,97,98,97,115,101],"value":"Database"}, 5 4 {"hash":5989939,"name":"tformmain.menuitempreferences.caption","sourcebytes":[84,111,111,108,115],"value":"Tools"}, -
trunk/Forms/UFormMain.pas
r26 r27 31 31 procedure FormClose(Sender: TObject; var CloseAction: TCloseAction); 32 32 procedure FormShow(Sender: TObject); 33 private 34 procedure SetToolbarHints; 33 35 public 34 36 procedure DockInit; … … 65 67 begin 66 68 Core.PersistentForm1.Load(Self, True); 69 SetToolbarHints; 67 70 DockInit; 68 71 end; … … 85 88 end; 86 89 90 procedure TFormMain.SetToolbarHints; 91 var 92 I: Integer; 93 J: Integer; 94 Control: TControl; 95 begin 96 for J := 0 to CoolBar1.ControlCount - 1 do begin 97 Control := CoolBar1.Controls[J]; 98 if Control is TToolBar then begin 99 for I := 0 to TToolBar(Control).ButtonCount - 1 do begin 100 TToolBar(Control).Buttons[I].ShowHint := True; 101 TToolBar(Control).Buttons[I].Hint := TToolBar(Control).Buttons[I].Caption; 102 end; 103 end; 104 end; 105 end; 106 87 107 end. 88 108 -
trunk/Forms/UFormRecord.lfm
r19 r27 12 12 OnShow = FormShow 13 13 Position = poMainFormCenter 14 LCLVersion = ' 1.8.2.0'14 LCLVersion = '2.2.2.0' 15 15 object Panel1: TPanel 16 16 Left = 4 … … 37 37 Left = 648 38 38 Height = 27 39 Top = 60 139 Top = 603 40 40 Width = 72 41 41 Anchors = [akRight, akBottom] … … 46 46 object ActionList1: TActionList 47 47 Images = Core.ImageList1 48 left = 42349 top = 37948 Left = 423 49 Top = 379 50 50 object ASave: TAction 51 51 Caption = 'Save' -
trunk/Forms/UFormRecord.lrj
r26 r27 1 1 {"version":1,"strings":[ 2 {"hash": 42946580,"name":"tformrecord.caption","sourcebytes":[70,111,114,109,82,101,99,111,114,100],"value":"FormRecord"},2 {"hash":93038212,"name":"tformrecord.caption","sourcebytes":[82,101,99,111,114,100],"value":"Record"}, 3 3 {"hash":1371,"name":"tformrecord.buttonok.caption","sourcebytes":[79,107],"value":"Ok"}, 4 4 {"hash":77089212,"name":"tformrecord.buttoncancel.caption","sourcebytes":[67,97,110,99,101,108],"value":"Cancel"}, -
trunk/Languages/MyData.cs.po
r26 r27 1 1 msgid "" 2 2 msgstr "" 3 "Content-Type: text/plain; charset=UTF-8\n"4 3 "Project-Id-Version: \n" 5 4 "POT-Creation-Date: \n" … … 7 6 "Last-Translator: Chronos <robie@centrum.cz>\n" 8 7 "Language-Team: \n" 8 "Language: cs\n" 9 9 "MIME-Version: 1.0\n" 10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "Content-Transfer-Encoding: 8bit\n" 11 "X-Generator: Poedit 2.0.4\n" 12 "Language: cs\n" 12 "X-Generator: Poedit 3.0.1\n" 13 13 14 14 #: tcore.aabout.caption … … 31 31 #: tcore.applicationinfo1.description 32 32 msgid "Customizable database storage" 33 msgstr " "33 msgstr "Nastavitelné databázové úložiště" 34 34 35 35 #: tcore.apreferences.caption … … 39 39 40 40 #: tformconnect.buttoncancel.caption 41 #, fuzzy42 41 msgctxt "tformconnect.buttoncancel.caption" 43 42 msgid "Cancel" … … 45 44 46 45 #: tformconnect.buttonok.caption 47 #, fuzzy48 46 msgctxt "tformconnect.buttonok.caption" 49 47 msgid "Ok" … … 52 50 #: tformconnect.buttonxmlbrowse.caption 53 51 msgid "Browse" 54 msgstr " "52 msgstr "Procházet" 55 53 56 54 #: tformconnect.caption 57 55 msgid "Connection parameters:" 58 msgstr " "56 msgstr "Parametry spojení:" 59 57 60 58 #: tformconnect.label1.caption 61 #, fuzzy62 59 msgctxt "tformconnect.label1.caption" 63 60 msgid "Name:" … … 66 63 #: tformconnect.label2.caption 67 64 msgid "Database engine:" 68 msgstr " "65 msgstr "Databázový stroj:" 69 66 70 67 #: tformconnect.label3.caption 71 68 msgid "Xml file:" 72 msgstr " "69 msgstr "Xml soubor:" 73 70 74 71 #: tformconnect.label4.caption 75 72 msgid "Host:" 76 msgstr " "73 msgstr "Hostitel:" 77 74 78 75 #: tformconnect.label5.caption 79 76 msgid "Port:" 80 msgstr "" 81 82 #: tformconnect.tabsheetregistry.caption 83 msgid "TabSheetRegistry" 84 msgstr "" 85 86 #: tformconnect.tabsheetsqlite.caption 87 msgid "TabSheetSqlite" 88 msgstr "" 77 msgstr "Port:" 89 78 90 79 #: tformdatabases.aadd.caption 91 80 msgid "New" 92 msgstr " "81 msgstr "Nový" 93 82 94 83 #: tformdatabases.amodify.caption 95 #, fuzzy96 84 msgctxt "tformdatabases.amodify.caption" 97 85 msgid "Modify" … … 100 88 #: tformdatabases.aopen.caption 101 89 msgid "Open" 102 msgstr " "90 msgstr "Otevřít" 103 91 104 92 #: tformdatabases.aremove.caption 105 #, fuzzy106 93 msgctxt "tformdatabases.aremove.caption" 107 94 msgid "Remove" … … 110 97 #: tformdatabases.caption 111 98 msgid "Connection profiles" 112 msgstr " "99 msgstr "Profily spojení" 113 100 114 101 #: tformdatabases.listview1.columns[0].caption 115 #, fuzzy116 102 msgctxt "tformdatabases.listview1.columns[0].caption" 117 103 msgid "Name" … … 119 105 120 106 #: tformdatabases.listview1.columns[1].caption 121 #, fuzzy122 107 msgctxt "tformdatabases.listview1.columns[1].caption" 123 108 msgid "Type" … … 126 111 #: tformdatabases.listview1.columns[2].caption 127 112 msgid "Connection string" 128 msgstr " "113 msgstr "Řetězec spojení" 129 114 130 115 #: tformfield.buttoncancel.caption … … 260 245 msgstr "Nástroje" 261 246 262 #: tformmain.toolbar1.caption263 msgid "ToolBar1"264 msgstr ""265 266 247 #: tformpreferences.buttoncancel.caption 267 #, fuzzy268 248 msgctxt "tformpreferences.buttoncancel.caption" 269 249 msgid "Cancel" … … 271 251 272 252 #: tformpreferences.buttonsave.caption 273 #, fuzzy274 253 msgctxt "tformpreferences.buttonsave.caption" 275 254 msgid "Save" … … 277 256 278 257 #: tformpreferences.caption 279 #, fuzzy280 258 msgctxt "tformpreferences.caption" 281 259 msgid "Preferences" … … 284 262 #: tformpreferences.checkboxrememberdatabase.caption 285 263 msgid "Remember database" 286 msgstr " "264 msgstr "Pamatovat databázi" 287 265 288 266 #: tformpreferences.label1.caption 289 267 msgid "Language:" 290 msgstr " "268 msgstr "Jazyk:" 291 269 292 270 #: tformrecord.acancel.caption … … 313 291 #, fuzzy 314 292 #| msgid "Record" 315 msgid " FormRecord"293 msgid "Record" 316 294 msgstr "Záznam" 317 295 … … 347 325 348 326 #: tformtables.aadd.caption 349 #, fuzzy350 327 msgctxt "tformtables.aadd.caption" 351 328 msgid "Add" … … 353 330 354 331 #: tformtables.amodify.caption 355 #, fuzzy356 332 msgctxt "tformtables.amodify.caption" 357 333 msgid "Modify" … … 359 335 360 336 #: tformtables.aremove.caption 361 #, fuzzy362 337 msgctxt "tformtables.aremove.caption" 363 338 msgid "Remove" … … 366 341 #: tformtables.ashowfields.caption 367 342 msgid "Design" 368 msgstr " "343 msgstr "Návrh" 369 344 370 345 #: tformtables.ashowrecords.caption 371 #, fuzzy372 346 msgctxt "tformtables.ashowrecords.caption" 373 347 msgid "Records" … … 376 350 #: tformtables.caption 377 351 msgid "Tables" 378 msgstr " "352 msgstr "Tabulky" 379 353 380 354 #: tformtables.listview1.columns[0].caption 381 #, fuzzy382 355 msgctxt "tformtables.listview1.columns[0].caption" 383 356 msgid "Name" … … 385 358 386 359 #: tformtables.listview1.columns[1].caption 387 #, fuzzy388 360 msgctxt "tformtables.listview1.columns[1].caption" 389 361 msgid "Records" … … 393 365 #, object-pascal-format 394 366 msgid "Field %s not found" 395 msgstr " "367 msgstr "Pole %s nenalezeno" 396 368 397 369 #: udatabase.stypeboolean 398 #, fuzzy399 370 msgctxt "udatabase.stypeboolean" 400 371 msgid "Boolean" … … 402 373 403 374 #: udatabase.stypedate 404 #, fuzzy405 375 msgctxt "udatabase.stypedate" 406 376 msgid "Date" … … 408 378 409 379 #: udatabase.stypedatetime 410 #, fuzzy411 380 msgctxt "udatabase.stypedatetime" 412 381 msgid "Date and time" … … 414 383 415 384 #: udatabase.stypefloat 416 #, fuzzy417 385 msgctxt "udatabase.stypefloat" 418 386 msgid "Float" … … 420 388 421 389 #: udatabase.stypeimage 422 #, fuzzy423 390 msgctxt "udatabase.stypeimage" 424 391 msgid "Image" … … 426 393 427 394 #: udatabase.stypeinteger 428 #, fuzzy429 395 msgctxt "udatabase.stypeinteger" 430 396 msgid "Integer" … … 432 398 433 399 #: udatabase.stypemapposition 434 #, fuzzy435 400 msgctxt "udatabase.stypemapposition" 436 401 msgid "Map position" … … 438 403 439 404 #: udatabase.stypereference 440 #, fuzzy441 405 msgctxt "udatabase.stypereference" 442 406 msgid "Reference" … … 444 408 445 409 #: udatabase.stypestring 446 #, fuzzy447 410 msgctxt "udatabase.stypestring" 448 411 msgid "String" … … 450 413 451 414 #: udatabase.stypetime 452 #, fuzzy453 415 msgctxt "udatabase.stypetime" 454 416 msgid "Time" … … 456 418 457 419 #: uenginexml.scolumnnotfoundintable 458 #, object-pascal-format , fuzzy, badformat420 #, object-pascal-format 459 421 msgid "Column %s not found in table %s" 460 msgstr "Sloupec % dnenalezen v tabulce %s"422 msgstr "Sloupec %s nenalezen v tabulce %s" 461 423 462 424 #: uenginexml.sfieldnotfound 463 425 #, object-pascal-format 464 426 msgid "Table field %s not found" 465 msgstr " "427 msgstr "Pole tabulky %s nenalezeno" 466 428 467 429 #: uenginexml.stablenotfound … … 523 485 524 486 #: uipaddress.sstringtoipconversionerror 525 #, fuzzy526 487 msgctxt "uipaddress.sstringtoipconversionerror" 527 488 msgid "String to IP address conversion error" -
trunk/Languages/MyData.pot
r26 r27 66 66 msgstr "" 67 67 68 #: tformconnect.tabsheetregistry.caption69 msgid "TabSheetRegistry"70 msgstr ""71 72 #: tformconnect.tabsheetsqlite.caption73 msgid "TabSheetSqlite"74 msgstr ""75 76 68 #: tformdatabases.aadd.caption 77 69 msgid "New" … … 242 234 msgstr "" 243 235 244 #: tformmain.toolbar1.caption245 msgid "ToolBar1"246 msgstr ""247 248 236 #: tformpreferences.buttoncancel.caption 249 237 msgctxt "tformpreferences.buttoncancel.caption" … … 290 278 291 279 #: tformrecord.caption 292 msgid " FormRecord"280 msgid "Record" 293 281 msgstr "" 294 282
Note:
See TracChangeset
for help on using the changeset viewer.