summaryrefslogtreecommitdiffstats
path: root/kabc/scripts/entrylist
blob: 40af0d0c27391a5b87bbccb7e5486ee6858e1bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# This file describes the fields of an address book entry.
#
# The following comma-separated fields are used:
#
#          Control: A generates accessor functions.
#                   L generates a static function for returning a tranlsated label
#                   F generates a Field id and object for generic field handling
#                   E generate an equality test in Addressee::operator==().
#      Field Name : A descriptive name which is shown to the user.
#         Comment : A comment helping translators to understand the field name
#            Type : C++ type of field.
#      Identifier : A string used in code as variable name etc.
#  Field Category : Categories the field belongs to (see Field::FieldCategory).
#  Output function: Function used to convert type to string for debug output (optional)

ALE,name,,QString,name

ALFE,formatted name,,QString,formattedName,Frequent

ALFE,family name,,QString,familyName,Frequent
ALFE,given name,,QString,givenName,Frequent
ALFE,additional names,,QString,additionalName
ALFE,honorific prefixes,,QString,prefix
ALFE,honorific suffixes,,QString,suffix

ALFE,nick name,,QString,nickName,Personal

ALFE,birthday,,QDateTime,birthday,Personal,.toString()

#Address address
LF,home address street,,QString,homeAddressStreet,Address|Personal
LF,home address city,,QString,homeAddressLocality,Address|Personal
LF,home address state,,QString,homeAddressRegion,Address|Personal
LF,home address zip code,,QString,homeAddressPostalCode,Address|Personal
LF,home address country,,QString,homeAddressCountry,Address|Personal
LF,home address label,,QString,homeAddressLabel,Address|Personal

LF,business address street,,QString,businessAddressStreet,Address|Organization
LF,business address city,,QString,businessAddressLocality,Address|Organization
LF,business address state,,QString,businessAddressRegion,Address|Organization
LF,business address zip code,,QString,businessAddressPostalCode,Address|Organization
LF,business address country,,QString,businessAddressCountry,Address|Organization
LF,business address label,,QString,businessAddressLabel,Address|Organization

#phoneNumbers
LF,home phone,,QString,homePhone,Personal|Frequent
LF,business phone,,QString,businessPhone,Organization|Frequent
LF,mobile phone,,QString,mobilePhone,Frequent
LF,home fax,,QString,homeFax
LF,business fax,,QString,businessFax
LF,car phone,,QString,carPhone
LF,ISDN,,QString,isdn
LF,pager,,QString,pager

#emails
LF,email address,,QString,email,Email|Frequent

ALFE,mail client,,QString,mailer,Email

ALE,time zone,,TimeZone,timeZone,,.asString()
ALE,geographic position,,Geo,geo,,.asString()

ALFE,title,person,QString,title,Organization
ALFE,role,person in organization,QString,role,Organization
ALFE,organization,,QString,organization,Organization
ALFE,department,,QString,department,Organization

ALFE,note,,QString,note

ALE,product identifier,,QString,productId
ALE,revision date,,QDateTime,revision,,.toString()

ALE,sort string,,QString,sortString

ALF,homepage,,KURL,url,,.url()

ALE,security class,,Secrecy,secrecy,,.asString()

ALE,logo,,Picture,logo,,.asString()
ALE,photo,,Picture,photo,,.asString()
ALE,sound,,Sound,sound,,.asString()
ALE,agent,,Agent,agent,,.asString()