• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
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

Revision6d0602f11b83e1b5bc6b089461fd4c8c647abcfb (tree)
Time2012-04-06 05:34:06
AuthorChristopher Roy Bratusek <nano@tuxf...>
CommiterChristopher Roy Bratusek

Log Message

Merge branch 'misc-1.9' into local-master

Change Summary

Incremental Difference

--- a/lisp/sawfish/cfg/shell.jl
+++ b/lisp/sawfish/cfg/shell.jl
@@ -64,8 +64,8 @@
6464
6565 (setq main-window (gtk-window-new 'toplevel))
6666
67- (gtk-box-set-homogeneous hbox-a nil)
68- (gtk-box-set-homogeneous hbox-b nil)
67+ (gtk-box-set-homogeneous hbox-a t)
68+ (gtk-box-set-homogeneous hbox-b t)
6969 (gtk-window-set-resizable main-window t)
7070 (gtk-window-set-icon-name main-window "sawfish-config")
7171 (gtk-window-set-default-size main-window 550 400)
@@ -100,16 +100,21 @@
100100
101101
102102 (setq ok-widget (gtk-button-new-from-stock "gtk-close"))
103+ (gtk-button-set-relief ok-widget 'none)
103104 (setq revert-widget (gtk-button-new-from-stock "gtk-undo"))
105+ (gtk-button-set-relief revert-widget 'none)
104106
105107 (setq wiki-button (gtk-link-button-new-with-label "http://sawfish.wikia.com/" "Browse Wiki"))
106- (gtk-button-set-relief wiki-button 'normal)
108+ (gtk-button-set-relief wiki-button 'none)
107109
108110 (setq edit-button (gtk-button-new-from-stock "gtk-edit"))
109111 (gtk-button-set-label edit-button "Edit RC")
112+ (gtk-button-set-relief edit-button 'none)
110113
111114 (setq about-button (gtk-button-new-from-stock "gtk-about"))
115+ (gtk-button-set-relief about-button 'none)
112116 (setq doc-button (gtk-button-new-from-stock "gtk-help"))
117+ (gtk-button-set-relief doc-button 'none)
113118
114119 (setq install-theme-label (gtk-label-new "Install theme:"))
115120 (setq install-theme-button (gtk-file-chooser-button-new '() 'open))
@@ -123,13 +128,14 @@
123128 (g-signal-connect main-window "delete_event" on-quit)
124129
125130 (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)
131+ (gtk-button-box-set-layout hbox-a 'spread)
128132
129133 (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)
134+ (gtk-button-box-set-layout hbox-b 'spread)
132135
136+ (gtk-box-pack-end vbox hbox-b)
137+ (gtk-box-pack-end vbox hbox-a)
138+
133139 (g-signal-connect ok-widget "clicked" on-ok)
134140 (g-signal-connect revert-widget "clicked" on-revert)
135141