aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-06-08 13:15:30 (GMT)
committerrathnor <rathnor>2004-06-08 13:15:30 (GMT)
commitb1b3a6b8d241388eef6d31029e2791a8e9cfaeba (patch)
tree0203940d67dee1025c11dd997ecb825d18db0f03 /src
parentb659c2583c5a8825da34b94977fab213ab7946d4 (diff)
downloadfluxbox-b1b3a6b8d241388eef6d31029e2791a8e9cfaeba.zip
fluxbox-b1b3a6b8d241388eef6d31029e2791a8e9cfaeba.tar.bz2
more nls updates
Diffstat (limited to 'src')
-rw-r--r--src/MenuCreator.cc4
-rw-r--r--src/WorkspaceMenu.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/MenuCreator.cc b/src/MenuCreator.cc
index 6bf9c29..a2bdb5c 100644
--- a/src/MenuCreator.cc
+++ b/src/MenuCreator.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: MenuCreator.cc,v 1.7 2004/06/07 22:23:50 fluxgen Exp $ 23// $Id: MenuCreator.cc,v 1.8 2004/06/08 13:15:30 rathnor Exp $
24 24
25#include "MenuCreator.hh" 25#include "MenuCreator.hh"
26 26
@@ -396,7 +396,7 @@ bool MenuCreator::createWindowMenuItem(const std::string &type,
396 } 396 }
397 397
398 } else if (type == "sendto") { 398 } else if (type == "sendto") {
399 menu.insert(label.empty()?_FBTEXT(Windowmenu, Shade, "Shade", "Shade the window"):label.c_str(), new SendToMenu(win)); 399 menu.insert(label.empty()?_FBTEXT(Windowmenu, SendTo, "Send To...", "Send to menu item name"):label.c_str(), new SendToMenu(win));
400 } else if (type == "layer") { 400 } else if (type == "layer") {
401 BScreen *screen = Fluxbox::instance()->findScreen(menu.screenNumber()); 401 BScreen *screen = Fluxbox::instance()->findScreen(menu.screenNumber());
402 if (screen == 0) 402 if (screen == 0)
diff --git a/src/WorkspaceMenu.cc b/src/WorkspaceMenu.cc
index 3e93e92..7e4f351 100644
--- a/src/WorkspaceMenu.cc
+++ b/src/WorkspaceMenu.cc
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: WorkspaceMenu.cc,v 1.3 2004/06/07 22:01:11 fluxgen Exp $ 22// $Id: WorkspaceMenu.cc,v 1.4 2004/06/08 13:15:30 rathnor Exp $
23 23
24#include "WorkspaceMenu.hh" 24#include "WorkspaceMenu.hh"
25 25
@@ -91,7 +91,7 @@ void WorkspaceMenu::init(BScreen &screen) {
91 91
92 removeAll(); 92 removeAll();
93 93
94 setLabel(_FBTEXT(Workspace, MenuTitle, "Workspace", "Title of main workspace menu")); 94 setLabel(_FBTEXT(Workspace, MenuTitle, "Workspaces", "Title of main workspace menu"));
95 RefCount<Command> new_workspace(new SimpleCommand<BScreen, int>(screen, &BScreen::addWorkspace)); 95 RefCount<Command> new_workspace(new SimpleCommand<BScreen, int>(screen, &BScreen::addWorkspace));
96 RefCount<Command> remove_last(new SimpleCommand<BScreen, int>(screen, &BScreen::removeLastWorkspace)); 96 RefCount<Command> remove_last(new SimpleCommand<BScreen, int>(screen, &BScreen::removeLastWorkspace));
97 insert(_FBTEXT(Workspace, NewWorkspace, "New Workspace", "Add a new workspace"), 97 insert(_FBTEXT(Workspace, NewWorkspace, "New Workspace", "Add a new workspace"),