diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-03 23:32:29 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-03 23:32:29 +0000 |
commit | e8cf2a3e67428f855eabba72da3de880335cd483 (patch) | |
tree | 185e5d7adcc576a46b0d3c8aed83e9fc74718d38 /core | |
parent | ccee9854c29f9fedfeb5647d058e76154f9a8295 (diff) |
Fix internationalized string.
Diffstat (limited to 'core')
-rw-r--r-- | core/helpers/album.php | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |