changeset 666:50e036a32db8

De-gettextize.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Apr 2008 00:49:46 +0300
parents 94186706beed
children 188082b8b9ab
files src/xs_config.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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");
     }
 }