Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f65ae7eb6099b4ddb290ebb2670e48b6a4043f42 (plain) (blame)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
###############################################################################
# Copyright (c) 2007, 2009 Wind River Systems and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#   Wind River Systems - initial API and implementation
###############################################################################

RegisterColumnPresentation_name=Name
RegisterColumnPresentation_type=Type
RegisterColumnPresentation_value=Value
RegisterColumnPresentation_description=Description

RegisterGroupVMNode_Name_column__text_format={0}
RegisterGroupVMNode_Description_column__text_format={0}
RegisterGroupVMNode_Expression_column__text_format={0}
RegisterGroupVMNode_No_columns__text_format={0} - {1}

# {0} - register group name
# {1} - error message
RegisterGroupVMNode_No_columns__Error__text_format={0} - Error:{1}

RegisterVMNode_Name_column__text_format={0}
RegisterVMNode_Description_column__text_format={0}

# {0} - floating point, 0=integer/1=float
# {1} - readability, 0=not readable/1=readable/2=readonce
# {2} - write-ability, 0=not write-able/1=write-able/2=write once
RegisterVMNode_Type_column__text_format={0,choice,0#Unsigned|1#Floating Point} / {1,choice,0#ReadNone|1#Readable|2#ReadOnce},{2,choice,0#WriteNone|1#Writeable|2#WriteOnce}

RegisterVMNode_Expression_column__text_format={0}

# {0} - register name
# {1} - value formatted in the active format.  If the preferred format was available,
#       then this is just the value.  Otherwise, it's the string formatted by the
#       FormattedValueLabelText and the complexly created type.
RegisterVMNode_No_columns__text_format={0} = {1}

# {0} - register name
# {1} - value formatted in the active format.  If the preferred format was available,
#       then this is just the value.  Otherwise, it's the string formatted by the
#       FormattedValueLabelText and the complexly created type.
# {2} - floating point, 0=integer/1=float
# {3} - readability, 0=not readable/1=readable/2=readonce
# {4} - write-ability, 0=not write-able/1=write-able/2=write once
RegisterVMNode_No_columns__text_format_with_type={0} = {1}   (type: {2,choice,0#Unsigned|1#Floating Point} / {3,choice,0#ReadNone|1#Readable|2#ReadOnce},{4,choice,0#WriteNone|1#Writeable|2#WriteOnce})

# {0} - register name
# {1} - error message
RegisterVMNode_No_columns__Error__text_format={0} - Error:{1}

RegisterBitFieldVMNode_Name_column__text_format={0}
RegisterBitFieldVMNode_Description_column__text_format={0}

# {0} readability, 0=not readable/1=readable/2=readonce
# {1} write-ability, 0=not write-able/1=write-able/2=write once
RegisterBitFieldVMNode_Type_column__text_format={0,choice,0#ReadNone|1#Readable|2#ReadOnce},{1,choice,0#WriteNone|1#Writeable|2#WriteOnce}

# Message format for the value column text
# {0} - value formatted in the active format.  If the preferred format was available,
#       then this is just the value.  Otherwise, it's the string formatted by the
#       FormattedValueLabelText.
# {1} - bit field mnemonic
RegisterBitFieldVMNode_Value_column__With_mnemonic__text_format={0} - {1}

RegisterBitFieldVMNode_Expression_column__text_format={0}

# {0} - bit field name
# {1} - error message
RegisterBitFieldVMNode_No_columns__text_format={0} = {1}

# {0} - bit field name
# {1} - error message
# {2} - readability, 0=not readable/1=readable/2=readonce
# {3} - write-ability, 0=not write-able/1=write-able/2=write once
RegisterBitFieldVMNode_No_columns__text_format_with_type={0} = {1}   (type: {2,choice,0#ReadNone|1#Readable|2#ReadOnce},{3,choice,0#WriteNone|1#Writeable|2#WriteOnce})


# {0} - bit field name
# {1} - bit field value
# {2} - bit field mnemonic
RegisterBitFieldVMNode_No_columns__With_mnemonic__text_format={0} = {1} - {2}

# {0} - bit field name
# {1} - bit field value
# {2} - bit field mnemonic
# {3} - readability, 0=not readable/1=readable/2=readonce
# {4} - write-ability, 0=not write-able/1=write-able/2=write once
RegisterBitFieldVMNode_No_columns__With_mnemonic__text_format_with_type={0} = {1} - {2}   (type: {3,choice,0#ReadNone|1#Readable|2#ReadOnce},{4,choice,0#WriteNone|1#Writeable|2#WriteOnce})

# {0} - bit field name
# {1} - error message
RegisterBitFieldVMNode_No_columns__Error__text_format={0} - Error:{1}

Back to the top