You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.3 KiB
85 lines
3.3 KiB
# 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 post office box,,QString,homeAddressPostOfficeBox,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 post office box,,QString,businessAddressPostOfficeBox,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()
|