/* * bt-connection-popup * * Copyright 2012 Samsung Electronics Co., Ltd * * Contact: Hocheol Seo * Injun Yang * Seungyoun Ju * * 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__ */