rimmed pushed a commit to branch master. http://git.enlightenment.org/tools/eflete.git/commit/?id=2d8cb6cad57db06eacfb63b7e1b49b40dc98b6b9
commit 2d8cb6cad57db06eacfb63b7e1b49b40dc98b6b9 Author: Mykyta Biliavskyi <m.biliavs...@samsung.com> Date: Wed Jun 22 16:55:42 2016 +0300 Textblock style property: update tooltips strings. --- src/bin/ui/property/property_textblock.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/src/bin/ui/property/property_textblock.c b/src/bin/ui/property/property_textblock.c index 345c336..d43691e 100644 --- a/src/bin/ui/property/property_textblock.c +++ b/src/bin/ui/property/property_textblock.c @@ -1223,27 +1223,27 @@ _init_items() case PROPERTY_TEXTBLOCK_ITEM_TEXT_FONT_NAME: IT.name = "Font name"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_ENTRY, ATTRIBUTE_TEXTBLOCK_ITEM_TEXT_FONT_NAME, - _("Font description in fontconfig format.<br>" + _("Font description in fontconfig format. " "For example, \"Sans:style=Italic:lang=hi\" or \"Serif:style=Bold\".")); break; case PROPERTY_TEXTBLOCK_ITEM_TEXT_FONT_STYLE_WEIGHT: IT.name = "Font style (weight)"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_COMBOBOX, ATTRIBUTE_TEXTBLOCK_ITEM_TEXT_FONT_STYLE_WEIGHT, - _("Overrides the weight defined in \"font\".<br>" - "For example, the value \"Bold\" is the<br>" + _("Overrides the weight defined in \"font\". " + "For example, the value \"Bold\" is the " "same as font value \"style=Bold\".")); break; case PROPERTY_TEXTBLOCK_ITEM_TEXT_FONT_STYLE_WIDTH: IT.name = "Font style (width)"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_COMBOBOX, ATTRIBUTE_TEXTBLOCK_ITEM_TEXT_FONT_STYLE_WIDTH, - _("Overrides the width defined in \"font\".<br>" - "For example, the value \"Condensed\" is the<br>" + _("Overrides the width defined in \"font\". " + "For example, the value \"Condensed\" is the " "same as font value \"style=Condensed\".")); break; case PROPERTY_TEXTBLOCK_ITEM_TEXT_COLOR: IT.name = "Color"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_COLOR, ATTRIBUTE_TEXTBLOCK_ITEM_TEXT_COLOR, - _("Text color. Color can be chosen<br>" + _("Text color. Color can be chosen " "using the color selector UI tool.")); break; case PROPERTY_TEXTBLOCK_ITEM_TEXT_SIZE: @@ -1262,9 +1262,9 @@ _init_items() IT.name = "Horizontal align"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_COMBOBOX, ATTRIBUTE_TEXTBLOCK_ITEM_POSITION_ALIGN_HOR, _("Sets the horizontal alignment of the text.<br>" - " * auto - Respects LTR/RTL settings. <br>" + " * auto - Respects LTR/RTL settings.<br> " " * center - Centers the text in the line.<br>" - " * middle - Alias for \"center\"<br>" + " * middle - Alias for \"center\"<br> " " * left - Aligns the text left.<br>" " * right - Aligns the text right.<br>")); break; @@ -1306,7 +1306,7 @@ _init_items() case PROPERTY_TEXTBLOCK_ITEM_FORMAT_TABSTOPS: IT.name = "Tabstops"; _action1(&IT, NULL, "px", PROPERTY_CONTROL_SPINNER, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_TABSTOPS, - _("Sets the size of the tab character.<br>" + _("Sets the size of the tab character. " "The value must be a number greater than 1.")); break; case PROPERTY_TEXTBLOCK_ITEM_FORMAT_LINE_SIZE: @@ -1324,21 +1324,22 @@ _init_items() case PROPERTY_TEXTBLOCK_ITEM_FORMAT_PASSWORD: IT.name = "Password field"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_CHECK, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_PASSWORD, - _("Sets if the text is being used for passwords.<br>" + _("Sets if the text is being used for passwords. " "Enabling this causes all characters to be substituted for '*'.")); break; case PROPERTY_TEXTBLOCK_ITEM_FORMAT_ELLIPSIS: IT.name = "Ellipsis"; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_CHECK, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_ELLIPSIS_CHECK, - _("Enables or disables the ellipsis feature for text.")); _action2(&IT, NULL, NULL, PROPERTY_CONTROL_SPINNER, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_ELLIPSIS_VALUE, - _("Sets the ellipsis mode. A value of 0 means ellipsizing<br>" - "the leftmost portion of the text first,<br>" + _("Enables or disables the ellipsis feature for text.")); + _action2(&IT, NULL, NULL, PROPERTY_CONTROL_SPINNER, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_ELLIPSIS_VALUE, + _("Sets the ellipsis mode. A value of 0 means ellipsizing " + "the leftmost portion of the text first, " "1 on the other hand the rightmost portion.")); break; case PROPERTY_TEXTBLOCK_ITEM_FORMAT_LINE_RELATED_SIZE: IT.name = "Line related size"; _action1(&IT, NULL, "px", PROPERTY_CONTROL_SPINNER, ATTRIBUTE_TEXTBLOCK_ITEM_FORMAT_LINE_RELATED_SIZE, - _("A floating point value indicating the wanted size<br>" + _("A floating point value indicating the wanted size " "of the line relative to the calculated size.")); break; @@ -1406,7 +1407,7 @@ _init_items() IT.name = "Underline color two"; IT.filter_cb = _underline_filter_cb; _action1(&IT, NULL, NULL, PROPERTY_CONTROL_COLOR, ATTRIBUTE_TEXTBLOCK_ITEM_LINES_UNDERLINE_COLOR_TWO, - _("Sets the color of the second line of the underline<br>" + _("Sets the color of the second line of the underline " "when using the \"double\" underline mode.")); break; case PROPERTY_TEXTBLOCK_ITEM_LINES_UNDERLINE_DASH: --