preference_setting: change the description

Summary: change the description

Test Plan:
1. open setting menue
2. move the mouse cursor on View Size, Auto Hiding Console, Smart Undo/Redo and Error Message Alert
3. see the tooltip messages

Reviewers: Jaehyun_Cho, NikaWhite, bowonryu, Hermet

Reviewed By: Hermet

Differential Revision: https://phab.enlightenment.org/D4099
This commit is contained in:
Taehyub Kim 2016-06-28 13:51:42 +09:00 committed by Hermet Park
parent 2391268f5b
commit 3690f6d012
1 changed files with 21 additions and 24 deletions

View File

@ -156,7 +156,7 @@ preference_setting_content_get(preference_setting_data *psd,
elm_box_pack_end(box, box2); elm_box_pack_end(box, box2);
elm_object_tooltip_text_set(box2, elm_object_tooltip_text_set(box2,
_("Set current live view size.")); _("Set the size of the current live view."));
//Label (View Size) //Label (View Size)
/* This layout is intended to put the label aligned to left side /* This layout is intended to put the label aligned to left side
@ -227,7 +227,7 @@ preference_setting_content_get(preference_setting_data *psd,
toggle_create(box, _("Tools"), toggle_create(box, _("Tools"),
config_tools_get(), config_tools_get(),
_("Tools (F7)<br>" _("Tools (F7)<br>"
"Display Tools on the top area.<br>" "Display the tools on the top area.<br>"
"Tools displays the essential function <br>" "Tools displays the essential function <br>"
"toggles to edit the layout.")); "toggles to edit the layout."));
elm_box_pack_end(box, toggle_tools); elm_box_pack_end(box, toggle_tools);
@ -244,49 +244,46 @@ preference_setting_content_get(preference_setting_data *psd,
//Toggle (Console) //Toggle (Console)
Evas_Object *toggle_console = Evas_Object *toggle_console =
toggle_create(box, _("Auto Hiding Console"), config_console_get(), toggle_create(box, _("Auto Hiding Console"), config_console_get(),
_("Hide Console box automatically<br>" _("Hide the console box automatically<br>"
"when no messages. If you fixed<br>" "when no messages are to be shown.<br>"
"all grammatic edc errors so the error<br>" "for example, when you have fixed all<br>"
"messages has gone, Console box will<br>" "grammatical errors."));
"be disappeared automatically."));
elm_box_pack_end(box, toggle_console); elm_box_pack_end(box, toggle_console);
//Toggle (Auto Indentation) //Toggle (Auto Indentation)
Evas_Object *toggle_indent = Evas_Object *toggle_indent =
toggle_create(box, _("Auto Indentation"), config_auto_indent_get(), toggle_create(box, _("Auto Indentation"), config_auto_indent_get(),
_("Auto Indentation (Ctrl + I)<br>" _("Auto indentation (Ctrl + I)<br>"
"Apply auto indentation for text editing.<br>" "Apply automatic indentation for text editing.<br>"
"When wrapping the text around,<br>" "When wrapping the text around, Enventor<br>"
"Enventor inserts spaces automatically<br>" "inserts the line indentation automatically."));
"for the line indentation"));
elm_box_pack_end(box, toggle_indent); elm_box_pack_end(box, toggle_indent);
//Toggle (Auto Completion) //Toggle (Auto Completion)
Evas_Object *toggle_autocomp = Evas_Object *toggle_autocomp =
toggle_create(box, _("Auto Completion"), config_auto_complete_get(), toggle_create(box, _("Auto Completion"), config_auto_complete_get(),
_("Auto Completion (Ctrl + O)<br>" _("Auto completion (Ctrl + O)<br>"
"Display candidate keywords popup with<br>" "Display the candidate keyword popup with<br>"
"regards to the current editing contxt.<br>" "regards to the current editing contxt.<br>"
"When you type texts in editor, candidate<br>" "When you type texts in the editor, the candidate<br>"
"popup will be popped. Once you choose one<br>" "popup appears. You can choose an item<br>"
"of items in it, template code with regards<br>" "from the list, and a code template is inserted."));
"to the item will be inserted."));
elm_box_pack_end(box, toggle_autocomp); elm_box_pack_end(box, toggle_autocomp);
//Toggle (Smart Undo/Redo) //Toggle (Smart Undo/Redo)
Evas_Object *toggle_smart_undo_redo = Evas_Object *toggle_smart_undo_redo =
toggle_create(box, _("Smart Undo/Redo"), config_smart_undo_redo_get(), toggle_create(box, _("Smart Undo/Redo"), config_smart_undo_redo_get(),
_("Redo/Undo text by word. Otherwise, it<br>" _("Redo/Undo text by word. If disabled, redoing<br>"
"works by character")); "and undoing works by character."));
elm_box_pack_end(box, toggle_smart_undo_redo); elm_box_pack_end(box, toggle_smart_undo_redo);
//Toggle (Red Alert) //Toggle (Red Alert)
Evas_Object *toggle_red_alert = Evas_Object *toggle_red_alert =
toggle_create(box, _("Error Message Red Alert"), config_red_alert_get(), toggle_create(box, _("Error Message Red Alert"), config_red_alert_get(),
_("Enable Error Message Red Alert Effect.<br>" _("Enable the error message red alert effect.<br>"
"When edc compilation is failed because<br>" "When the EDC compilation fails because of<br>"
"of a sort of grammartic error, Enventor<br>" "a grammartical error, Enventor alerts<br>"
"alerts you with screen fading effect.")); "you with a fading screen effect."));
evas_object_size_hint_weight_set(toggle_red_alert, EVAS_HINT_EXPAND, evas_object_size_hint_weight_set(toggle_red_alert, EVAS_HINT_EXPAND,
EVAS_HINT_EXPAND); EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(toggle_red_alert, EVAS_HINT_FILL, 0); evas_object_size_hint_align_set(toggle_red_alert, EVAS_HINT_FILL, 0);