mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-20 20:49:18 -04:00
Fix internationalized string.
This commit is contained in:
@@ -61,7 +61,7 @@ class album_Core {
|
||||
|
||||
static function get_add_form($parent) {
|
||||
$form = new Forge("albums/{$parent->id}", "", "post", array("id" => "gAddAlbumForm"));
|
||||
$group = $form->group(_("Add Album to ") . $parent->title);
|
||||
$group = $form->group(sprintf(_("Add Album to %s"), $parent->title));
|
||||
$group->input("name");
|
||||
$group->input("title");
|
||||
$group->input("description");
|
||||
|
||||
Reference in New Issue
Block a user