Resources system rewrite + new "--save-config DIR" option
[jvcard.git] / src / be / nikiroo / jvcard / resources / display.properties
CommitLineData
e119a1c1
NR
1# Display options configuration
2#
3# The Contact List Format (CLF) is basically a list of VCF field names
d56a0ad4
NR
4# separated by a pipe and optionally parametrised.
5# The parameters allows you to:
6# - @x: (the 'x' is the letter 'x') show only a present/not present info
7# - @n: limit the size to a fixed value 'n'
8# - @+: expand the size of this field as much as possible
26d254a3 9#
30a4aa17
NR
10# In case of lists or multiple-fields values, you can select a specific
11# list or field with:
e119a1c1
NR
12# - FIELD@(0): select the first value in a list
13# - FIELD@[1]: select the second field in a multiple-fields value
30a4aa17 14#
26d254a3
NR
15# You can also add a fixed text if it starts with a simple-quote (').
16#
17# Example: "'Contact: |N@10|FN@20|NICK@+|PHOTO@x"
d56a0ad4 18#
e119a1c1
NR
19#
20# The Contact Details Info Format (CDIF):
3634193b
NR
21# - Each detail (separated by a pipe "|" character) is visible on its own line
22# - It is made up of two parts: the label and the linked VCF field (optional),
23# separated by an equal "=", sharp "#", plus "+" or asterisk "*" sign
24# - "=FIELD" will take the preferred value for this field
25# - "+FIELD" will take the preferred value for this field and highlight it
26# - "#FIELD" will take all the values with this field's name
27# - "*FIELD" will take all the values with this field's name, highlighting the preferred one
28#
29# Example:
30# CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
31#
e119a1c1 32# This will print two lines:
3634193b
NR
33# Phone: +32 888 88 88 88
34# eMail: nobody@nowhere.com
e119a1c1
NR
35#
36
3634193b 37
e119a1c1
NR
38# (FORMAT: coma-separated list of CLF)
39# The format of each line in the contact list
40CONTACT_LIST_FORMAT = NICKNAME@10|FN@+|EMAIL@30|PHOTO@x,N@[0]@20|N@[1]@+|EMAIL@40
41# (FORMAT: CDIF)
42# The list of details to show in View Contact mode
43CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
44# (FORMAT: Integer or nothing for auto)
3634193b
NR
45# The size of the details' labels
46CONTACT_DETAILS_LABEL_WIDTH = 12
e119a1c1
NR
47# (FORMAT: CLF)
48# The default value of FN if it is not present
30a4aa17 49CONTACT_DETAILS_DEFAULT_FN = N@[1]|' |N@[0]
e119a1c1
NR
50# (FORMAT: TRUE or FALSE)
51# TRUE to force all FNs to be recreated from CONTACT_DETAILS_DEFAULT_FN
30a4aa17 52CONTACT_DETAILS_SHOW_COMPUTED_FN = true