Tizen release 1.0
[pkgs/p/phone-lock.git] / phone-lock-common / include / phone-lock-string.h
1 /*
2  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd All Rights Reserved 
3  *
4  * This file is part of <phone-lock>
5  * Written by <Seungtaek Chung> <seungtaek.chung@samsung.com>, <Mi-Ju Lee> <miju52.lee@samsung.com>, <Xi Zhichan> <zhichan.xi@samsung.com>
6  *
7  * PROPRIETARY/CONFIDENTIAL
8  *
9  * This software is the confidential and proprietary information of SAMSUNG ELECTRONICS ("Confidential Information").
10  * You shall not disclose such Confidential Information and shall use it only in accordance
11  * with the terms of the license agreement you entered into with SAMSUNG ELECTRONICS.
12  * SAMSUNG make no representations or warranties about the suitability of the software,
13  * either express or implied, including but not limited to the implied warranties of merchantability,
14  * fitness for a particular purpose, or non-infringement.
15  * SAMSUNG shall not be liable for any damages suffered by licensee as a result of using,
16  * modifying or distributing this software or its derivatives.
17  *
18  */
19
20 #ifndef __PHONE_LOCK_COMMON_STRING_H__
21 #define __PHONE_LOCK_COMMON_STRING_H__
22
23 #if !defined(ICON_DIR)
24 #define ICON_DIR "/opt/apps/org.tizen.phone-lock/res/images"
25 #endif
26
27 #if !defined(PACKAGE)
28 #define PACKAGE "org.tizen.phone-lock"
29 #endif
30
31 #if !defined(LOCALEDIR)
32 #define LOCALEDIR "/opt/apps/org.tizen.phone-lock/res/locale"
33 #endif
34
35 enum {
36         IDS_COM_BODY_ENTER_PASSWORD = 0,
37         IDS_COM_SK_OK,
38
39         IDS_PHONE_LOCK_SYSTEM_STRING_MAX,
40 };
41
42 enum {
43         IDS_IDLE_BODY_PD_ATTEMPTS_LEFT = IDS_PHONE_LOCK_SYSTEM_STRING_MAX,
44         IDS_IDLE_BODY_WRONG_PASSWORD,
45         IDS_IDLE_BODY_PASSWORD_EMPTY,
46         IDS_IDLE_BODY_EMERGENCY_CALL,
47         IDS_IDLE_BODY_PD_TO_PD_DIGITS_OR_LETTERS_REQUIRED,
48         IDS_IDLE_BODY_TRY_LATER,
49         IDS_IDLE_BODY_INPUT_PASSWORD_AFTER_THIRTYSECONDS,
50
51         IDS_PHONE_LOCK_APP_STRING_MAX,
52 };
53
54 char *phone_lock_get_string(int id);
55
56 #endif                          /* __PHONE_LOCK_COMMON_STRING_H__ */