comparison src/sound.c @ 5281:eae93f3e46bd

[gaim-migrate @ 5653] Miloslav Trmac (trmac) writes: " Hello, attached patch contains two trivial message changes * Use "Entry field" instead of "Entry widget". "widget" is a technical term, it's non-technical meaning ("any random thing") is not great. And translating it is a pain for the same reason. * "because the chosen filename does not exist" s/filename/file/. " committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 02 May 2003 01:57:52 +0000
parents 0241d6b6702d
children ad445074d239
comparison
equal deleted inserted replaced
5280:c9116905a08c 5281:eae93f3e46bd
178 gdk_beep(); 178 gdk_beep();
179 return; 179 return;
180 } 180 }
181 181
182 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { 182 if (!g_file_test(filename, G_FILE_TEST_EXISTS)) {
183 char *tmp = g_strdup_printf(_("Unable to play sound because the chosen filename (%s) does not exist."), filename); 183 char *tmp = g_strdup_printf(_("Unable to play sound because the chosen file (%s) does not exist."), filename);
184 do_error_dialog(tmp, NULL, GAIM_ERROR); 184 do_error_dialog(tmp, NULL, GAIM_ERROR);
185 g_free(tmp); 185 g_free(tmp);
186 return; 186 return;
187 } 187 }
188 188