Fix FN when empty (with a configurable option) + some i18n
[jvcard.git] / src / be / nikiroo / jvcard / resources / display.properties
1 # display options configuration
2
3 # The contact list format is basically a list of VCF field names
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
9 #
10 # In case of lists or multiple-fields values, you can select a specific
11 # list or field with:
12 # - FIELD@(0): select the first value in a list</li>
13 # - FIELD@[1]: select the second field in a multiple-fields value</li>
14 #
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"
18 #
19 # You can cycle through them if you have more than one
20 # (in this case, separate them with a comma (',')
21 CONTACT_LIST_FORMAT = NICKNAME@10|FN@+|EMAIL@30|PHOTO@x,N@[0]@20|N@[1]@+|EMAIL@40
22
23 # The list of details to show in View Contact mode:
24 # - Each detail (separated by a pipe "|" character) is visible on its own line
25 # - It is made up of two parts: the label and the linked VCF field (optional),
26 # separated by an equal "=", sharp "#", plus "+" or asterisk "*" sign
27 # - "=FIELD" will take the preferred value for this field
28 # - "+FIELD" will take the preferred value for this field and highlight it
29 # - "#FIELD" will take all the values with this field's name
30 # - "*FIELD" will take all the values with this field's name, highlighting the preferred one
31 #
32 # Example:
33 # CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
34 #
35 # This will print two lines in View mode:
36 # Phone: +32 888 88 88 88
37 # eMail: nobody@nowhere.com
38 CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
39
40 # The size of the details' labels
41 CONTACT_DETAILS_LABEL_WIDTH = 12
42
43 CONTACT_DETAILS_DEFAULT_FN = N@[1]|' |N@[0]
44
45 CONTACT_DETAILS_SHOW_COMPUTED_FN = true