• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Japanese translation of message catalog for Sawfish Window-Manager


Commit MetaInfo

修订版307be684bdf19f12b47485c30ac6a390b5ec3af0 (tree)
时间2012-04-06 04:50:28
作者Christopher Roy Bratusek <nano@tuxf...>
CommiterChristopher Roy Bratusek

Log Message

Merge branch 'master' into local-master

Conflicts:
ChangeLog

更改概述

差异

--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,24 @@
22 * lisp/sawfish/wm/ext/expose.jl
33 * lisp/sawfish/wm/edge/misc.jl: fixup expose action
44
5+ * lisp/sawfish/wm/commands/launcher.jl: add filemanager launcher
6+
7+ * lisp/sawfish/wm/menus.jl
8+ * lisp/sawfish/wm/user.jl: if filemanager is set, provide 'Open Home'
9+ entry in Sawfish's root-menu
10+
11+ * lisp/sawfish/wm/integration/mate.jl
12+ * lisp/sawfish/wm/integration/razor-qt.jl
13+ * lisp/sawfish/wm/integration/kde.jl
14+ * lisp/sawfish/wm/integration/gnome.jl
15+ * lisp/sawfish/wm/integration/xfce.jl: try to match against
16+ XDG_CURRENT_DESKTOP to detect desktop -- add desktop specific entries
17+ for filemanager launcher
18+
19+ * lisp/sawfish/wm/integration/lxde.jl: LXDE integration module
20+
21+ * configure.in: bump version to 1.8.99 "Housenation"
22+
523 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org>
624 * lisp/sawfish/wm/ext/match-window.jl
725 * lisp/sawfish/wm/ext/window-history.jl
--- a/configure.in
+++ b/configure.in
@@ -27,9 +27,9 @@ AC_CONFIG_MACRO_DIR([m4])
2727 AM_PROG_LIBTOOL
2828
2929 dnl Release versioning info
30-version="1.8.92"
30+version="1.8.99"
3131 subversion=""
32-codename="Coldwater Canyon"
32+codename="Housenation"
3333
3434 VERSION=${version}
3535
--- a/lisp/sawfish/wm/integration/kde.jl
+++ b/lisp/sawfish/wm/integration/kde.jl
@@ -88,7 +88,7 @@
8888 ;; Returns nil if kde is not found.
8989 ;; If detected, returns t, and do also kde support init.
9090 (define (detect-kde)
91- (when (or (equal (getenv "XDG_CURRENT_DESKTOP") KDE)
91+ (when (or (equal (getenv "XDG_CURRENT_DESKTOP") "KDE")
9292 (getenv "KDE_FULL_SESSION"))
9393 (init)
9494 t))
--- a/lisp/sawfish/wm/integration/lxde.jl
+++ b/lisp/sawfish/wm/integration/lxde.jl
@@ -62,7 +62,7 @@
6262 ;; add lxde-logout and customize menu-entries
6363 (when (setq menu (assoc (_ "Sessi_on") root-menu))
6464 (nconc menu `(()
65- (,(_ "_LXSession Logout") (system "lxsession-logout &")))))
65+ (,(_ "_LXSession Logout") (system "lxsession-logout &")))))))
6666
6767 ;; Returns nil if lxde is not found.
6868 ;; If detected, returns t, and do also lxde support init.
--- a/lisp/sawfish/wm/menus.jl
+++ b/lisp/sawfish/wm/menus.jl
@@ -181,9 +181,7 @@ before killing it.")
181181 (,(_ "Sawfish _Wiki") help:show-homepage)
182182 (,(_ "Sawfish _Manual") help:show-programmer-manual)
183183 ()
184- (,(_ "_About Sawfish") help:about))
185- ()
186- (,(_ "_Kill Window") (system "xkill &"))))
184+ (,(_ "_About Sawfish") help:about))))
187185
188186 (defvar apps-menu)
189187
--- a/lisp/sawfish/wm/user.jl
+++ b/lisp/sawfish/wm/user.jl
@@ -50,7 +50,8 @@
5050 sawfish.wm.edge.conf
5151 sawfish.wm.edge.actions
5252 sawfish.wm.frames
53- sawfish.wm.menus)
53+ sawfish.wm.menus
54+ sawfish.wm.commands.launcher)
5455 (access sawfish.wm.integration.kde
5556 sawfish.wm.integration.gnome
5657 sawfish.wm.integration.xfce
@@ -61,7 +62,7 @@
6162 (set-binds))
6263
6364 ;; "none" looks ugly, but if you are to change it to "", fix
64- ;; apps-menu, too, or it will break.
65+ ;; apps-menu, too, or it will break.
6566 (defvar desktop-environment "none"
6667 "Running desktop environment, detected by Sawfish.
6768 Possible values are \"kde\", \"gnome\", \"mate\", \"xfce\", \"razor\", \"lxde\" or \"none\".")
@@ -158,6 +159,15 @@ Possible values are \"kde\", \"gnome\", \"mate\", \"xfce\", \"razor\", \"lxde\"
158159 (when (equal desktop-environment "kde")
159160 (sawfish.wm.integration.kde#kde-late-init))
160161
162+ (if (equal filemanager "")
163+ (let ((menu root-menu))
164+ (nconc menu `(()
165+ (,(_ "_Kill Window") (system "xkill &")))))
166+ (let ((menu root-menu))
167+ (nconc menu `(()
168+ (,(_ "_Open Home") (filemanager "~"))
169+ (,(_ "_Kill Window") (system "xkill &"))))))
170+
161171 ;; generate apps-menu from *.desktop files
162172 (unless batch-mode
163173 (init-apps-menu))