aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-08-06 09:39:01 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-08-06 09:39:01 (GMT)
commit47b17782af288bd6c590804032fb99067aa2dd5b (patch)
tree20f7fa31c78dcb76694f01df24e85fb04eed46bc
parentafc2a146af13333c9acc499c0ea06f1014c16b92 (diff)
downloadfluxbox_pavel-47b17782af288bd6c590804032fb99067aa2dd5b.zip
fluxbox_pavel-47b17782af288bd6c590804032fb99067aa2dd5b.tar.bz2
Add new translations to the C locale and fluxbox-nls.hh
-rw-r--r--nls/C/Translation.m9
-rw-r--r--nls/fluxbox-nls.hh10
-rw-r--r--src/Keys.cc2
-rw-r--r--src/MenuCreator.cc2
-rw-r--r--src/Screen.cc4
5 files changed, 26 insertions, 1 deletions
diff --git a/nls/C/Translation.m b/nls/C/Translation.m
index 52a268d..b166331 100644
--- a/nls/C/Translation.m
+++ b/nls/C/Translation.m
@@ -131,6 +131,8 @@ $set 9 #Keys
1311 Keys: Error on line 1311 Keys: Error on line
1322 Keys: Failed to merge keytree! 1322 Keys: Failed to merge keytree!
1333 Keys: Invalid key/modifier on line 1333 Keys: Invalid key/modifier on line
1344 3rd argument is not a command.
1355 Error loading keys file:
134 136
135$set 10 #Menu 137$set 10 #Menu
136 138
@@ -144,6 +146,11 @@ $set 10 #Menu
1448 Reload Config 1468 Reload Config
1459 Restart 1479 Restart
14610 Warning: unbalanced [encoding] tags 14810 Warning: unbalanced [encoding] tags
14911 Warning: Menu field %s is not a string
15012 Warning: Menu is not a lua table
15113 Loading root menu failed:
15214 Loading window menu failed:
15315 Unknown menu type:
147 154
148$set 11 #Remember 155$set 11 #Remember
149 156
@@ -277,4 +284,6 @@ $set 20 #layers
2775 Normal 2845 Normal
2786 Top 2856 Top
279 286
287$set 21 #FbCommands
280 288
2891 Failed to load menu file '%s': %s
diff --git a/nls/fluxbox-nls.hh b/nls/fluxbox-nls.hh
index 7ddc978..a0aefc8 100644
--- a/nls/fluxbox-nls.hh
+++ b/nls/fluxbox-nls.hh
@@ -130,6 +130,8 @@ enum {
130 KeysBadLine = 1, 130 KeysBadLine = 1,
131 KeysBadMerge = 2, 131 KeysBadMerge = 2,
132 KeysInvalidKeyMod = 3, 132 KeysInvalidKeyMod = 3,
133 KeysBad3rdArg = 4,
134 KeysLoadError = 5,
133 135
134 MenuSet = 10, 136 MenuSet = 10,
135 MenuConfiguration = 1, 137 MenuConfiguration = 1,
@@ -142,6 +144,11 @@ enum {
142 MenuReconfigure = 8, 144 MenuReconfigure = 8,
143 MenuRestart = 9, 145 MenuRestart = 9,
144 MenuErrorEndEncoding = 10, 146 MenuErrorEndEncoding = 10,
147 MenuFieldNotString = 11,
148 MenuMenuNotTable = 12,
149 MenuRootLoad = 13,
150 MenuWindowLoad = 14,
151 MenuUnknownType = 15,
145 152
146 RememberSet = 11, 153 RememberSet = 11,
147 RememberDecorations = 1, 154 RememberDecorations = 1,
@@ -250,6 +257,9 @@ enum {
250 LayerNormal = 5, 257 LayerNormal = 5,
251 LayerTop = 6, 258 LayerTop = 6,
252 259
260 FbCommandsSet = 21,
261 FbCommandsCantLoadMenu = 1,
262
253 dummy_not_used = 0 // just for the end 263 dummy_not_used = 0 // just for the end
254 264
255}; // end enum 265}; // end enum
diff --git a/src/Keys.cc b/src/Keys.cc
index 5b88434..0a3d856 100644
--- a/src/Keys.cc
+++ b/src/Keys.cc
@@ -221,6 +221,7 @@ int Keys::t_key::newindex(lua::state *l)
221 } else if(l->isnil(3)) 221 } else if(l->isnil(3))
222 k2.reset(); 222 k2.reset();
223 else { 223 else {
224 _FB_USES_NLS;
224 throw KeyError(_FB_CONSOLETEXT(Keys, Bad3rdArg, "3rd argument is not a command.", 225 throw KeyError(_FB_CONSOLETEXT(Keys, Bad3rdArg, "3rd argument is not a command.",
225 "3rd argument is not a command.")); 226 "3rd argument is not a command."));
226 } 227 }
@@ -572,6 +573,7 @@ void Keys::reload() {
572 l.call(0, 0); 573 l.call(0, 0);
573 } 574 }
574 catch(std::runtime_error &e) { 575 catch(std::runtime_error &e) {
576 _FB_USES_NLS;
575 cerr << _FB_CONSOLETEXT(Keys, LoadError, "Error loading keys file: ", 577 cerr << _FB_CONSOLETEXT(Keys, LoadError, "Error loading keys file: ",
576 "Actual error message follows") << e.what() << endl; 578 "Actual error message follows") << e.what() << endl;
577 loadDefaults(l); 579 loadDefaults(l);
diff --git a/src/MenuCreator.cc b/src/MenuCreator.cc
index 9898b61..56b90c0 100644
--- a/src/MenuCreator.cc
+++ b/src/MenuCreator.cc
@@ -194,6 +194,7 @@ createMenu_(FbTk::Menu &inject_into, lua::state &l, FbTk::StringConvertor &conv,
194void 194void
195insertMenuItem(lua::state &l, FbTk::Menu &menu, FbTk::StringConvertor &parent_conv, 195insertMenuItem(lua::state &l, FbTk::Menu &menu, FbTk::StringConvertor &parent_conv,
196 FbTk::AutoReloadHelper *reloader) { 196 FbTk::AutoReloadHelper *reloader) {
197 _FB_USES_NLS;
197 lua::stack_sentry s(l, -1); 198 lua::stack_sentry s(l, -1);
198 l.checkstack(1); 199 l.checkstack(1);
199 200
@@ -318,6 +319,7 @@ MenuCreator::createMenu(FbTk::Menu &inject_into, lua::state &l, FbTk::AutoReload
318 lua::stack_sentry s(l, -1); 319 lua::stack_sentry s(l, -1);
319 320
320 if(l.type(-1) != lua::TTABLE) { 321 if(l.type(-1) != lua::TTABLE) {
322 _FB_USES_NLS;
321 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",
322 "Menu is not a lua table") << endl; 324 "Menu is not a lua table") << endl;
323 return; 325 return;
diff --git a/src/Screen.cc b/src/Screen.cc
index 1acefc1..a051941 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -1370,6 +1370,7 @@ void BScreen::rereadMenu() {
1370 MenuCreator::createMenu(*m_rootmenu, l, m_rootmenu->reloadHelper()); 1370 MenuCreator::createMenu(*m_rootmenu, l, m_rootmenu->reloadHelper());
1371 } 1371 }
1372 catch(std::runtime_error &e) { 1372 catch(std::runtime_error &e) {
1373 _FB_USES_NLS;
1373 cerr << _FB_CONSOLETEXT(Menu, RootLoad, "Loading root menu failed: ", 1374 cerr << _FB_CONSOLETEXT(Menu, RootLoad, "Loading root menu failed: ",
1374 "Actual error message follows this string") << e.what() << endl; 1375 "Actual error message follows this string") << e.what() << endl;
1375 } 1376 }
@@ -1407,7 +1408,8 @@ void BScreen::rereadWindowMenu() {
1407 MenuCreator::createMenu(*m_windowmenu, l, m_windowmenu->reloadHelper()); 1408 MenuCreator::createMenu(*m_windowmenu, l, m_windowmenu->reloadHelper());
1408 } 1409 }
1409 catch(std::runtime_error &e) { 1410 catch(std::runtime_error &e) {
1410 cerr << _FB_CONSOLETEXT(Menu, RootLoad, "Loading window menu failed: ", 1411 _FB_USES_NLS;
1412 cerr << _FB_CONSOLETEXT(Menu, WindowLoad, "Loading window menu failed: ",
1411 "Actual error message follows this string") << e.what() << endl; 1413 "Actual error message follows this string") << e.what() << endl;
1412 } 1414 }
1413} 1415}