Mark some strings for translation. (patch from Igor Murzov)

SVN revision: 80551
This commit is contained in:
Massimo Maiurana 2012-12-09 14:39:30 +00:00
parent 593aef4f77
commit 96fac26f2f
3 changed files with 19 additions and 18 deletions

View File

@ -130,6 +130,7 @@ src/bin/e_win.c
src/bin/e_xinerama.c
src/bin/e_xkb.c
src/bin/e_zone.c
src/modules/backlight/e_mod_main.c
src/modules/battery/e_mod_config.c
src/modules/battery/e_mod_main.c
src/modules/clock/e_mod_config.c

View File

@ -64,21 +64,21 @@ static int orientations[] =
static const char *orient_names[] =
{
[E_GADCON_ORIENT_FLOAT] = "Float",
[E_GADCON_ORIENT_HORIZ] = "Horizontal",
[E_GADCON_ORIENT_VERT] = "Vertical",
[E_GADCON_ORIENT_LEFT] = "Left",
[E_GADCON_ORIENT_RIGHT] = "Right",
[E_GADCON_ORIENT_TOP] = "Top",
[E_GADCON_ORIENT_BOTTOM] = "Bottom",
[E_GADCON_ORIENT_CORNER_TL] = "Top-left Corner",
[E_GADCON_ORIENT_CORNER_TR] = "Top-right Corner",
[E_GADCON_ORIENT_CORNER_BL] = "Bottom-left Corner",
[E_GADCON_ORIENT_CORNER_BR] = "Bottom-right Corner",
[E_GADCON_ORIENT_CORNER_LT] = "Left-top Corner",
[E_GADCON_ORIENT_CORNER_RT] = "Right-top Corner",
[E_GADCON_ORIENT_CORNER_LB] = "Left-bottom Corner",
[E_GADCON_ORIENT_CORNER_RB] = "Right-bottom Corner"
[E_GADCON_ORIENT_FLOAT] = N_("Float"),
[E_GADCON_ORIENT_HORIZ] = N_("Horizontal"),
[E_GADCON_ORIENT_VERT] = N_("Vertical"),
[E_GADCON_ORIENT_LEFT] = N_("Left"),
[E_GADCON_ORIENT_RIGHT] = N_("Right"),
[E_GADCON_ORIENT_TOP] = N_("Top"),
[E_GADCON_ORIENT_BOTTOM] = N_("Bottom"),
[E_GADCON_ORIENT_CORNER_TL] = N_("Top-left Corner"),
[E_GADCON_ORIENT_CORNER_TR] = N_("Top-right Corner"),
[E_GADCON_ORIENT_CORNER_BL] = N_("Bottom-left Corner"),
[E_GADCON_ORIENT_CORNER_BR] = N_("Bottom-right Corner"),
[E_GADCON_ORIENT_CORNER_LT] = N_("Left-top Corner"),
[E_GADCON_ORIENT_CORNER_RT] = N_("Right-top Corner"),
[E_GADCON_ORIENT_CORNER_LB] = N_("Left-bottom Corner"),
[E_GADCON_ORIENT_CORNER_RB] = N_("Right-bottom Corner")
};
EAPI int E_EVENT_SHELF_RENAME = -1;

View File

@ -1381,9 +1381,9 @@ _mixer_module_configuration_setup(E_Mixer_Module_Context *ctxt)
static const char _act_increase[] = "volume_increase";
static const char _act_decrease[] = "volume_decrease";
static const char _act_mute[] = "volume_mute";
static const char _lbl_increase[] = "Increase Volume";
static const char _lbl_decrease[] = "Decrease Volume";
static const char _lbl_mute[] = "Mute Volume";
static const char _lbl_increase[] = N_("Increase Volume");
static const char _lbl_decrease[] = N_("Decrease Volume");
static const char _lbl_mute[] = N_("Mute Volume");
static void
_mixer_actions_register(E_Mixer_Module_Context *ctxt)