From 8295e3ecd7fb7622475471b2e294eaea2034fc52 Mon Sep 17 00:00:00 2001 From: Kurt Hindenburg Date: Thu, 5 Mar 2009 16:03:30 +0000 Subject: [PATCH] Allow multiple profile caption to be set. GUI svn path=/trunk/KDE/kdebase/apps/konsole/; revision=935556 --- src/EditProfileDialog.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/EditProfileDialog.cpp b/src/EditProfileDialog.cpp index e07e39c79..095533317 100644 --- a/src/EditProfileDialog.cpp +++ b/src/EditProfileDialog.cpp @@ -151,9 +151,7 @@ void EditProfileDialog::updateCaption(const Profile::Ptr profile) if (group && group->profiles().count() > 1) { QString caption = groupProfileNames(group,MAX_GROUP_CAPTION_LENGTH); - setCaption( i18n("Edit Profile \"%1\"",caption) ); - // STRINGFREEZE - Change caption for groups after KDE 4.1 is released - // setCaption( i18n("Editing %1 profiles",group->profiles().count()) ) + setCaption( i18n("Editing %1 profiles: %2",group->profiles().count(), caption) ); } else setCaption( i18n("Edit Profile \"%1\"",profile->name()) );