Better gettext usage in Quickaccess.

This also fixes incomplete <br> tag.


SVN revision: 83088
This commit is contained in:
Igor Murzov 2013-01-22 15:00:21 +00:00
parent 0a8c14fb90
commit 3a3cf9c42e
1 changed files with 8 additions and 5 deletions

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);