aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-06 09:39:01 (GMT)
committerPavel Labath <pavelo@centrum.sk>2013-02-18 21:04:25 (GMT)
commit5db77881da1cc861c0cd6bd426fd7a9931c9e44b (patch)
tree03fb600bf2f7d76947bed1d5017684b5a87f3f3c /src
parentec8e83ad0e18ea115841dfd04c324b1e1a415503 (diff)
downloadfluxbox_pavel-5db77881da1cc861c0cd6bd426fd7a9931c9e44b.zip
fluxbox_pavel-5db77881da1cc861c0cd6bd426fd7a9931c9e44b.tar.bz2
Add new translations to the C locale and fluxbox-nls.hh
Diffstat (limited to 'src')
-rw-r--r--src/Keys.cc4
-rw-r--r--src/MenuCreator.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Keys.cc b/src/Keys.cc
index fcf8150..2c5f46c 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -223,7 +223,7 @@ int Keys::t_key::newindex(lua::state *l)
223 } else if(l->isnil(3)) 223 } else if(l->isnil(3))
224 k2.reset(); 224 k2.reset();
225 else { 225 else {
226 _FB_USES_NLS; 226 _FB_USES_NLS;
227 throw KeyError(_FB_CONSOLETEXT(Keys, Bad3rdArg, "3rd argument is not a command.", 227 throw KeyError(_FB_CONSOLETEXT(Keys, Bad3rdArg, "3rd argument is not a command.",
228 "3rd argument is not a command.")); 228 "3rd argument is not a command."));
229 } 229 }
@@ -581,7 +581,7 @@ void Keys::reload() {
581 l.call(0, 0); 581 l.call(0, 0);
582 } 582 }
583 catch(std::runtime_error &e) { 583 catch(std::runtime_error &e) {
584 _FB_USES_NLS; 584 _FB_USES_NLS;
585 cerr << _FB_CONSOLETEXT(Keys, LoadError, "Error loading keys file: ", 585 cerr << _FB_CONSOLETEXT(Keys, LoadError, "Error loading keys file: ",
586 "Actual error message follows") << e.what() << endl; 586 "Actual error message follows") << e.what() << endl;
587 loadDefaults(l); 587 loadDefaults(l);
diff --git a/src/MenuCreator.cc b/src/MenuCreator.cc
index 0b0baf7..56b90c0 100644
--- a/src/MenuCreator.cc
+++ b/src/MenuCreator.cc
@@ -319,7 +319,7 @@ MenuCreator::createMenu(FbTk::Menu &inject_into, lua::state &l, FbTk::AutoReload
319 lua::stack_sentry s(l, -1); 319 lua::stack_sentry s(l, -1);
320 320
321 if(l.type(-1) != lua::TTABLE) { 321 if(l.type(-1) != lua::TTABLE) {
322 _FB_USES_NLS; 322 _FB_USES_NLS;
323 cerr << _FB_CONSOLETEXT(Menu, MenuNotTable, "Warning: Menu is not a lua table", 323 cerr << _FB_CONSOLETEXT(Menu, MenuNotTable, "Warning: Menu is not a lua table",
324 "Menu is not a lua table") << endl; 324 "Menu is not a lua table") << endl;
325 return; 325 return;