Updating license in spec file
[pkgs/p/phone-lock.git] / phone-lock-common / include / phone-lock-string.h
1 /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   * 
4   * Licensed under the Flora License, Version 1.0 (the License);
5   * you may not use this file except in compliance with the License.
6   * You may obtain a copy of the License at
7   * 
8   *     http://www.tizenopensource.org/license
9   * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an AS IS BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16
17
18 #ifndef __PHONE_LOCK_COMMON_STRING_H__
19 #define __PHONE_LOCK_COMMON_STRING_H__
20
21 #if !defined(ICON_DIR)
22 #define ICON_DIR "/opt/apps/org.tizen.phone-lock/res/images"
23 #endif
24
25 #if !defined(PACKAGE)
26 #define PACKAGE "org.tizen.phone-lock"
27 #endif
28
29 #if !defined(LOCALEDIR)
30 #define LOCALEDIR "/opt/apps/org.tizen.phone-lock/res/locale"
31 #endif
32
33 enum {
34         IDS_COM_BODY_ENTER_PASSWORD = 0,
35         IDS_COM_SK_OK,
36
37         IDS_PHONE_LOCK_SYSTEM_STRING_MAX,
38 };
39
40 enum {
41         IDS_IDLE_BODY_PD_ATTEMPTS_LEFT = IDS_PHONE_LOCK_SYSTEM_STRING_MAX,
42         IDS_IDLE_BODY_WRONG_PASSWORD,
43         IDS_IDLE_BODY_PASSWORD_EMPTY,
44         IDS_IDLE_BODY_EMERGENCY_CALL,
45         IDS_IDLE_BODY_PD_TO_PD_DIGITS_OR_LETTERS_REQUIRED,
46         IDS_IDLE_BODY_TRY_LATER,
47         IDS_IDLE_BODY_INPUT_PASSWORD_AFTER_THIRTYSECONDS,
48
49         IDS_PHONE_LOCK_APP_STRING_MAX,
50 };
51
52 char *phone_lock_get_string(int id);
53
54 #endif                          /* __PHONE_LOCK_COMMON_STRING_H__ */