pidgin/gtkprefs.c

branch
soc.2013.gobjectification.plugins
changeset 37155
1aee6d5eefba
parent 37145
8826f95514fd
parent 36141
f85f5323ca97
child 37158
96b5ab42da00
equal deleted inserted replaced
37154:ff7a5660dd4f 37155:1aee6d5eefba
139 /* "esdmon", "ESD", ? */ 139 /* "esdmon", "ESD", ? */
140 "osssrc", "OSS", 140 "osssrc", "OSS",
141 "pulsesrc", "PulseAudio", 141 "pulsesrc", "PulseAudio",
142 "sndiosrc", "sndio", 142 "sndiosrc", "sndio",
143 /* "audiotestsrc wave=silence", "Silence", */ 143 /* "audiotestsrc wave=silence", "Silence", */
144 /* Translators: This is a noun that refers to one possible audio input
145 plugin. The plugin can be used by the user to sanity check basic audio
146 functionality within Pidgin. */
144 "audiotestsrc", N_("Test Sound"), 147 "audiotestsrc", N_("Test Sound"),
145 NULL 148 NULL
146 }; 149 };
147 150
148 static const gchar *AUDIO_SINK_PLUGINS[] = { 151 static const gchar *AUDIO_SINK_PLUGINS[] = {
157 NULL 160 NULL
158 }; 161 };
159 162
160 static const gchar *VIDEO_SRC_PLUGINS[] = { 163 static const gchar *VIDEO_SRC_PLUGINS[] = {
161 "videodisabledsrc", N_("Disabled"), 164 "videodisabledsrc", N_("Disabled"),
165 /* Translators: This is a noun that refers to one possible video input
166 plugin. The plugin can be used by the user to sanity check basic video
167 functionality within Pidgin. */
162 "videotestsrc", N_("Test Input"), 168 "videotestsrc", N_("Test Input"),
163 "dshowvideosrc","DirectDraw", 169 "dshowvideosrc","DirectDraw",
164 "ksvideosrc", "KS Video", 170 "ksvideosrc", "KS Video",
165 "qcamsrc", "Quickcam", 171 "qcamsrc", "Quickcam",
166 "v4lsrc", "Video4Linux", 172 "v4lsrc", "Video4Linux",
3490 if (!strcmp(element_name, "<custom>") || (*element_name == '\0')) { 3496 if (!strcmp(element_name, "<custom>") || (*element_name == '\0')) {
3491 return g_list_reverse(ret); 3497 return g_list_reverse(ret);
3492 } 3498 }
3493 3499
3494 if (g_strcmp0(element_name, "videodisabledsrc") == 0) { 3500 if (g_strcmp0(element_name, "videodisabledsrc") == 0) {
3501 /* Translators: This string refers to 'static' or 'snow' sometimes
3502 seen when trying to tune a TV to a non-existant analog station. */
3495 ret = g_list_prepend(ret, g_strdup(_("Random noise"))); 3503 ret = g_list_prepend(ret, g_strdup(_("Random noise")));
3496 ret = g_list_prepend(ret, g_strdup("snow")); 3504 ret = g_list_prepend(ret, g_strdup("snow"));
3497 3505
3498 return g_list_reverse(ret); 3506 return g_list_reverse(ret);
3499 } 3507 }

mercurial