uidesigner/com.nokia.sdt.series60.componentlibrary/components/controls/CAknSlider.properties
author Steve Sobek <steve.sobek@nokia.com>
Tue, 14 Apr 2009 18:40:50 -0500
changeset 96 dc3dca9ced31
parent 2 d760517a8095
permissions -rw-r--r--
Fix TOC XML in hopes that 2.1 will build & carefully formatted lots of lines for readability.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
cawthron
parents:
diff changeset
     1
friendlyName=Slider
cawthron
parents:
diff changeset
     2
information=An S60 slider control graphically displays a bounded value.
cawthron
parents:
diff changeset
     3
layout=layout
cawthron
parents:
diff changeset
     4
layoutDescription=Appearance of the slider, telling whether labels, the min/max values, or the slider itself are displayed
cawthron
parents:
diff changeset
     5
minValue=minimum value
cawthron
parents:
diff changeset
     6
minValueDescription=Minimum value the slider is allowed to take 
cawthron
parents:
diff changeset
     7
maxValue=maximum value
cawthron
parents:
diff changeset
     8
maxValueDescription=Maximum value (inclusive) the slider is allowed to take
cawthron
parents:
diff changeset
     9
value=value
cawthron
parents:
diff changeset
    10
valueDescription=Initial value of the slider
cawthron
parents:
diff changeset
    11
step=step value
cawthron
parents:
diff changeset
    12
stepDescription=Integral step between contiguous values in the slider; this must satisfy the relation: (maxValue - minValue) % step == 0 
cawthron
parents:
diff changeset
    13
valueType=format
cawthron
parents:
diff changeset
    14
valueTypeDescription=Displayed format of the value
cawthron
parents:
diff changeset
    15
decimalPlaces=decimal places
cawthron
parents:
diff changeset
    16
decimalPlacesDescription=If the format is "decimal", the number of decimal places displayed
cawthron
parents:
diff changeset
    17
singularValueLabel=singular value label
cawthron
parents:
diff changeset
    18
singularValueLabelDescription=If the format is "plain figure", the format string used when the value is 1 (use "%U" to represent the number)
cawthron
parents:
diff changeset
    19
minLabel=minimum value label
cawthron
parents:
diff changeset
    20
minLabelDescription=Label displayed at the minimum end of the slider
cawthron
parents:
diff changeset
    21
maxLabel=maximum value label
cawthron
parents:
diff changeset
    22
maxLabelDescription=Label displayed at the maximum end of the slider
cawthron
parents:
diff changeset
    23
graphicalImage=graphical image
cawthron
parents:
diff changeset
    24
graphicalImageDescription=Image displayed above the slider while editing in the "setting item with graphics" layout 
cawthron
parents:
diff changeset
    25
EAknFormSliderLayout1=value only layout
cawthron
parents:
diff changeset
    26
EAknFormSliderLayout2=min/max label layout
cawthron
parents:
diff changeset
    27
EAknFormSliderLayout3=value and min/max label layout
cawthron
parents:
diff changeset
    28
EAknSettingsItemSliderLayout=settings item
cawthron
parents:
diff changeset
    29
EAknSettingsItemSliderLayoutWithGraphics=settings item with graphics
cawthron
parents:
diff changeset
    30
EAknSliderValueNone=none
cawthron
parents:
diff changeset
    31
EAknSliderValueBareFigure=plain figure
cawthron
parents:
diff changeset
    32
EAknSliderValuePercentage=percentage
cawthron
parents:
diff changeset
    33
EAknSliderValueFraction=fraction
cawthron
parents:
diff changeset
    34
EAknSliderValueDecimal=decimal
cawthron
parents:
diff changeset
    35
invalidRange=the range in instance ''{0}'' is invalid (failed test: {1} <= {2})
cawthron
parents:
diff changeset
    36
valueExceedsRange=the ''value'' property in instance ''{0}'' is out of range (failed test: {1} <= {2} <= {3})
cawthron
parents:
diff changeset
    37
stepNotValid=the ''step'' property in instance ''{0}'' is invalid (failed test: ({1} - {2}) % {3} == 0)
cawthron
parents:
diff changeset
    38
valueNotValid=the ''value'' property in instance ''{0}'' is invalid (failed test: ({1} - {2}) % {3} == 0) 
cawthron
parents:
diff changeset
    39
cawthron
parents:
diff changeset
    40
maxValueConstraint=The maximum value must be greater than the minimum value ({1}) and current value ({2}).
cawthron
parents:
diff changeset
    41
minValueConstraint=The minimum value must be less than the maximum value ({1}) and current value ({2}).
cawthron
parents:
diff changeset
    42
minMaxStepConstraint=The step size ({0}) must divide into the difference of minimum and maximum values ({1} - {2} = {3}).
cawthron
parents:
diff changeset
    43
stepConstraint=The step value ({0}) must divide into the difference of the minimum and maximum values ({1} - {2} = {3}).
cawthron
parents:
diff changeset
    44
stepValueConstraint=The step value ({0}) must divide into the difference of the current value and the minimum ({1} - {2} = {3}).
cawthron
parents:
diff changeset
    45
valueConstraint=The value ({0}) must be between the minimum and maximum values ({1} <= value <= {2}).
cawthron
parents:
diff changeset
    46
valueStepConstraint=The difference of the value and minimum ({0} - {1} = {2}) must be a multiple of the step size ({3}).