From e8cf2a3e67428f855eabba72da3de880335cd483 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Wed, 3 Dec 2008 23:32:29 +0000 Subject: Fix internationalized string. --- core/helpers/album.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/helpers') diff --git a/core/helpers/album.php b/core/helpers/album.php index dd8d1dd2..d82f076b 100644 --- a/core/helpers/album.php +++ b/core/helpers/album.php @@ -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"); -- cgit v1.2.3