diff -r d0b4e67b3a60 -r f291796e213d engine/collectionframework/plugins/glxcollectionpluginalbums/src/glxcollectionpluginalbums.cpp --- a/engine/collectionframework/plugins/glxcollectionpluginalbums/src/glxcollectionpluginalbums.cpp Wed Jun 23 18:12:48 2010 +0300 +++ b/engine/collectionframework/plugins/glxcollectionpluginalbums/src/glxcollectionpluginalbums.cpp Tue Jul 06 14:16:16 2010 +0300 @@ -45,6 +45,8 @@ #include #include +#include "glxsymbianlocalisationstrings.h" + // CONSTANTS const TInt KFavoriteAlbumId = 1 ; const TInt KCapturedAlbumId = 2 ; @@ -214,7 +216,8 @@ { if(0 == usageCount) { - tempTitle = LoadLocalizedStringLC(KResourceFile, R_ALBUM_ITEM_SUB_TITLE_EMPTY); + tempTitle = LoadLocalizedStringLC(KNoImages); + // Set the title in the response. aResponse->SetTextValueL(attr, *tempTitle); @@ -276,14 +279,12 @@ { if( TGlxMediaId(KCapturedAlbumId) == aMediaId ) { - _LIT(KCameraText,"txt_photos_dblist_my_camera"); HBufC* title = LoadLocalizedStringLC(KCameraText); aResponse->SetTextValueL(attr, *title); CleanupStack::PopAndDestroy(title); } else if (TGlxMediaId(KFavoriteAlbumId) == aMediaId ) { - _LIT(KMyFavText,"txt_photos_dblist_my_favorites"); HBufC* title = LoadLocalizedStringLC(KMyFavText); aResponse->SetTextValueL(attr, *title); CleanupStack::PopAndDestroy(title);