2a98f1898fbb5f40a26e15044cb1a86066bb598a
[framework/api/application.git] / include / app_i18n.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
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 __TIZEN_APPFW_I18N_H__
19 #define __TIZEN_APPFW_I18N_H__
20
21 #include <tizen.h>
22
23 #ifdef __cplusplus
24 extern "C"
25 {
26 #endif
27
28  /**
29  * @addtogroup CAPI_I18N_MODULE
30  * @{
31  */
32
33 /**
34  * @brief       Marks a string for translation, gets replaced with the translated string at runtime.
35  * @param [in] msg The string to be translated.
36  */
37 #ifndef _
38 #define _(msg) i18n_get_text(msg)
39 #endif
40
41 /**
42  * @brief Gets the localized translation for the specified string.
43  *
44  * @details If a translation was not found in the localization file(.po file), @a message is returned.
45  *
46  * @remarks Do not free returned value
47  *
48  * @param [in] message The string to be translated
49  * @return  The localized translation for the given @a message on success, otherwise the given @a message.
50  */
51 char* i18n_get_text(const char *message);
52
53 /**
54  * @}
55  */
56
57 #ifdef __cplusplus
58 }
59 #endif
60
61 #endif /* __TIZEN_APPFW_I18N_H__ */