Japanese translation of message catalog for Sawfish Window-Manager
Revision | 36a0f3bb798bd62b4687681f96ceb29542756dda (tree) |
---|---|
Time | 2012-04-06 05:24:32 |
Author | Christopher Roy Bratusek <nano@tuxf...> |
Commiter | Christopher Roy Bratusek |
Merge branch 'misc-1.9' into local-master
Conflicts:
ChangeLog
@@ -26,6 +26,8 @@ | ||
26 | 26 | * scripts/sawfish-about.jl.in: update copyright notice // show |
27 | 27 | codename in the about-dialog |
28 | 28 | |
29 | + * lisp/sawfish/cfg/shell.jl: re-align buttons | |
30 | + | |
29 | 31 | 2012-03-26 Christopher Roy Bratusek <nano@tuxfamily.org> |
30 | 32 | * lisp/sawfish/wm/ext/match-window.jl |
31 | 33 | * lisp/sawfish/wm/ext/window-history.jl |
@@ -57,13 +57,15 @@ | ||
57 | 57 | |
58 | 58 | (define (initialize-shell) |
59 | 59 | (let ((vbox (gtk-vbox-new nil box-spacing)) |
60 | - (hbox (gtk-hbutton-box-new)) | |
60 | + (hbox-a (gtk-hbutton-box-new)) | |
61 | + (hbox-b (gtk-hbutton-box-new)) | |
61 | 62 | (s-scroller (gtk-scrolled-window-new)) |
62 | 63 | root-container) |
63 | 64 | |
64 | 65 | (setq main-window (gtk-window-new 'toplevel)) |
65 | 66 | |
66 | - (gtk-box-set-homogeneous hbox nil) | |
67 | + (gtk-box-set-homogeneous hbox-a nil) | |
68 | + (gtk-box-set-homogeneous hbox-b nil) | |
67 | 69 | (gtk-window-set-resizable main-window t) |
68 | 70 | (gtk-window-set-icon-name main-window "sawfish-config") |
69 | 71 | (gtk-window-set-default-size main-window 550 400) |
@@ -120,9 +122,13 @@ | ||
120 | 122 | |
121 | 123 | (g-signal-connect main-window "delete_event" on-quit) |
122 | 124 | |
123 | - (gtk-box-set-spacing hbox button-box-spacing) | |
124 | - (gtk-button-box-set-layout hbox 'center) | |
125 | - (gtk-box-pack-end vbox hbox) | |
125 | + (gtk-box-set-spacing hbox-a button-box-spacing) | |
126 | + (gtk-button-box-set-layout hbox-a 'center) | |
127 | + (gtk-box-pack-end vbox hbox-a) | |
128 | + | |
129 | + (gtk-box-set-spacing hbox-b button-box-spacing) | |
130 | + (gtk-button-box-set-layout hbox-b 'center) | |
131 | + (gtk-box-pack-end vbox hbox-b) | |
126 | 132 | |
127 | 133 | (g-signal-connect ok-widget "clicked" on-ok) |
128 | 134 | (g-signal-connect revert-widget "clicked" on-revert) |
@@ -154,14 +160,14 @@ | ||
154 | 160 | (copy-file file (concat "~/.sawfish/themes/" filex)) |
155 | 161 | (sawfish-config-display-info "Only tar-archives can be installed at the moment." nil))))) |
156 | 162 | |
157 | - (gtk-container-add hbox wiki-button) | |
158 | - (gtk-container-add hbox install-theme-label) | |
159 | - (gtk-container-add hbox install-theme-button) | |
160 | - (gtk-container-add hbox doc-button) | |
161 | - (gtk-container-add hbox edit-button) | |
162 | - (gtk-container-add hbox about-button) | |
163 | - (gtk-container-add hbox revert-widget) | |
164 | - (gtk-container-add hbox ok-widget) | |
163 | + (gtk-container-add hbox-a wiki-button) | |
164 | + (gtk-container-add hbox-b install-theme-label) | |
165 | + (gtk-container-add hbox-b install-theme-button) | |
166 | + (gtk-container-add hbox-b doc-button) | |
167 | + (gtk-container-add hbox-b edit-button) | |
168 | + (gtk-container-add hbox-a about-button) | |
169 | + (gtk-container-add hbox-a revert-widget) | |
170 | + (gtk-container-add hbox-a ok-widget) | |
165 | 171 | |
166 | 172 | (gtk-container-add root-container vbox) |
167 | 173 | (gtk-widget-show-all main-window) |
@@ -276,9 +276,11 @@ sticky, unsticky, fixed-position." | ||
276 | 276 | (setq release-window t) |
277 | 277 | (tab-delete-window-from-tab-groups w) |
278 | 278 | (setq release-window nil)) |
279 | + (if (window-get win 'iconified) (uniconify-window win)) | |
280 | + (if (window-get win 'shaded) (unshade-window win)) | |
279 | 281 | (setq tab-refresh-lock nil) |
282 | + (if (window-get w 'iconified) (uniconify-window w)) | |
280 | 283 | (if (window-get w 'shaded) (unshade-window w)) |
281 | - (if (window-get win 'shaded) (unshade-window win)) | |
282 | 284 | (window-put w 'frame-style group-frame-style) |
283 | 285 | (window-put w 'type group-frame-type) |
284 | 286 | (window-put w 'focus-mode group-frame-focus-mode) |