- Timestamp:
- Feb 4, 2018, 12:47:01 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContacts.lfm
r8 r13 7 7 ClientHeight = 605 8 8 ClientWidth = 807 9 DesignTimePPI = 12010 9 OnClose = FormClose 11 10 OnCreate = FormCreate 12 11 OnShow = FormShow 13 LCLVersion = '1.8.0. 6'12 LCLVersion = '1.8.0.4' 14 13 object ListView1: TListView 15 14 Left = 0 … … 19 18 Align = alClient 20 19 Columns = < 20 item 21 Caption = 'Full Name' 22 Width = 200 23 end 21 24 item 22 25 Caption = 'First name' … … 29 32 item 30 33 Caption = 'Last Name' 31 Width = 10034 Width = 387 32 35 end> 33 36 OwnerData = True -
trunk/Forms/UFormContacts.pas
r8 r13 68 68 if Assigned(Contacts) and (Item.Index < Contacts.Count) then 69 69 with TContact(Contacts[Item.Index]) do begin 70 Item.Caption := FirstName; 70 Item.Caption := FullName; 71 Item.SubItems.Add(FirstName); 71 72 Item.SubItems.Add(MiddleName); 72 73 Item.SubItems.Add(LastName); -
trunk/Forms/UFormMain.lfm
r8 r13 5 5 Width = 785 6 6 Caption = 'FormMain' 7 ClientHeight = 5067 ClientHeight = 497 8 8 ClientWidth = 785 9 DesignTimePPI = 12010 9 Menu = MainMenu1 11 10 OnClose = FormClose … … 13 12 OnCreate = FormCreate 14 13 OnShow = FormShow 15 LCLVersion = '1.8.0. 6'14 LCLVersion = '1.8.0.4' 16 15 object CoolBar1: TCoolBar 17 16 Left = 0 … … 36 35 AnchorSideTop.Control = CoolBar1 37 36 Left = 24 38 Height = 2 237 Height = 28 39 38 Top = 5 40 Width = 1 0539 Width = 132 41 40 Align = alNone 42 41 AutoSize = True … … 56 55 end 57 56 object ToolButton2: TToolButton 58 Left = 2457 Left = 30 59 58 Top = 0 60 59 Action = Core.AFileOpen … … 63 62 end 64 63 object ToolButton3: TToolButton 65 Left = 5964 Left = 74 66 65 Top = 0 67 66 Action = Core.AFileSave 68 67 end 69 68 object ToolButton4: TToolButton 70 Left = 8269 Left = 103 71 70 Top = 0 72 71 Action = Core.AFileClose … … 77 76 AnchorSideTop.Control = CoolBar1 78 77 Left = 188 79 Height = 2 278 Height = 28 80 79 Top = 5 81 Width = 2480 Width = 30 82 81 Align = alNone 83 82 AutoSize = True … … 97 96 end 98 97 end 98 end 99 object StatusBar1: TStatusBar 100 Left = 0 101 Height = 30 102 Top = 467 103 Width = 785 104 Panels = < 105 item 106 Width = 200 107 end> 108 SimplePanel = False 99 109 end 100 110 object MainMenu1: TMainMenu -
trunk/Forms/UFormMain.pas
r8 r13 33 33 MenuItemFile: TMenuItem; 34 34 PopupMenuOpenRecent: TPopupMenu; 35 StatusBar1: TStatusBar; 35 36 ToolBarOther: TToolBar; 36 37 ToolBarFile: TToolBar; … … 60 61 61 62 uses 62 UCore, UFormContacts ;63 UCore, UFormContacts, UContact; 63 64 64 65 resourcestring 66 SCount = 'Count:'; 65 67 SModified = 'Modified'; 66 68 … … 120 122 UpdateFormTitle; 121 123 CoolBar1.Visible := MenuItemToolbar.Checked; 124 if Assigned(Core.DataFile) then 125 StatusBar1.Panels[0].Text := SCount + ' ' + IntToStr(TcontactsFile(Core.DataFile).Contacts.Count) 126 else StatusBar1.Panels[0].Text := ''; 122 127 end; 123 128 -
trunk/Languages/vCardStudio.cs.po
r9 r13 10 10 "Content-Transfer-Encoding: 8bit\n" 11 11 "Language: cs\n" 12 "X-Generator: Poedit 1.8.8\n"12 "X-Generator: Poedit 2.0.4\n" 13 13 14 14 #: tcore.aabout.caption … … 94 94 msgctxt "tformcontact.label10.caption" 95 95 msgid "Cell phone (Work):" 96 msgstr " "96 msgstr "Mobil (Práce):" 97 97 98 98 #: tformcontact.label11.caption 99 99 msgid "Fax:" 100 msgstr " "100 msgstr "Fax:" 101 101 102 102 #: tformcontact.label12.caption 103 103 msgid "Fax (Home):" 104 msgstr " "104 msgstr "Fax (Domov):" 105 105 106 106 #: tformcontact.label13.caption 107 107 msgid "Fax (Work):" 108 msgstr " "108 msgstr "Fax (Práce):" 109 109 110 110 #: tformcontact.label14.caption 111 111 msgid "Pager:" 112 msgstr " "112 msgstr "Pager:" 113 113 114 114 #: tformcontact.label15.caption 115 115 msgctxt "tformcontact.label15.caption" 116 116 msgid "Web page:" 117 msgstr " "117 msgstr "Webové stránky:" 118 118 119 119 #: tformcontact.label16.caption 120 120 msgctxt "tformcontact.label16.caption" 121 121 msgid "Web page (Home):" 122 msgstr " "122 msgstr "Webové stránky (Domov):" 123 123 124 124 #: tformcontact.label17.caption 125 125 msgctxt "tformcontact.label17.caption" 126 126 msgid "Web page (Work):" 127 msgstr " "127 msgstr "Webové stránky (Práce):" 128 128 129 129 #: tformcontact.label18.caption 130 130 msgid "Title:" 131 msgstr " "131 msgstr "Titul:" 132 132 133 133 #: tformcontact.label19.caption 134 134 msgid "Address:" 135 msgstr " "135 msgstr "Adresa:" 136 136 137 137 #: tformcontact.label2.caption … … 141 141 #: tformcontact.label20.caption 142 142 msgid "E-mail (Home):" 143 msgstr " "143 msgstr "E-mail (Domov):" 144 144 145 145 #: tformcontact.label21.caption 146 146 msgid "E-mail (Work):" 147 msgstr " "147 msgstr "E-mail (Práce):" 148 148 149 149 #: tformcontact.label22.caption 150 150 msgid "Birthday:" 151 msgstr " "151 msgstr "Narozeniny:" 152 152 153 153 #: tformcontact.label3.caption … … 169 169 #: tformcontact.label7.caption 170 170 msgid "Phone (Home):" 171 msgstr " "171 msgstr "Telefon (Domov):" 172 172 173 173 #: tformcontact.label8.caption 174 174 msgid "Phone (Work):" 175 msgstr " "175 msgstr "Telefon (Práce):" 176 176 177 177 #: tformcontact.label9.caption 178 178 msgid "Cell phone (Home):" 179 msgstr " "179 msgstr "Mobil (Domov):" 180 180 181 181 #: tformcontact.labelorganization.caption 182 182 msgid "Organization:" 183 msgstr " "183 msgstr "Společnost:" 184 184 185 185 #: tformcontact.listview1.columns[0].caption … … 220 220 221 221 #: tformcontacts.listview1.columns[0].caption 222 msgid "Full Name" 223 msgstr "Křestní jméno" 224 225 #: tformcontacts.listview1.columns[1].caption 222 226 msgid "First name" 223 msgstr "Křestní jméno" 224 225 #: tformcontacts.listview1.columns[1].caption 227 msgstr "Prostřední jméno" 228 229 #: tformcontacts.listview1.columns[2].caption 230 msgctxt "tformcontacts.listview1.columns[2].caption" 226 231 msgid "Middle name" 227 232 msgstr "Prostřední jméno" 228 233 229 #: tformcontacts.listview1.columns[2].caption 234 #: tformcontacts.listview1.columns[3].caption 235 msgctxt "tformcontacts.listview1.columns[3].caption" 230 236 msgid "Last Name" 231 237 msgstr "Příjimení" … … 343 349 msgstr "Opravdu chcete odstranit vybrané kontakty?" 344 350 351 #: uformmain.scount 352 msgid "Count:" 353 msgstr "Počet:" 354 345 355 #: uformmain.smodified 346 356 msgid "Modified" … … 351 361 msgid "vCard file" 352 362 msgstr "Soubor vCard" 353 -
trunk/Languages/vCardStudio.po
r9 r13 210 210 211 211 #: tformcontacts.listview1.columns[0].caption 212 msgid "Full Name" 213 msgstr "" 214 215 #: tformcontacts.listview1.columns[1].caption 212 216 msgid "First name" 213 217 msgstr "" 214 218 215 #: tformcontacts.listview1.columns[1].caption 219 #: tformcontacts.listview1.columns[2].caption 220 msgctxt "tformcontacts.listview1.columns[2].caption" 216 221 msgid "Middle name" 217 222 msgstr "" 218 223 219 #: tformcontacts.listview1.columns[2].caption 224 #: tformcontacts.listview1.columns[3].caption 225 msgctxt "tformcontacts.listview1.columns[3].caption" 220 226 msgid "Last Name" 221 227 msgstr "" … … 331 337 msgstr "" 332 338 339 #: uformmain.scount 340 msgid "Count:" 341 msgstr "" 342 333 343 #: uformmain.smodified 334 344 msgid "Modified"
Note:
See TracChangeset
for help on using the changeset viewer.