cc70051b3a1d71e8fc7c78d41aec0c7b35445e6a
[apps/home/call-setting.git] / include / cst-common-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 #ifndef _COMMON_STRING_H_
18 #define _COMMON_STRING_H_
19
20 enum {
21         CST_STR_ALERTS_ON_CALL = 0,
22         CST_STR_ALL_INCOMING_CALLS,
23         CST_STR_CALL_ALL_OUTGOING_CALLS,
24         CST_STR_AUTO_REDIAL,
25         CST_STR_CALL_BARRING,
26         CST_STR_CALL_CONNECT_TONE,
27         CST_STR_CALL_END_TONE,
28         CST_STR_CALL_STATUS_TONES,
29         CST_STR_CALL_WAITING,
30         CST_STR_CHECK_STATUS,
31         CST_STR_BY_NETWORK,
32         CST_STR_SHOW,
33         CST_STR_HIDE,
34         CST_STR_CALL_INTL_EXCEPT_HOME,
35         CST_STR_INTL_CALLS,
36         CST_STR_SHOW_MY_NUMBER,
37         CST_STR_ALWAYS,
38         CST_STR_IF_BUSY,
39         CST_STR_IF_NO_REPLY,
40         CST_STR_IF_OUT_OF_REACH,
41         CST_STR_PREFIX_DIALLING,
42         CST_STR_CALL_INCOMING_WHEN_ROAMING,
43         CST_STR_INCORRECT_OPERATION,
44         CST_STR_INVALID_PASSWORD,
45         CST_STR_PASSWORD_BLOCKED,
46         CST_STR_REJECTED_BY_NETWORK,
47         CST_STR_SERVICE_UNAVAILABLE,
48         CST_STR_UNKNOWN_OPERATION,
49         CST_STR_CANCEL,
50         CST_STR_ENTER_NUMBER,
51         CST_STR_SELECT_VALID_ENTRY,
52         CST_STR_ENTER_DUPLICATE_MESSAGE,
53         CST_STR_ENTER_MESSAGE,
54         CST_STR_PREFIX_DIALLING_LIST,
55         CST_STR_SOUND,
56         CST_STR_VIBRATION,
57         CST_STR_CALL_FORWARDING,
58         CST_STR_ENABLE_PREFIX_DIALLING,
59         CST_STR_PREFIX_DIALLING_NUMBER,
60         CST_STR_SELECT_NUMBER,
61         CST_STR_MINUTE_REMINDER,
62         CST_STR_EDIT_SOUND_SETTINGS_DURING_CALL,
63         CST_STR_DO_NOT_REDIAL_IF_CALL_IS_UNABLE,
64         CST_STR_MANAGE_PREFIX_DIALING_NUMBERS,
65         CST_STR_THERE_WILL_BE_WEHN_LINE_IS_CONNECTED,
66         CST_STR_THERE_WILL_BE_EVERY_A_MINUTE,
67         CST_STR_THERE_WILL_BE_WEHN_LINE_IS_DISCONNECTED,
68         CST_STR_CHANGE_PRESET_IMAGE,
69         CST_STR_DURING_CALL_NOTIFY_ME,
70         CST_STR_SELECT_MESSAGE,
71         CST_STR_NO_NUMBERS,
72         CST_STR_FORWARD_TO,
73         CST_STR_INSERT_SIM_CARD,
74         CST_STR_CHNAGE_FLIGHT_MODE_MESSAGE,
75         CST_STR_NO_MESSAGE,
76         CST_STR_DEFAULT_IMAGE,
77
78         CST_SYS_STRING,
79         CST_STR_ON,
80         CST_STR_OFF,
81         CST_STR_VOICECALL,
82         CST_STR_VIDEOCALL,
83         CST_STR_DONE,
84         CST_STR_CREATE,
85         CST_STR_UNKNOWN,
86         CST_STR_DELETE,
87         CST_STR_BACK,
88         CST_STR_ACTIVATED,
89         CST_STR_DEACTIVATED,
90         CST_STR_ADD,
91         CST_STR_SELECT_ALL,
92         CST_STR_ENTER_PASSWORD,
93         CST_STR_CONTACTS,
94         CST_STR_LOGS,
95         CST_STR_CALL,
96         CST_STR_PASSWORD,
97         CST_STR_SAVE,
98         CST_STR_PD_SELECTED,
99         CST_STR_DELETED,
100         CST_STR_PHONE,
101         CST_STR_APP_NOT_INSTALLED,
102 };
103
104 const char *_cst_get_text(int str_id);
105 #define T_(str_id) _cst_get_text(str_id)
106 #define S_(text) dgettext("sys_string", text)
107
108 #endif