5
|
1 |
/*
|
|
2 |
* Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: Contains sapi location error strings
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef C_LOCATIONERRORMESSAGE_HRH
|
|
20 |
#define C_LOCATIONERRORMESSAGE_HRH
|
|
21 |
|
|
22 |
|
|
23 |
_LIT(KCancelTransactionIdMissing, "location : Cancel : Missing transaction ID");
|
|
24 |
|
|
25 |
_LIT(KCancelInvalidTransactionId, "location : Cancel : Wrong Transaction ID");
|
|
26 |
|
|
27 |
|
|
28 |
_LIT(KGetLocationCategoryInfo, "location : GetLocation : wrong category info should be BasicLocationInformation/GenericLocationInfo ");
|
|
29 |
_LIT(KTraceCategoryInfo, "location : Trace : wrong category info should be BasicLocationInformation/GenericLocationInfo ");
|
|
30 |
|
|
31 |
|
|
32 |
_LIT(KCancelMissingType, "location : Cancel : Missing cancel type");
|
|
33 |
_LIT(KCancelWrongType, "location : Cancel : Wrong cancel type");
|
|
34 |
_LIT(KMissingMathrequest, "location : Calculate : Missing argument - MathRequest");
|
|
35 |
_LIT(KWrongMathrequest, "location : Calculate : Wrong argument - MathRequest");
|
|
36 |
_LIT(KMissingParamCord, "location : Calculate : Missing argument - locationcoordinate");
|
|
37 |
_LIT(KMissingDistanceParam, "location : Calculate : Missing argument - MoveByThisDistance");
|
|
38 |
_LIT(KMissingBearingParam, "location : Calculate : Missing argument - MoveByThisBearing");
|
|
39 |
|
|
40 |
_LIT(KGetLocationWrongupdateMap, "location : GetLocation : BadArgument - Updateoptions");
|
|
41 |
_LIT(KCalWrongSource, "location : Calculate : Wrong Argument - SourceParam");
|
|
42 |
_LIT(KCalWrongDest, "location : Calculate : Wrong Argument - Paramdestination");
|
|
43 |
_LIT(KGetLocationNegativeTime, "location : GetLocation : Negative Time Interval");
|
|
44 |
_LIT(KTraceNegativeTime, "location : Trace : Negative Time Interval");
|
|
45 |
|
|
46 |
_LIT(KGetLocationWrongInfoType, "location : GetLocation : BadArgument - LocationInformationClass");
|
|
47 |
_LIT(KGetLocationBadUpdateOptions, "location : GetLocation : UpdateOptions Type mismatch");
|
|
48 |
_LIT(KTraceWrongInfoType, "location : Trace : BadArgument - LocationInformationClass");
|
|
49 |
_LIT(KTraceBadUpdateOptions, "location : Trace : UpdateOptions Type mismatch");
|
|
50 |
_LIT(KTraceWrongupdateMap, "location : Trace : BadArgument - Updateoptions");
|
|
51 |
_LIT(KCancelTypeMisMatch, "location : cancel : BadArgument - Cancel Type");
|
|
52 |
_LIT(KCaluclateMoveDistance, "location : Calculate : Type MisMatch - MoveByThisDistance");
|
|
53 |
_LIT(KCaluclateMoveBearing, "location : Calculate : Type MisMatch - MoveByThisbearing");
|
|
54 |
_LIT(KCmdNotFound, "location : Command Not found");
|
|
55 |
|
|
56 |
#endif // C_LOCATIONERRORMESSAGE_HRH |