Better messages and fixes for gettext stuff

This is a squashed commit of:
 r81661 r81742 r82050 r82085 r82293 r82307 r82787 r82788 r83088


SVN revision: 83092
This commit is contained in:
Igor Murzov 2013-01-22 15:40:59 +00:00
parent 246a7b79bc
commit c6e5116146
18 changed files with 50 additions and 57 deletions

View File

@ -1,3 +1,9 @@
2013-01-22 Igor Murzov
* Marked some messages for translation
* Better gettext usage in a few places
* Fixed some typos and improved some messages a bit
2013-01-22 Mike Blumenkrantz
* No longer build illume edj files

1
NEWS
View File

@ -10,6 +10,7 @@ Removed:
Improvements:
* Mixer settings dialog is now resizable
* No longer build illume edj files
* Better messages in UI
Fixes:
* Fixed crash when changing ibar source

View File

@ -255,6 +255,7 @@ src/modules/start/e_mod_main.c
src/modules/syscon/e_int_config_syscon.c
src/modules/syscon/e_mod_main.c
src/modules/syscon/e_syscon.c
src/modules/syscon/e_syscon_gadget.c
src/modules/temperature/e_mod_config.c
src/modules/temperature/e_mod_main.c
src/modules/wizard/e_mod_main.c

View File

@ -1618,7 +1618,7 @@ _e_int_menus_shelves_pre_cb(void *data __UNUSED__, E_Menu *m)
if (es->zone->num != zone->num) continue;
if (es->cfg->container != (int)con->num) continue;
snprintf(buf, sizeof(buf), "%s %s", _("Shelf"),
snprintf(buf, sizeof(buf), _("Shelf %s"),
e_shelf_orient_string_get(es));
mi = e_menu_item_new(m);

View File

@ -202,7 +202,6 @@ e_shelf_zone_new(E_Zone *zone, const char *name, const char *style, int popup, E
{
E_Shelf *es;
char buf[1024];
const char *locname;
es = E_OBJECT_ALLOC(E_Shelf, E_SHELF_TYPE, _e_shelf_free);
if (!es) return NULL;
@ -263,9 +262,10 @@ e_shelf_zone_new(E_Zone *zone, const char *name, const char *style, int popup, E
es->gadcon =
e_gadcon_swallowed_new(es->name, es->id, es->o_base, "e.swallow.content");
locname = es->name;
if (!name) locname = _("Shelf #");
snprintf(buf, sizeof(buf), "%s %i", locname, es->id);
if (es->name)
snprintf(buf, sizeof(buf), "%s", es->name);
else
snprintf(buf, sizeof(buf), _("Shelf #%d"), es->id);
es->gadcon->location =
e_gadcon_location_new(buf, E_GADCON_SITE_SHELF,
_e_shelf_gadcon_client_add, es,
@ -1118,7 +1118,7 @@ e_shelf_new_dialog(E_Zone *zone)
{
char buf[256];
snprintf(buf, sizeof(buf), "%s #%d", _("Shelf"), eina_list_count(e_config->shelves));
snprintf(buf, sizeof(buf), _("Shelf #%d"), eina_list_count(e_config->shelves));
return e_entry_dialog_show(_("Add New Shelf"), "preferences-desktop-shelf",
_("Name:"), buf, NULL, NULL,
_e_shelf_new_dialog_ok, NULL, zone);
@ -1633,7 +1633,7 @@ _e_shelf_menu_append(E_Shelf *es, E_Menu *mn)
if (es->name)
snprintf(buf, sizeof(buf), "%s", es->name);
else
snprintf(buf, sizeof(buf), "%s %s", _("Shelf"),
snprintf(buf, sizeof(buf), _("Shelf %s"),
e_shelf_orient_string_get(es));
e_shelf_locked_set(es, 1);

View File

@ -63,7 +63,7 @@ _e_startup(void)
return;
}
e_exec(NULL, desktop, NULL, NULL, NULL);
snprintf(buf, sizeof(buf), "%s %s", _("Starting"), desktop->name);
snprintf(buf, sizeof(buf), _("Starting %s"), desktop->name);
e_init_status_set(buf);
ecore_job_add(_e_startup_next_cb, NULL);
}

View File

@ -1202,7 +1202,7 @@ _e_util_conf_timer_new(void *data)
"restored to<br>defaults. Sorry for the "
"inconvenience.<br>");
snprintf(buf, sizeof(buf), N_("%s Configuration Updated"), module_name);
snprintf(buf, sizeof(buf), _("%s Configuration Updated"), module_name);
e_util_dialog_internal(buf, msg);
E_FREE(module_name);
@ -1290,54 +1290,36 @@ e_util_time_str_get(long int seconds)
else
{
if (seconds <= 60)
snprintf(buf, sizeof(buf), _("%li Seconds"), seconds);
snprintf(buf, sizeof(buf), P_("A second", "%li Seconds", seconds), seconds);
else if (seconds >= 31526000)
{
test = seconds / 31526000;
if (test == 1)
snprintf(buf, sizeof(buf), _("One year"));
else
snprintf(buf, sizeof(buf), _("%li Years"), test);
snprintf(buf, sizeof(buf), P_("One year", "%li Years", test), test);
}
else if (seconds >= 2592000)
{
test = seconds / 2592000;
if (test == 1)
snprintf(buf, sizeof(buf), _("One month"));
else
snprintf(buf, sizeof(buf), _("%li Months"), test);
snprintf(buf, sizeof(buf), P_("One month", "%li Months", test), test);
}
else if (seconds >= 604800)
{
test = seconds / 604800;
if (test == 1)
snprintf(buf, sizeof(buf), _("One week"));
else
snprintf(buf, sizeof(buf), _("%li Weeks"), test);
snprintf(buf, sizeof(buf), P_("One week", "%li Weeks", test), test);
}
else if (seconds >= 86400)
{
test = seconds / 86400;
if (test == 1)
snprintf(buf, sizeof(buf), _("One day"));
else
snprintf(buf, sizeof(buf), _("%li Days"), test);
snprintf(buf, sizeof(buf), P_("One day", "%li Days", test), test);
}
else if (seconds >= 3600)
{
test = seconds / 3600;
if (test == 1)
snprintf(buf, sizeof(buf), _("An hour"));
else
snprintf(buf, sizeof(buf), _("%li Hours"), test);
snprintf(buf, sizeof(buf), P_("An hour", "%li Hours", test), test);
}
else if (seconds > 60)
{
test = seconds / 60;
if (test == 1)
snprintf(buf, sizeof(buf), _("A minute"));
else
snprintf(buf, sizeof(buf), _("%li Minutes"), test);
snprintf(buf, sizeof(buf), P_("A minute", "%li Minutes", test), test);
}
}
return buf;

View File

@ -296,7 +296,7 @@ e_modapi_init(E_Module *m)
conf = e_config_domain_load("module.conf", conf_edd);
if (conf)
{
if (!e_util_module_config_check("Configuration Panel", conf->version, MOD_CONFIG_FILE_VERSION))
if (!e_util_module_config_check(_("Configuration Panel"), conf->version, MOD_CONFIG_FILE_VERSION))
_conf_free();
}

View File

@ -303,7 +303,7 @@ _basic_create(E_Config_Dialog *cfd __UNUSED__, Evas *evas, E_Config_Dialog_Data
ow = e_widget_slider_add(evas, 1, 0, _("%5.0f pixels/s"), 0, 20000, 100,
0, &(cfdata->scroll_speed), NULL, 100);
e_widget_list_object_append(ol, ow, 1, 0, 0.5);
ow = e_widget_label_add(evas, _("Fast Mouse Move Threshhold"));
ow = e_widget_label_add(evas, _("Fast Mouse Move Threshold"));
e_widget_list_object_append(ol, ow, 1, 0, 0.5);
ow = e_widget_slider_add(evas, 1, 0, _("%4.0f pixels/s"), 0, 2000, 10,
0, &(cfdata->fast_mouse_move_threshhold), NULL, 100);

View File

@ -124,7 +124,7 @@ _basic_create(E_Config_Dialog *cfd, Evas *evas, E_Config_Dialog_Data *cfdata)
ol = e_widget_list_add(evas, 0, 0);
zone = cfdata->cfd->dia->win->border ? cfdata->cfd->dia->win->border->zone : e_zone_current_get(cfdata->cfd->con);
snprintf(buf, sizeof(buf), "%s %d", _("Configured Shelves: Display"), zone->num);
snprintf(buf, sizeof(buf), _("Configured Shelves: Display %d"), zone->num);
of = e_widget_framelist_add(evas, buf, 0);
cfdata->o_list = e_widget_ilist_add(evas, 24, 24, &(cfdata->cur_shelf));
e_widget_size_min_set(cfdata->o_list, (140 * e_scale), (80 * e_scale));
@ -188,7 +188,7 @@ _ilist_item_new(E_Config_Dialog_Data *cfdata, Eina_Bool append, E_Shelf *es)
if (es->name)
snprintf(buf, sizeof(buf), "%s", es->name);
else
snprintf(buf, sizeof(buf), "%s %s", _("Shelf"), e_shelf_orient_string_get(es));
snprintf(buf, sizeof(buf), _("Shelf %s"), e_shelf_orient_string_get(es));
e_object_del_func_set(E_OBJECT(es), (E_Object_Cleanup_Func)_ilist_refresh);
ob = e_icon_add(evas_object_evas_get(cfdata->o_list));

View File

@ -169,7 +169,7 @@ _e_mod_menu_theme_add(void *data __UNUSED__, E_Menu *m)
cur_theme = ct->file;
m = e_menu_new();
e_object_del_attach_func_set(E_OBJECT(m), _e_mod_menu_theme_del);
e_menu_title_set(m, "Themes");
e_menu_title_set(m, _("Themes"));
e_menu_item_submenu_set(mi, m);
e_object_unref(E_OBJECT(m));

View File

@ -1328,7 +1328,7 @@ _plugins_init(const Evry_API *api)
_file_trash_action, NULL, 1);
EVRY_ITEM_DATA_INT_SET(act, ACT_TRASH);
ACTION_NEW("Open Folder (EFM)", 0, "folder-open",
ACTION_NEW("Open Directory", 0, "folder-open",
_open_folder_action, _open_folder_check, 1);
act->remember_context = EINA_TRUE;

View File

@ -272,7 +272,7 @@ _e_mod_fileman_config_load(void)
fileman_config = e_config_domain_load("module.fileman", conf_edd);
if (fileman_config)
{
if (!e_util_module_config_check("Fileman", fileman_config->config_version, MOD_CONFIG_FILE_VERSION))
if (!e_util_module_config_check(_("Fileman"), fileman_config->config_version, MOD_CONFIG_FILE_VERSION))
_e_mod_fileman_config_free();
}

View File

@ -18,8 +18,8 @@ struct _E_Config_Dialog_Data
static const char *gadman_layer_names[] =
{
"Background",
"Hover (Key Toggle)",
N_("Background"),
N_("Hover (Key Toggle)"),
NULL
};

View File

@ -51,7 +51,7 @@ e_modapi_init(E_Module *m)
mod->conf = e_config_domain_load("module.physics", mod->conf_edd);
if (mod->conf)
{
if (!e_util_module_config_check("Physics", mod->conf->config_version, MOD_CONFIG_FILE_VERSION))
if (!e_util_module_config_check(_("Physics"), mod->conf->config_version, MOD_CONFIG_FILE_VERSION))
{
e_mod_cfdata_config_free(mod->conf);
mod->conf = NULL;

View File

@ -44,7 +44,7 @@ e_modapi_init(E_Module *m)
qa_config = e_config_domain_load("module.quickaccess", conf_edd);
if (qa_config)
{
if (!e_util_module_config_check("Quickaccess", qa_config->config_version, MOD_CONFIG_FILE_VERSION))
if (!e_util_module_config_check(_("Quickaccess"), qa_config->config_version, MOD_CONFIG_FILE_VERSION))
{
e_qa_config_free(qa_config);
qa_config = NULL;

View File

@ -364,11 +364,14 @@ _e_qa_entry_relaunch_setup(E_Quick_Access_Entry *entry)
}
entry->dia = dia = e_dialog_new(NULL, "E", "_quickaccess_cmd_dialog");
snprintf(buf, sizeof(buf), "%s<br>%s<br>%s<br>%s<br>%s", _("The selected window created with name:"),
entry->name, _("and class:"), entry->class, _("could not be found in the Quickaccess app database<br"
"This means that either the app is unknown to us<br>"
"or it is not intended for use with this option.<br>"
"Please choose an action to take:"));
snprintf(buf, sizeof(buf),
_("The selected window created with name:<br>%s<br>"
"and class:<br>%s<br>"
"could not be found in the Quickaccess app database<br>"
"This means that either the app is unknown to us<br>"
"or it is not intended for use with this option.<br>"
"Please choose an action to take:"),
entry->name, entry->class);
e_dialog_title_set(dia, _("Quickaccess Error"));
e_dialog_icon_set(dia, "enlightenment", 64);

View File

@ -36,13 +36,13 @@ wizard_page_show(E_Wizard_Page *pg)
"This is very useful, because it lets<br>"
"you know about available bug fixes and<br>"
"security fixes when they happen. As a<br>"
"bi-product of this, Enlightenment will<br>"
"connect to enlightenment.org and transmit<br>"
"some information as a result much like any<br>"
"web browser might do. No personal information<br>"
"such as username, password or any personal<br>"
"files will be transmitted. If you do not like<br>"
"this, please disable this below. It is highly<br>"
"result, Enlightenment will connect to<br>"
"enlightenment.org and transmit some<br>"
"information, much like any web browser<br>"
"might do. No personal information such as<br>"
"username, password or any personal files<br>"
"will be transmitted. If you don't like this,<br>"
"please disable this below. It is highly<br>"
"advised that you do not disable this as it<br>"
"may leave you vulnerable or having to live<br>"
"with bugs."