- Timestamp:
- Dec 13, 2021, 11:45:47 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContacts.lfm
r73 r74 14 14 object ListView1: TListView 15 15 Left = 0 16 Height = 8 0116 Height = 810 17 17 Top = 0 18 18 Width = 1210 … … 66 66 Left = 0 67 67 Height = 39 68 Top = 8 3368 Top = 842 69 69 Width = 1210 70 70 Align = alBottom … … 114 114 Left = 0 115 115 Height = 32 116 Top = 8 01116 Top = 810 117 117 Width = 1210 118 118 OnChange = ListViewFilter1Change … … 121 121 object StatusBar1: TStatusBar 122 122 Left = 0 123 Height = 36124 Top = 8 72123 Height = 27 124 Top = 881 125 125 Width = 1210 126 126 Panels = < -
trunk/Forms/UFormContacts.pas
r73 r74 355 355 for I := 0 to ListView1.Items.Count - 1 do 356 356 if ListView1.Items[I].Selected then begin 357 Strings.Clear; 357 358 TContact(ListView1.Items[I].Data).SaveToStrings(Strings); 358 359 Text := Text + Strings.Text; … … 375 376 for I := 0 to ListView1.Items.Count - 1 do 376 377 if ListView1.Items[I].Selected then begin 378 Strings.Clear; 377 379 TContact(ListView1.Items[I].Data).SaveToStrings(Strings); 378 380 Text := Text + Strings.Text; … … 562 564 ALoadFromFile.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 563 565 ASaveToFile.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 566 ACopy.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 567 ACut.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 568 APaste.Enabled := Assigned(Contacts) and (Clipboard.AsText <> ''); 564 569 end; 565 570 -
trunk/Languages/vCardStudio.cs.po
r73 r74 915 915 msgstr "LinkedIn" 916 916 917 #: ucontact.slogo 918 msgid "Logo" 919 msgstr "Logo" 920 917 921 #: ucontact.smainphone 918 922 msgid "Main phone" -
trunk/Languages/vCardStudio.po
r73 r74 903 903 msgstr "" 904 904 905 #: ucontact.slogo 906 msgid "Logo" 907 msgstr "" 908 905 909 #: ucontact.smainphone 906 910 msgid "Main phone" -
trunk/UContact.pas
r73 r74 28 28 cfWorkAddressPostalCode, cfWorkAddressRegion, cfWorkAddressPostOfficeBox, 29 29 cfXTimesContacted, cfXLastTimeContacted, cfPhoto, cfDayOfBirth, cfRevision, 30 cfVersion, cfAnniversary, cfGender, 30 cfVersion, cfAnniversary, cfGender, cfLogo, 31 31 cfJabber, cfIcq, cfWindowsLive, cfGoogleTalk, cfAim, cfQq, cfYahoo, cfIrc, 32 32 cfSkype, cfMsn, cfGroupWise, cfGaduGadu, … … 233 233 SLastTimeContacted = 'Last Time Contacted'; 234 234 SPhoto = 'Photo'; 235 SLogo = 'Logo'; 235 236 SJabber = 'Jabber'; 236 237 SDayOfBirth = 'Day of birth'; … … 1132 1133 AddNew('X-LAST_TIME_CONTACTED', [], [], SLastTimeContacted, cfXLastTimeContacted, dtString); 1133 1134 AddNew('PHOTO', [], [], SPhoto, cfPhoto, dtImage); 1135 AddNew('LOGO', [], [], SLogo, cfLogo, dtImage); 1134 1136 AddNew('BDAY', [], [], SDayOfBirth, cfDayOfBirth, dtDate); 1135 1137 with AddNew('ANNIVERSARY', [], [], SAnniversary, cfAnniversary, dtDate) do
Note:
See TracChangeset
for help on using the changeset viewer.