E17: gettext translation ++

patch by Maxime Villard


SVN revision: 76994
This commit is contained in:
Vincent Torri 2012-09-21 19:00:28 +00:00
parent 58cb4c2426
commit 4a9dce6477
2 changed files with 3 additions and 3 deletions

View File

@ -906,12 +906,12 @@ _e_desklock_state_set(int state)
if (state == E_DESKLOCK_STATE_CHECKING)
{
signal_desklock = "e,state,checking";
text = "Authenticating...";
text = _("Authenticating...");
}
else if (state == E_DESKLOCK_STATE_INVALID)
{
signal_desklock = "e,state,invalid";
text = "The password you entered is invalid. Try again.";
text = _("The password you entered is invalid. Try again.");
}
else
return;

View File

@ -9951,7 +9951,7 @@ _e_fm_retry_abort_dialog(int pid, const char *str)
e_dialog_title_set(dialog, _("Error"));
e_dialog_icon_set(dialog, "dialog-error", 64);
snprintf(text, sizeof(text),
_("%s"),
"%s",
str);
e_dialog_text_set(dialog, text);