Mercurial > pidgin
changeset 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 | c9116905a08c |
children | 2d7f9a092b81 |
files | src/prefs.c src/sound.c |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/prefs.c Fri May 02 01:43:34 2003 +0000 +++ b/src/prefs.c Fri May 02 01:57:52 2003 +0000 @@ -662,7 +662,7 @@ gtk_misc_set_alignment(GTK_MISC(widge), 0, 0); gaim_labeled_spin_button(vbox, _("New window _width:"), &conv_size.width, 25, 9999, sg); gaim_labeled_spin_button(vbox, _("New window _height:"), &conv_size.height, 25, 9999, sg); - gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &conv_size.entry_height, 25, 9999, sg); + gaim_labeled_spin_button(vbox, _("_Entry field height:"), &conv_size.entry_height, 25, 9999, sg); gaim_button(_("_Raise windows on events"), &im_options, OPT_IM_POPUP, vbox); gaim_button(_("Hide window on _send"), &im_options, OPT_IM_POPDOWN, vbox); gtk_widget_show (vbox); @@ -705,7 +705,7 @@ gtk_misc_set_alignment(GTK_MISC(dd), 0, 0); gaim_labeled_spin_button(vbox, _("New window _width:"), &buddy_chat_size.width, 25, 9999, sg); gaim_labeled_spin_button(vbox, _("New window _height:"), &buddy_chat_size.height, 25, 9999, sg); - gaim_labeled_spin_button(vbox, _("_Entry widget height:"), &buddy_chat_size.entry_height, 25, 9999, sg); + gaim_labeled_spin_button(vbox, _("_Entry field height:"), &buddy_chat_size.entry_height, 25, 9999, sg); gaim_button(_("_Raise windows on events"), &chat_options, OPT_CHAT_POPUP, vbox); vbox = make_frame (ret, _("Tab Completion"));
--- a/src/sound.c Fri May 02 01:43:34 2003 +0000 +++ b/src/sound.c Fri May 02 01:57:52 2003 +0000 @@ -180,7 +180,7 @@ } if (!g_file_test(filename, G_FILE_TEST_EXISTS)) { - char *tmp = g_strdup_printf(_("Unable to play sound because the chosen filename (%s) does not exist."), filename); + char *tmp = g_strdup_printf(_("Unable to play sound because the chosen file (%s) does not exist."), filename); do_error_dialog(tmp, NULL, GAIM_ERROR); g_free(tmp); return;