Fix FN when empty (with a configurable option) + some i18n
[jvcard.git] / src / be / nikiroo / jvcard / resources / display.properties
index d03d45b343b7de26710d74a9536b6ba48e58dc4e..3b6a0561c764706ae8e01831513d5689fbe212ad 100644 (file)
@@ -6,7 +6,40 @@
 # - @x: (the 'x' is the letter 'x') show only a present/not present info
 # - @n: limit the size to a fixed value 'n'
 # - @+: expand the size of this field as much as possible
+#
+# In case of lists or multiple-fields values, you can select a specific
+# list or field with:
+# - FIELD@(0): select the first value in a list</li>
+# - FIELD@[1]: select the second field in a multiple-fields value</li>
+#
+# You can also add a fixed text if it starts with a simple-quote (').
+#
+# Example: "'Contact: |N@10|FN@20|NICK@+|PHOTO@x"
 # 
 # You can cycle through them if you have more than one
 # (in this case, separate them with a comma (',')
-CONTACT_LIST_FORMAT = NICKNAME@10|FN@+|EMAIL@30|PHOTO@x,FN@+|EMAIL@40
+CONTACT_LIST_FORMAT = NICKNAME@10|FN@+|EMAIL@30|PHOTO@x,N@[0]@20|N@[1]@+|EMAIL@40
+
+# The list of details to show in View Contact mode:
+# - Each detail (separated by a pipe "|" character) is visible on its own line
+# - It is made up of two parts: the label and the linked VCF field (optional),
+#              separated by an equal "=", sharp "#", plus "+" or asterisk "*" sign
+# - "=FIELD" will take the preferred value for this field
+# - "+FIELD" will take the preferred value for this field and highlight it
+# - "#FIELD" will take all the values with this field's name
+# - "*FIELD" will take all the values with this field's name, highlighting the preferred one
+#
+# Example:
+#      CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
+#
+# This will print two lines in View mode:
+#      Phone: +32 888 88 88 88
+#      eMail: nobody@nowhere.com
+CONTACT_DETAILS_INFO = Phone:=TEL|eMail:=EMAIL
+
+# The size of the details' labels
+CONTACT_DETAILS_LABEL_WIDTH = 12
+
+CONTACT_DETAILS_DEFAULT_FN = N@[1]|' |N@[0]
+
+CONTACT_DETAILS_SHOW_COMPUTED_FN = true