comparison libpurple/protocols/myspace/zap.c @ 20729:c99f6ea2634d

Lots of comments for translators. I think I've seen these asked about three times, and I don't often see translators ask about stuff.
author Mark Doliner <mark@kingant.net>
date Mon, 01 Oct 2007 05:32:20 +0000
parents 51457cf3d27b
children 89c7be36fd61 eab7d03edfcb
comparison
equal deleted inserted replaced
20728:f653af2d4659 20729:c99f6ea2634d
39 attn->incoming_description = incoming; \ 39 attn->incoming_description = incoming; \
40 attn->outgoing_description = outgoing; \ 40 attn->outgoing_description = outgoing; \
41 types = g_list_append(types, attn); 41 types = g_list_append(types, attn);
42 42
43 /* TODO: icons for each zap */ 43 /* TODO: icons for each zap */
44
45 /* Lots of comments for translators: */
46
47 /* Zap means "to strike suddenly and forcefully as if with a
48 * projectile or weapon." This term often has an electrical
49 * connotation, for example, "he was zapped by electricity when
50 * he put a fork in the toaster." */
44 _MSIM_ADD_NEW_ATTENTION(NULL, _("Zap"), _("%s has zapped you!"), _("Zapping %s...")); 51 _MSIM_ADD_NEW_ATTENTION(NULL, _("Zap"), _("%s has zapped you!"), _("Zapping %s..."));
52
53 /* Whack means "to hit or strike someone with a sharp blow" */
45 _MSIM_ADD_NEW_ATTENTION(NULL, _("Whack"), _("%s has whacked you!"), _("Whacking %s...")); 54 _MSIM_ADD_NEW_ATTENTION(NULL, _("Whack"), _("%s has whacked you!"), _("Whacking %s..."));
55
56 /* Torch means "to set on fire." Don't worry, this doesn't
57 * make a whole lot of sense in English, either. Feel free
58 * to translate it literally. */
46 _MSIM_ADD_NEW_ATTENTION(NULL, _("Torch"), _("%s has torched you!"), _("Torching %s...")); 59 _MSIM_ADD_NEW_ATTENTION(NULL, _("Torch"), _("%s has torched you!"), _("Torching %s..."));
60
61 /* Smooch means "to kiss someone, often enthusiastically" */
47 _MSIM_ADD_NEW_ATTENTION(NULL, _("Smooch"), _("%s has smooched you!"), _("Smooching %s...")); 62 _MSIM_ADD_NEW_ATTENTION(NULL, _("Smooch"), _("%s has smooched you!"), _("Smooching %s..."));
63
64 /* A hug is a display of affection; wrapping your arms around someone */
48 _MSIM_ADD_NEW_ATTENTION(NULL, _("Hug"), _("%s has hugged you!"), _("Hugging %s...")); 65 _MSIM_ADD_NEW_ATTENTION(NULL, _("Hug"), _("%s has hugged you!"), _("Hugging %s..."));
66
67 /* Slap means "to hit someone with an open/flat hand" */
49 _MSIM_ADD_NEW_ATTENTION(NULL, _("Slap"), _("%s has slapped you!"), _("Slapping %s...")); 68 _MSIM_ADD_NEW_ATTENTION(NULL, _("Slap"), _("%s has slapped you!"), _("Slapping %s..."));
69
70 /* Goose means "to pinch someone on their butt" */
50 _MSIM_ADD_NEW_ATTENTION(NULL, _("Goose"), _("%s has goosed you!"), _("Goosing %s...")); 71 _MSIM_ADD_NEW_ATTENTION(NULL, _("Goose"), _("%s has goosed you!"), _("Goosing %s..."));
72
73 /* A high-five is when two people's hands slap each other
74 * in the air above their heads. It is done to celebrate
75 * something, often a victory, or to congratulate someone. */
51 _MSIM_ADD_NEW_ATTENTION(NULL, _("High-five"), _("%s has high-fived you!"), _("High-fiving %s...")); 76 _MSIM_ADD_NEW_ATTENTION(NULL, _("High-five"), _("%s has high-fived you!"), _("High-fiving %s..."));
77
78 /* We're not entirely sure what the MySpace people mean by
79 * this... but we think it's the equivalent of "prank." Or, for
80 * someone to perform a mischievous trick or practical joke. */
52 _MSIM_ADD_NEW_ATTENTION(NULL, _("Punk"), _("%s has punk'd you!"), _("Punking %s...")); 81 _MSIM_ADD_NEW_ATTENTION(NULL, _("Punk"), _("%s has punk'd you!"), _("Punking %s..."));
82
83 /* Raspberry is a slang term for the vibrating sound made
84 * when you stick your tongue out of your mouth with your
85 * lips closed and blow. It is typically done when
86 * gloating or bragging. Nowadays it's a pretty silly
87 * gesture, so it does not carry a harsh negative
88 * connotation. It is generally used in a playful tone
89 * with friends. */
53 _MSIM_ADD_NEW_ATTENTION(NULL, _("Raspberry"), _("%s has raspberried you!"), _("Raspberrying %s...")); 90 _MSIM_ADD_NEW_ATTENTION(NULL, _("Raspberry"), _("%s has raspberried you!"), _("Raspberrying %s..."));
54 } 91 }
55 92
56 return types; 93 return types;
57 } 94 }