comparison src/preferences.c @ 67:f63ecca6c087

Fri Oct 13 05:22:43 2006 John Ellis <johne@verizon.net> * bar_sort.c, pan-view.c, preferences.c: Mark strings for translation, plus punctuation fix. * utilops.c: Change auto rename start number to default to 1. * configure.in (ALL_LINGUAS): Add be, ca, ko translations. * gqview.spec.in: Add Italian translation to RPM spec file, submitted by HappyCactus <happycactus@people.it>. * be.po: Add Belarusion translation, submitted by Pavel Piatruk <berserker@neolocation.com>. * ca.po: Add Catalan translation [merge from 2.0.2], submitted by catux.org <mecatxis@ya.com>. * de.po: Update German translation [merge from 2.0.2], submitted by Ronny Steiner <Post@SIRSteiner.de>. * fr.po: Update French translation, submitted by ?ric Lassauge <lassauge@users.sourceforge.net>. * it.po: Update Italian translation, submitted by Kostantino <ciclope10ATalice.it>. * ko.po: Add Korean translation (mostly menus), submitted by Hyun-Jin Moon <moonhyunjin@gmail.com>. * pt_BR.po: Update Brazilian Portuguese translation, submitted by Herval Ribeiro de Azev??do <heraze@gmail.com>. * sk.po: Update Slovak translation, submitted by Mgr. Peter Tuharsky <tuharsky@misbb.sk>. * zh_TW.po: Update Traditional Chinese translation, submitted by S.J. Luo <crystal@mickey.ee.nctu.edu.tw>
author gqview
date Fri, 13 Oct 2006 10:14:59 +0000
parents acd9885ebd78
children d063f97503b7
comparison
equal deleted inserted replaced
66:ebbff299ad0d 67:f63ecca6c087
1 /* 1 /*
2 * GQview 2 * GQview
3 * (C) 2004 John Ellis 3 * (C) 2006 John Ellis
4 * 4 *
5 * Author: John Ellis 5 * Author: John Ellis
6 * 6 *
7 * This software is released under the GNU General Public License (GNU GPL). 7 * This software is released under the GNU General Public License (GNU GPL).
8 * Please read the included file COPYING for more information. 8 * Please read the included file COPYING for more information.
904 add_quality_menu(table, 0, 0, _("Quality:"), zoom_quality, &zoom_quality_c); 904 add_quality_menu(table, 0, 0, _("Quality:"), zoom_quality, &zoom_quality_c);
905 905
906 pref_checkbox_new_int(group, _("Two pass zooming"), 906 pref_checkbox_new_int(group, _("Two pass zooming"),
907 two_pass_zoom, &two_pass_zoom_c); 907 two_pass_zoom, &two_pass_zoom_c);
908 908
909 pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit."), 909 pref_checkbox_new_int(group, _("Allow enlargement of image for zoom to fit"),
910 zoom_to_fit_expands, &zoom_to_fit_expands_c); 910 zoom_to_fit_expands, &zoom_to_fit_expands_c);
911 911
912 zoom_increment_c = zoom_increment; 912 zoom_increment_c = zoom_increment;
913 spin = pref_spin_new(group, _("Zoom increment:"), NULL, 913 spin = pref_spin_new(group, _("Zoom increment:"), NULL,
914 0.1, 4.0, 1.0, 1, (double)zoom_increment / 10.0, 914 0.1, 4.0, 1.0, 1, (double)zoom_increment / 10.0,
1087 pref_label_bold(label, TRUE, FALSE); 1087 pref_label_bold(label, TRUE, FALSE);
1088 1088
1089 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0); 1089 label = pref_table_label(table, 1, 0, _("Menu name"), 0.0);
1090 pref_label_bold(label, TRUE, FALSE); 1090 pref_label_bold(label, TRUE, FALSE);
1091 1091
1092 label = pref_table_label(table, 2, 0, ("Command Line"), 0.0); 1092 label = pref_table_label(table, 2, 0, _("Command Line"), 0.0);
1093 pref_label_bold(label, TRUE, FALSE); 1093 pref_label_bold(label, TRUE, FALSE);
1094 1094
1095 for (i = 0; i < GQVIEW_EDITOR_SLOTS; i++) 1095 for (i = 0; i < GQVIEW_EDITOR_SLOTS; i++)
1096 { 1096 {
1097 gchar *buf; 1097 gchar *buf;
1315 gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0); 1315 gtk_box_pack_start(GTK_BOX(vbox), button, TRUE, TRUE, 0);
1316 gtk_widget_show(button); 1316 gtk_widget_show(button);
1317 1317
1318 buf = g_strdup_printf(_("GQview %s\n\nCopyright (c) %s John Ellis\nwebsite: %s\nemail: %s\n\nReleased under the GNU General Public License"), 1318 buf = g_strdup_printf(_("GQview %s\n\nCopyright (c) %s John Ellis\nwebsite: %s\nemail: %s\n\nReleased under the GNU General Public License"),
1319 VERSION, 1319 VERSION,
1320 "2005", 1320 "2006",
1321 "gqview.sourceforge.net", 1321 "gqview.sourceforge.net",
1322 "gqview@users.sourceforge.net"); 1322 "gqview@users.sourceforge.net");
1323 label = gtk_label_new(buf); 1323 label = gtk_label_new(buf);
1324 g_free(buf); 1324 g_free(buf);
1325 1325