rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=780936cef511918945e87cf01829b55c6ba94e98

commit 780936cef511918945e87cf01829b55c6ba94e98
Author: Viacheslav Reutskyi <reutskiy....@gmail.com>
Date:   Sun Feb 14 13:16:09 2016 +0200

    property_sound: delete colon after attributes name
---
 src/bin/ui/property_sound.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/bin/ui/property_sound.c b/src/bin/ui/property_sound.c
index 9505a4c..686d8cc 100644
--- a/src/bin/ui/property_sound.c
+++ b/src/bin/ui/property_sound.c
@@ -129,7 +129,7 @@ static Evas_Object *
 prop_sound_editor_tone_frequency_add(Evas_Object *parent,
                                      Sound_Prop_Data *pd)
 {
-   PROPERTY_ITEM_ADD(parent, _("tone frequency"), "2swallow")
+   PROPERTY_ITEM_ADD(parent, _("requency"), "2swallow")
    SPINNER_ADD(item, pd->snd_data.tone_frq, 200, 20000, 10, false)
    elm_layout_content_set(item, "swallow.content1", pd->snd_data.tone_frq);
    elm_object_disabled_set(pd->snd_data.tone_frq, true);
@@ -661,13 +661,13 @@ _sample_info_create(Evas_Object *parent, Sound_Prop_Data 
*edit)
    BOX_ADD(edit->info_frame, edit->sample_box, false, false);
    elm_box_align_set(edit->sample_box, 0.5, 0.0);
 
-   item = prop_item_label_add(edit->sample_box, &edit->snd_data.file_name, 
_("file name:"), _(" - "));
+   item = prop_item_label_add(edit->sample_box, &edit->snd_data.file_name, 
_("file name"), _(" - "));
    elm_box_pack_end(edit->sample_box, item);
-   item = prop_item_label_add(edit->sample_box, &edit->snd_data.duration, 
_("duration:"), _(" - "));
+   item = prop_item_label_add(edit->sample_box, &edit->snd_data.duration, 
_("duration"), _(" - "));
    elm_box_pack_end(edit->sample_box, item);
-   item = prop_item_label_add(edit->sample_box, &edit->snd_data.type, 
_("type:"), _(" - "));
+   item = prop_item_label_add(edit->sample_box, &edit->snd_data.type, 
_("type"), _(" - "));
    elm_box_pack_end(edit->sample_box, item);
-   item = prop_item_label_add(edit->sample_box, &edit->snd_data.size, 
_("size:"), _(" - "));
+   item = prop_item_label_add(edit->sample_box, &edit->snd_data.size, 
_("size"), _(" - "));
    elm_box_pack_end(edit->sample_box, item);
 
    item = prop_sound_editor_compression_type_add(edit->sample_box, edit);
@@ -690,7 +690,7 @@ _tone_info_create(Evas_Object *parent, Sound_Prop_Data 
*edit)
    BOX_ADD(edit->info_frame, edit->tone_box, false, false);
    elm_box_align_set(edit->tone_box, 0.5, 0.0);
 
-   item = prop_item_label_add(edit->tone_box, &edit->snd_data.tone_name, 
_("name:"), _(" - "));
+   item = prop_item_label_add(edit->tone_box, &edit->snd_data.tone_name, 
_("name"), _(" - "));
    elm_box_pack_end(edit->tone_box, item);
 
    item = prop_sound_editor_tone_frequency_add(edit->tone_box, edit);

-- 


Reply via email to