diff -r 45e72b57a2fd -r e3cecb93e76a videoplayback/videoplaybackview/tsrc/testprogressbar/stub/src/hbglobal.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videoplayback/videoplaybackview/tsrc/testprogressbar/stub/src/hbglobal.cpp Wed Aug 18 09:50:14 2010 +0300 @@ -0,0 +1,44 @@ +/* +* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: class for HbGlobal +* +*/ + +// Version : %version: 1 % + + + +#include "hbglobal.h" +#include + + +QString hbTrId( QString string, int n ) +{ + Q_UNUSED( n ); + + QString loc = ""; + + + if ( string == "txt_videos_slidervalue_l1l2l3_2" ) + { + loc = "%L1:%L2:%L3"; + } + else if ( string == "txt_videos_slidervalue_l1l2" ) + { + loc = "%L1:%L2"; + } + return loc; +} + +//End of file