aboutsummaryrefslogtreecommitdiff
path: root/src/presentation.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-11-10 21:46:24 +0100
committerThomas White <taw@physics.org>2018-11-10 21:46:24 +0100
commit738715858a0ca28ce4a85e0b556e09368e96cdf0 (patch)
tree9c1cebe6851524464eb360b72e0e92df708b333b /src/presentation.c
parenta12dba1223bba998d3c6d29aada61a609d9ea351 (diff)
Mark debugging messages as non-translatable
Diffstat (limited to 'src/presentation.c')
-rw-r--r--src/presentation.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/presentation.c b/src/presentation.c
index ae3f044..d7d9c08 100644
--- a/src/presentation.c
+++ b/src/presentation.c
@@ -240,7 +240,7 @@ SCBlock *first_slide(struct presentation *p)
bl = sc_block_next(bl);
}
- fprintf(stderr, _("Couldn't find first slide!\n"));
+ fprintf(stderr, "Couldn't find first slide!\n");
return NULL;
}
@@ -258,7 +258,7 @@ SCBlock *last_slide(struct presentation *p)
}
if ( l == NULL ) {
- fprintf(stderr, _("Couldn't find last slide!\n"));
+ fprintf(stderr, "Couldn't find last slide!\n");
}
return l;
}
@@ -279,7 +279,7 @@ SCBlock *next_slide(struct presentation *p, SCBlock *sl)
bl = sc_block_next(bl);
}
- fprintf(stderr, _("Couldn't find next slide!\n"));
+ fprintf(stderr, "Couldn't find next slide!\n");
return NULL;
}
@@ -300,7 +300,7 @@ SCBlock *prev_slide(struct presentation *p, SCBlock *sl)
bl = sc_block_next(bl);
}
- fprintf(stderr, _("Couldn't find prev slide!\n"));
+ fprintf(stderr, "Couldn't find prev slide!\n");
return NULL;
}