comparison libpurple/protocols/oscar/visibility.c @ 30938:1ade51ed363c

Add comments for translators
author Mark Doliner <mark@kingant.net>
date Sun, 21 Nov 2010 10:37:29 +0000
parents 0accc8adb18a
children 8d6630912021
comparison
equal deleted inserted replaced
30937:d8784469072e 30938:1ade51ed363c
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
19 */ 19 */
20 20
21 #include "visibility.h" 21 #include "visibility.h"
22 22
23 /* 4 separate strings are needed in order to ease translators' job */ 23 /* Translators: This string is a menu option that, if selected, will cause
24 you to appear online to the chosen user even when your status is set to
25 Invisible. */
24 #define APPEAR_ONLINE N_("Appear Online") 26 #define APPEAR_ONLINE N_("Appear Online")
27
28 /* Translators: This string is a menu option that, if selected, will cause
29 you to appear offline to the chosen user when your status is set to
30 Invisible (this is the default). */
25 #define DONT_APPEAR_ONLINE N_("Don't Appear Online") 31 #define DONT_APPEAR_ONLINE N_("Don't Appear Online")
32
33 /* Translators: This string is a menu option that, if selected, will cause
34 you to always appear offline to the chosen user (even when your status
35 isn't Invisible). */
26 #define APPEAR_OFFLINE N_("Appear Offline") 36 #define APPEAR_OFFLINE N_("Appear Offline")
37
38 /* Translators: This string is a menu option that, if selected, will cause
39 you to appear offline to the chosen user if you are invisible, and
40 appear online to the chosen user if you are not invisible (this is the
41 default). */
27 #define DONT_APPEAR_OFFLINE N_("Don't Appear Offline") 42 #define DONT_APPEAR_OFFLINE N_("Don't Appear Offline")
28 43
29 static guint16 44 static guint16
30 get_buddy_list_type(OscarData *od) 45 get_buddy_list_type(OscarData *od)
31 { 46 {