-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextensionDocu.properties
56 lines (55 loc) · 2.44 KB
/
extensionDocu.properties
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
#######################################################################################
# KM documentation for extension points and controller hooks
#
# IMPORTANT NOTE: This file MUST be saved in UTF-8 encoding!
# This encoding is enforced when reading the file.
#
# See also:
# https://en.wikipedia.org/wiki/.properties
# http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html#load(java.io.Reader)
#
# This file must follow the Java properties format:
# <key> = <text>
# where
# <key> denoting the key of the extension point or controller hook.
#
# <text> stating the actual text or description. Java properties allow only for one line per key!
#
# When entering the text, consider the following:
#
# Always start the text with a verb, such as “Allows you to …”, “Adds columns to…”.
#
# For readability, the text can be multiple lines if the line ends with a backslash
# Example:
#
# S3.view.anExtensionPoint = Allows you to add an additional field to the input region.
#
# This can also be written as
#
# S3.view.anExtensionPoint = Allows you to add \
# an additional field to the input region.
#
# which will lead to the same final result.
#
# NOTE: Lines containing such a line break will NOT show up with these line breaks when the final result
# is parsed. See section below on how to enforce line breaks in the final text.
#
#######################################################################################
#
# Enforcing line breaks in the generated document
#
# If one wishes to enforce line breaks in the final document, this must be done
# by inserting \n (backslash + 'n') into the message. These points will be
# recognized as line breaks.
# One can combine this with properties line breaks for readability (\n\) and continue on
# the next line.
#
# Example:
# S3.view.anExtensionPoint = Allows you to add an \
# additional field to the input region.\n This line will appear as separate line.\n\
# This line will appear on a third line in the final text.
#
#######################################################################################
ProductDetails.fragment.extensionAfterObjectHeader = Allows you to add additional fields after the object header
ProductDetails.fragment.extensionForm = Allows you to add additional fields at the end of the product details section
ProductDetails.fragment.extensionAfterForm = Allows you to add additional fields after the product details section