added sprintf to strings for tranlation support

This commit is contained in:
Felix Rabinovich
2008-12-25 02:59:45 +00:00
parent 2c6a80fb76
commit 6e68c5ca28
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ class group_Core {
public static function get_delete_form($group, $action = NULL) {
$form = new Forge($action);
$form_group = $form->group("delete_group")->label(_("Delete Group"));
$form_group->label(_("Are you sure you want to delete " . $group->name . "?"));
$form_group->label(sprintf(_("Are you sure you want to delete %s?"), $group->name));
$form_group->submit(_("Delete"));
return $form;
}