summaryrefslogtreecommitdiff
path: root/include/bt-connection-string.h
blob: 94e0ba92679dfc9e770e4562338fcb24d37d80be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* bt-connection-popup
*
* Copyright 2012 Samsung Electronics Co., Ltd
*
* Contact: Hocheol Seo <hocheol.seo@samsung.com>
*           Injun Yang <injun.yang@samsung.com>
*           Seungyoun Ju <sy39.ju@samsung.com>
*
* Licensed under the Flora License, Version 1.1 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.tizenopensource.org/license
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

#ifndef __BT_CONNECTION_STRING_H__
#define __BT_CONNECTION_STRING_H__

#include "bt-connection-main.h"

#ifdef __cplusplus
extern "C" {
#endif

#ifdef N_
#undef N_
#endif
#define N_(str)			gettext_noop(str)

#ifdef _
#undef _
#endif
#define _(str)			dgettext(PACKAGE, str)

#define STR_TITLE_ERROR		_("IDS_BT_HEADER_BLUETOOTH_ERROR_ABB")
#define STR_UNABLE_REFRESH_APP_BT_DISCONNECTED \
	_("IDS_WMGR_POP_UNABLE_TO_REFRESH_THIS_APPLICATION_BLUETOOTH_HAS_BEEN_DISCONNECTED")
#define STR_UNABLE_OPEN_APP_BT_DISCONNECTED \
	_("IDS_CMV_POP_UNABLE_TO_OPEN_THIS_APPLICATION_BLUETOOTH_HAS_BEEN_DISCONNECTED")
#define STR_UNABLE_PERFORM_ACTION_BT_DISCONNECTED \
	_("IDS_CMV_POP_UNABLE_TO_PERFORM_THIS_ACTION_BLUETOOTH_HAS_BEEN_DISCONNECTED")
#define STR_CONNECTING_BT \
	_("IDS_BT_BODY_CONNECTING_TO_YOUR_DEVICE_VIA_BLUETOOTH_ING")
#define STR_CONNECTED_BT \
	_("IDS_BT_BODY_CONNECTED_TO_YOUR_DEVICE_VIA_BLUETOOTH")
#define STR_CONNECT \
	_("IDS_BT_BUTTON_CONNECT_ABB2")
#define STR_CONNECTION_TIME_OUT_RETRY \
	_("IDS_BT_POP_UNABLE_TO_CONNECT_TO_YOUR_PHONE_THE_BLUETOOTH_CONNECTION_TIMED_OUT_TRY_AGAIN")
#define STR_BLUETOOTH_ADDRESS \
	_("IDS_BT_HEADER_BLUETOOTH_ADDRESS")

/* System string */
#define STR_OK			_("IDS_MP_SK_OK")
#define STR_CANCEL		_("IDS_MUSIC_SK_CANCEL")

#ifdef __cplusplus
}
#endif

#endif /* __BT_CONNECTION_STRING_H__ */