comparison src/bar_sort.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 6281cc38e5ca
children 71e1ebee420e
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.
212 case BAR_SORT_LINK: 212 case BAR_SORT_LINK:
213 if (!unlink_file(sd->undo_dest)) 213 if (!unlink_file(sd->undo_dest))
214 { 214 {
215 gchar *buf; 215 gchar *buf;
216 216
217 buf = g_strdup_printf("Unable to remove symbolic link:\n%s", sd->undo_dest); 217 buf = g_strdup_printf(_("Unable to remove symbolic link:\n%s"), sd->undo_dest);
218 file_util_warning_dialog(_("Unlink failed"), buf, GTK_STOCK_DIALOG_ERROR, button); 218 file_util_warning_dialog(_("Unlink failed"), buf, GTK_STOCK_DIALOG_ERROR, button);
219 g_free(buf); 219 g_free(buf);
220 } 220 }
221 break; 221 break;
222 } 222 }
292 } 292 }
293 else 293 else
294 { 294 {
295 gchar *buf; 295 gchar *buf;
296 296
297 buf = g_strdup_printf("Unable to create symbolic link:\n%s", dest_path); 297 buf = g_strdup_printf(_("Unable to create symbolic link:\n%s"), dest_path);
298 file_util_warning_dialog(_("Link failed"), buf, GTK_STOCK_DIALOG_ERROR, sd->bookmarks); 298 file_util_warning_dialog(_("Link failed"), buf, GTK_STOCK_DIALOG_ERROR, sd->bookmarks);
299 299
300 g_free(buf); 300 g_free(buf);
301 } 301 }
302 break; 302 break;