Japanese translation of message catalog for Sawfish Window-Manager
修訂 | 307be684bdf19f12b47485c30ac6a390b5ec3af0 (tree) |
---|---|
時間 | 2012-04-06 04:50:28 |
作者 | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
Merge branch 'master' into local-master
Conflicts:
ChangeLog
@@ -2,6 +2,24 @@ | ||
2 | 2 | * lisp/sawfish/wm/ext/expose.jl |
3 | 3 | * lisp/sawfish/wm/edge/misc.jl: fixup expose action |
4 | 4 | |
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 | + | |
5 | 23 | 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org> |
6 | 24 | * lisp/sawfish/wm/ext/match-window.jl |
7 | 25 | * lisp/sawfish/wm/ext/window-history.jl |
@@ -27,9 +27,9 @@ AC_CONFIG_MACRO_DIR([m4]) | ||
27 | 27 | AM_PROG_LIBTOOL |
28 | 28 | |
29 | 29 | dnl Release versioning info |
30 | -version="1.8.92" | |
30 | +version="1.8.99" | |
31 | 31 | subversion="" |
32 | -codename="Coldwater Canyon" | |
32 | +codename="Housenation" | |
33 | 33 | |
34 | 34 | VERSION=${version} |
35 | 35 |
@@ -88,7 +88,7 @@ | ||
88 | 88 | ;; Returns nil if kde is not found. |
89 | 89 | ;; If detected, returns t, and do also kde support init. |
90 | 90 | (define (detect-kde) |
91 | - (when (or (equal (getenv "XDG_CURRENT_DESKTOP") KDE) | |
91 | + (when (or (equal (getenv "XDG_CURRENT_DESKTOP") "KDE") | |
92 | 92 | (getenv "KDE_FULL_SESSION")) |
93 | 93 | (init) |
94 | 94 | t)) |
@@ -62,7 +62,7 @@ | ||
62 | 62 | ;; add lxde-logout and customize menu-entries |
63 | 63 | (when (setq menu (assoc (_ "Sessi_on") root-menu)) |
64 | 64 | (nconc menu `(() |
65 | - (,(_ "_LXSession Logout") (system "lxsession-logout &"))))) | |
65 | + (,(_ "_LXSession Logout") (system "lxsession-logout &"))))))) | |
66 | 66 | |
67 | 67 | ;; Returns nil if lxde is not found. |
68 | 68 | ;; If detected, returns t, and do also lxde support init. |
@@ -181,9 +181,7 @@ before killing it.") | ||
181 | 181 | (,(_ "Sawfish _Wiki") help:show-homepage) |
182 | 182 | (,(_ "Sawfish _Manual") help:show-programmer-manual) |
183 | 183 | () |
184 | - (,(_ "_About Sawfish") help:about)) | |
185 | - () | |
186 | - (,(_ "_Kill Window") (system "xkill &")))) | |
184 | + (,(_ "_About Sawfish") help:about)))) | |
187 | 185 | |
188 | 186 | (defvar apps-menu) |
189 | 187 |
@@ -50,7 +50,8 @@ | ||
50 | 50 | sawfish.wm.edge.conf |
51 | 51 | sawfish.wm.edge.actions |
52 | 52 | sawfish.wm.frames |
53 | - sawfish.wm.menus) | |
53 | + sawfish.wm.menus | |
54 | + sawfish.wm.commands.launcher) | |
54 | 55 | (access sawfish.wm.integration.kde |
55 | 56 | sawfish.wm.integration.gnome |
56 | 57 | sawfish.wm.integration.xfce |
@@ -61,7 +62,7 @@ | ||
61 | 62 | (set-binds)) |
62 | 63 | |
63 | 64 | ;; "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. | |
65 | 66 | (defvar desktop-environment "none" |
66 | 67 | "Running desktop environment, detected by Sawfish. |
67 | 68 | Possible values are \"kde\", \"gnome\", \"mate\", \"xfce\", \"razor\", \"lxde\" or \"none\".") |
@@ -158,6 +159,15 @@ Possible values are \"kde\", \"gnome\", \"mate\", \"xfce\", \"razor\", \"lxde\" | ||
158 | 159 | (when (equal desktop-environment "kde") |
159 | 160 | (sawfish.wm.integration.kde#kde-late-init)) |
160 | 161 | |
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 | + | |
161 | 171 | ;; generate apps-menu from *.desktop files |
162 | 172 | (unless batch-mode |
163 | 173 | (init-apps-menu)) |