aboutsummaryrefslogtreecommitdiff
path: root/util/fbsetroot.cc
diff options
context:
space:
mode:
authormarkt <markt>2006-06-21 17:29:35 (GMT)
committermarkt <markt>2006-06-21 17:29:35 (GMT)
commit8b2c299d52b4818c49ec7d8a6b83e9f8d3681751 (patch)
tree22a2c4730632d324c06de41b22f0b24ccf5d167d /util/fbsetroot.cc
parentacefac8473350ae42a499d1532561e76a4ae8d65 (diff)
downloadfluxbox-8b2c299d52b4818c49ec7d8a6b83e9f8d3681751.zip
fluxbox-8b2c299d52b4818c49ec7d8a6b83e9f8d3681751.tar.bz2
Fix nls in fbsetroot.cc .
Diffstat (limited to 'util/fbsetroot.cc')
-rw-r--r--util/fbsetroot.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/fbsetroot.cc b/util/fbsetroot.cc
index 54a5138..842e183 100644
--- a/util/fbsetroot.cc
+++ b/util/fbsetroot.cc
@@ -120,7 +120,7 @@ fbsetroot::fbsetroot(int argc, char **argv, char *dpy_name)
120 120
121 if ((mod + sol + grd) != true) { 121 if ((mod + sol + grd) != true) {
122 _FB_USES_NLS; 122 _FB_USES_NLS;
123 cerr << _FBTEXT(fbsetroot, MustSpecify, 123 cerr << _FB_CONSOLETEXT(fbsetroot, MustSpecify,
124 "Error: must specify one of: -solid, -mod, -gradient\n", 124 "Error: must specify one of: -solid, -mod, -gradient\n",
125 "user didn't give one of the required options") << endl; 125 "user didn't give one of the required options") << endl;
126 126
@@ -195,7 +195,7 @@ void fbsetroot::setRootAtoms(Pixmap pixmap, int screen) {
195 195
196 if (atom_root == None || atom_eroot == None) { 196 if (atom_root == None || atom_eroot == None) {
197 _FB_USES_NLS; 197 _FB_USES_NLS;
198 cerr<<_FBTEXT(fbsetroot, NoPixmapAtoms, "Couldn't create pixmap atoms, giving up!", "Couldn't create atoms to point at root pixmap")<<endl; 198 cerr<<_FB_CONSOLETEXT(fbsetroot, NoPixmapAtoms, "Couldn't create pixmap atoms, giving up!", "Couldn't create atoms to point at root pixmap")<<endl;
199 exit(1); 199 exit(1);
200 } 200 }
201 201
@@ -382,7 +382,7 @@ void fbsetroot::usage(int exit_code) {
382 cout << m_app_name << " 2.3 : (c) 2003-2006 Fluxbox Development Team" << endl; 382 cout << m_app_name << " 2.3 : (c) 2003-2006 Fluxbox Development Team" << endl;
383 cout << m_app_name << " 2.1 : (c) 2002 Claes Nasten" << endl; 383 cout << m_app_name << " 2.1 : (c) 2002 Claes Nasten" << endl;
384 cout << m_app_name << " 2.0 : (c) 1997-2000 Brad Hughes\n" << endl; 384 cout << m_app_name << " 2.0 : (c) 1997-2000 Brad Hughes\n" << endl;
385 cout << _FBTEXT(fbsetroot, Usage, 385 cout << _FB_CONSOLETEXT(fbsetroot, Usage,
386 " -display <string> display connection\n" 386 " -display <string> display connection\n"
387 " -mod <x> <y> modula pattern\n" 387 " -mod <x> <y> modula pattern\n"
388 " -foreground, -fg <color> modula foreground color\n" 388 " -foreground, -fg <color> modula foreground color\n"
@@ -409,7 +409,7 @@ int main(int argc, char **argv) {
409 409
410 if ((++i) >= argc) { 410 if ((++i) >= argc) {
411 _FB_USES_NLS; 411 _FB_USES_NLS;
412 cerr<<_FBTEXT(main, DISPLAYRequiresArg, 412 cerr<<_FB_CONSOLETEXT(main, DISPLAYRequiresArg,
413 "error: '-display' requires an argument", 413 "error: '-display' requires an argument",
414 "option requires an argument")<<endl; 414 "option requires an argument")<<endl;
415 415