summaryrefslogtreecommitdiff
path: root/dselect
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2008-08-26 23:14:33 +0300
committerGuillem Jover <guillem@debian.org>2008-09-14 04:10:03 +0300
commitae5152d3b002f178394244fb8a8534cdc5a045cf (patch)
tree718aad969a5a8f679d67100f2ad2a5ce248c8904 /dselect
parent0ced8bb35da927c351e7d684c9a08f91bf394b3f (diff)
downloaddpkg-ae5152d3b002f178394244fb8a8534cdc5a045cf.tar.gz
dselect: Unmark debug messages for translation
Diffstat (limited to 'dselect')
-rw-r--r--dselect/baselist.cc4
-rw-r--r--dselect/methlist.cc2
-rw-r--r--dselect/pkgdepcon.cc8
-rw-r--r--dselect/pkglist.cc4
-rw-r--r--dselect/pkgsublist.cc4
5 files changed, 11 insertions, 11 deletions
diff --git a/dselect/baselist.cc b/dselect/baselist.cc
index 2478a6380..9e64a590f 100644
--- a/dselect/baselist.cc
+++ b/dselect/baselist.cc
@@ -199,12 +199,12 @@ void baselist::startdisplay() {
if (debug)
fprintf(debug,
- _("baselist::startdisplay() done ...\n\n"
+ "baselist::startdisplay() done ...\n\n"
" xmax=%d, ymax=%d;\n\n"
" title_height=%d, colheads_height=%d, list_height=%d;\n"
" thisstate_height=%d, info_height=%d, whatinfo_height=%d;\n\n"
" colheads_row=%d, thisstate_row=%d, info_row=%d;\n"
- " whatinfo_row=%d, list_row=%d;\n\n"),
+ " whatinfo_row=%d, list_row=%d;\n\n",
xmax, ymax,
title_height, colheads_height, list_height,
thisstate_height, info_height, whatinfo_height,
diff --git a/dselect/methlist.cc b/dselect/methlist.cc
index d13aa12c6..b133aa663 100644
--- a/dselect/methlist.cc
+++ b/dselect/methlist.cc
@@ -172,7 +172,7 @@ quitaction methodlist::display() {
interp= (*bindings)(response);
if (debug)
fprintf(debug,"methodlist[%p]::display() response=%d interp=%s\n",
- this,response, interp ? interp->action : _("[none]"));
+ this,response, interp ? interp->action : "[none]");
if (!interp) { beep(); continue; }
(this->*(interp->mfn))();
if (interp->qa != qa_noquit) break;
diff --git a/dselect/pkgdepcon.cc b/dselect/pkgdepcon.cc
index f5a8c4570..4b41961e3 100644
--- a/dselect/pkgdepcon.cc
+++ b/dselect/pkgdepcon.cc
@@ -206,13 +206,13 @@ int packagelist::resolvedepcon(dependency *depends) {
if (depdebug && debug) {
fprintf(debug,"packagelist[%p]::resolvedepcon([%p] %s --%s-->",
- this,depends,depends->up->name,gettext(relatestrings[depends->type]));
+ this, depends, depends->up->name, relatestrings[depends->type]);
for (possi=depends->list; possi; possi=possi->next)
fprintf(debug," %s",possi->ed->name);
fprintf(debug,"); (ing)->want=%s\n",
depends->up->clientdata
- ? gettext(wantstrings[depends->up->clientdata->suggested])
- : _("(no clientdata)"));
+ ? wantstrings[depends->up->clientdata->suggested]
+ : "(no clientdata)");
}
if (!depends->up->clientdata) return 0;
@@ -239,7 +239,7 @@ int packagelist::resolvedepcon(dependency *depends) {
if (depdebug && debug)
fprintf(debug,"packagelist[%p]::resolvedepcon([%p]): depends found %s\n",
this,depends,
- possi ? possi->ed->name : _("[none]"));
+ possi ? possi->ed->name : "[none]");
if (possi) return 0;
// Ensures all in the recursive list; adds info strings; ups priorities
diff --git a/dselect/pkglist.cc b/dselect/pkglist.cc
index b459b11b7..3557a901c 100644
--- a/dselect/pkglist.cc
+++ b/dselect/pkglist.cc
@@ -118,8 +118,8 @@ void packagelist::addheading(enum ssavailval ssavail,
if (debug) fprintf(debug,"packagelist[%p]::addheading(%d,%d,%d,%s,%s)\n",
this,ssavail,ssstate,priority,
- otherpriority ? otherpriority : _("<null>"),
- section ? section : _("<null>"));
+ otherpriority ? otherpriority : "<null>",
+ section ? section : "<null>");
struct pkginfo *newhead= new pkginfo;
newhead->name= 0;
diff --git a/dselect/pkgsublist.cc b/dselect/pkgsublist.cc
index f2a5a2459..f5d2225a0 100644
--- a/dselect/pkgsublist.cc
+++ b/dselect/pkgsublist.cc
@@ -52,14 +52,14 @@ void packagelist::add(pkginfo *pkg) {
void packagelist::add(pkginfo *pkg, pkginfo::pkgwant nw) {
if (debug) fprintf(debug,"packagelist[%p]::add(pkginfo %s, %s)\n",
- this,pkg->name,gettext(wantstrings[nw]));
+ this, pkg->name, wantstrings[nw]);
add(pkg); if (!pkg->clientdata) return;
pkg->clientdata->direct= nw;
selpriority np;
np= would_like_to_install(nw,pkg) ? sp_selecting : sp_deselecting;
if (pkg->clientdata->spriority > np) return;
if (debug) fprintf(debug,"packagelist[%p]::add(pkginfo %s, %s) setting\n",
- this,pkg->name,gettext(wantstrings[nw]));
+ this, pkg->name, wantstrings[nw]);
pkg->clientdata->suggested= pkg->clientdata->selected= nw;
pkg->clientdata->spriority= np;