# HG changeset patch # User Matti Hamalainen # Date 1207172986 -10800 # Node ID 50e036a32db80dbd8cd45bfddff2382548d69c85 # Parent 94186706beed6397c3eabaf8840893a5bd3fd2cb De-gettextize. diff -r 94186706beed -r 50e036a32db8 src/xs_config.c --- a/src/xs_config.c Thu Apr 03 00:44:33 2008 +0300 +++ b/src/xs_config.c Thu Apr 03 00:49:46 2008 +0300 @@ -577,7 +577,7 @@ if (xs_cfg.sid2NFilterPresets > 0) { xs_cfg.sid2FilterPresets = g_malloc0(xs_cfg.sid2NFilterPresets * sizeof(t_xs_sid2_filter *)); if (!xs_cfg.sid2FilterPresets) { - xs_error(_("Allocation of sid2FilterPresets structure failed!\n")); + xs_error("Allocation of sid2FilterPresets structure failed!\n"); } else { for (i = 0; i < xs_cfg.sid2NFilterPresets; i++) { xs_cfg.sid2FilterPresets[i] = xs_filter_load(cfg, i); @@ -735,7 +735,7 @@ /* Get filter settings */ /* if (!xs_curve_get_points(XS_CURVE(LUW("")), &xs_cfg.sid2Filter.points, &xs_cfg.sid2Filter.npoints)) { - xs_error(_("Warning: Could not get filter curve widget points!\n")); + xs_error("Warning: Could not get filter curve widget points!\n"); } */ @@ -905,7 +905,7 @@ xs_curve_set_range(curve, 0,0, XS_SIDPLAY2_NFPOINTS, XS_SIDPLAY2_FMAX); if (!xs_curve_set_points(curve, f->points, f->npoints)) { // FIXME - xs_error(_("Warning: Could not set filter curve widget points!\n")); + xs_error("Warning: Could not set filter curve widget points!\n"); } }