• 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

修订版1b46b93e3ba3db984d9707ec5a024ff07c450fde (tree)
时间2000-07-09 23:35:27
作者john <john>
Commiterjohn

Log Message

*** empty log message ***

更改概述

差异

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
1+2000-07-09 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * configure.in: version 0.30
4+
5+ * sawfish.spec.in: merged -gnome package into base, require
6+ rep-gtk 0.13
7+
8+ * po/uk.po, po/ru.po: imported from cvs.gnome.org (ru - Valek
9+ Filippov, uk - Yuri Syrota)
10+
111 2000-07-06 John Harper <john@dcs.warwick.ac.uk>
212
313 * configure.in, Makefile.in, capplet/Makefile.in,
--- a/THANKS
+++ b/THANKS
@@ -79,7 +79,9 @@ Thanks also to those who have contributed translations:
7979 Man-Yong Lee
8080 Rui Silva
8181 Satoru Sato
82+ Valek Filippov
8283 Wandy Christiansen
84+ Yuri Syrota
8385
8486 Apologies if I've missed any names, mail me if you should be listed.
8587
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,15 @@
1+2000-07-09 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * version 0.30
4+
5+2000-07-08 John Harper <john@dcs.warwick.ac.uk>
6+
7+ * functions.jl (command-sequence): new command, allows the
8+ bindings ui to bind _sequences_ of commands to a single event
9+
10+ * viewport.jl (activate-viewport-column,
11+ activate-viewport-row): new commands
12+
113 2000-07-06 John Harper <john@dcs.warwick.ac.uk>
214
315 * transient.jl (map-transient-group): new function
--- a/lisp/sawfish/ui/ChangeLog
+++ b/lisp/sawfish/ui/ChangeLog
@@ -1,3 +1,30 @@
1+2000-07-09 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * version 0.30
4+
5+ * nokogiri-widget-dialog.jl: put the title above the widget,
6+ not beside it
7+
8+ * nokogiri-widget.jl: new widget type `quoted'
9+
10+2000-07-08 John Harper <john@dcs.warwick.ac.uk>
11+
12+ * nokogiri-widgets/pair.jl (make-pair-item): added optional arg
13+ REVERSED, when non-nil, the layout order of the widgets is
14+ swapped
15+
16+ * nokogiri-widgets/event.jl, nokogiri-widgets/command.jl:
17+ factored these out of the `keymap' widget, since they may be of
18+ use individually
19+
20+2000-07-07 John Harper <john@dcs.warwick.ac.uk>
21+
22+ * nokogiri-widgets/list.jl: set the clist to `browse' mode, and
23+ keep it frozen while modifying it
24+
25+ * nokogiri-widgets/list.jl (edit-item): save the original value
26+ of the selection, since it may get changed asynchronously
27+
128 2000-07-06 John Harper <john@dcs.warwick.ac.uk>
229
330 * nokogiri-widget.jl (list-index): made this function terminate
--- a/lisp/sawfish/ui/Makefile.in
+++ b/lisp/sawfish/ui/Makefile.in
@@ -47,6 +47,8 @@ SRCS := nokogiri-apply.jl \
4747
4848 W_SRCS := nokogiri-widgets/alist.jl \
4949 nokogiri-widgets/color.jl \
50+ nokogiri-widgets/command.jl \
51+ nokogiri-widgets/event.jl \
5052 nokogiri-widgets/file.jl \
5153 nokogiri-widgets/font.jl \
5254 nokogiri-widgets/frame-style.jl \
--- a/lisp/sawfish/ui/WIDGETS
+++ b/lisp/sawfish/ui/WIDGETS
@@ -4,25 +4,31 @@ These are the currently implemented widget types:
44 (symbol [OPTIONS...])
55 (choice OPTIONS...)
66 (string)
7- (number [MIN MAX])
7+ (number [MIN [MAX]])
88 (boolean [LABEL])
99
10- (color)
11- (font)
12- (file)
13- (program) ;currently the same as `file'
14-
15- (optional WIDGET)
16- (or WIDGETS...)
17-
10+ (or WIDGETS...) ;WIDGET value or `nil'
11+ (optional WIDGET) ;same as `(or WIDGET)' ?
1812 (and WIDGETS...) ;creates a list of values
1913 (v-and WIDGETS...) ;puts widgets in a vbox
2014 (h-and WIDGETS...) ;puts widgets in a hbox
2115
22- (pair CAR-WIDGET CDR-WIDGET)
16+ (quoted WIDGET) ;value is `(quote WIDGET-VALUE)'
17+ (labelled LABEL WIDGET)
18+
19+ (pair CAR-WIDGET CDR-WIDGET [IN-VBOX] [REVERSE-LAYOUT])
2320 (list WIDGET [TITLE])
2421 (alist KEY-WIDGET VALUE_WIDGET)
2522 (alist (KEY-WIDGET "KEY-TITLE") (VALUE-WIDGET "VALUE-TITLE"))
2623
27- (labelled LABEL WIDGET)
24+ (color)
25+ (font)
26+ (file)
27+ (program) ;currently the same as `file'
28+ (command)
29+ (event)
30+ (keymap)
31+ (icon) ;value is name of image file
32+ (workspace-geometry)
33+ (frame-style)
2834
--- a/man/news.texi
+++ b/man/news.texi
@@ -7,6 +7,62 @@ they occurred between. For more detailed information see the
77 @file{ChangeLog} files in the Sawfish source tree.
88
99
10+@unnumberedsec 0.30
11+
12+@itemize @bullet
13+
14+@item New commands @code{activate-viewport-column},
15+@code{activate-viewport-row}
16+
17+@item New commands @code{raise-window-and-transients},
18+@code{lower-window-and-transients} and
19+@code{raise-lower-window-and-transients},
20+@code{raise-transients-and-pass-through-click}.
21+
22+As the normal window stacking commands, but restacks the
23+``transient-group'' of the window. This includes the window itself and
24+any transients it has, and any windows that it itself is a transient
25+of.
26+
27+These commands are used in the default keymaps
28+
29+@item Functions that deal with transient windows now understand the de
30+facto standard of setting the @code{WM_TRANSIENT_FOR} property to the
31+root window denotes that the window is a transient for the whole group
32+
33+@item New image manipulation functions: @code{image-ref},
34+@code{image-set}, @code{image-fill}, @code{image-map}. New color
35+accessor function @code{color-rgb-8}. New function
36+@code{root-window-id}
37+
38+@item Improvements to @code{sawfish-ui}: optionally use some GNOME
39+widgets, more lisp widget types, some bug fixes
40+
41+@item New command @code{command-sequence}. Allows individual bindings
42+to invoke a sequence of commands
43+
44+@item Options @code{iconify-group-mode} and @code{uniconify-group-mode}
45+replace @code{iconify-whole-group} and @code{uniconify-whole-group}.
46+New commands @code{iconify-transient-group}, and
47+@code{uniconify-transient-group}
48+
49+@item Added @code{:type*} key to @code{defcustom}, like @code{:type},
50+but value is left unquoted
51+
52+@item Translation updates: pl (Daniel Koc), ru (Valek Filippov), uk
53
54+
55+@item Fixed handling of @code{WM_NORMAL_HINTS} (was using base-size
56+instead of min-size in places)
57+
58+@item Fixed further locale / FontSet bug (Tomohiro KUBOTA)
59+
60+@item @code{window-history} module won't resize a window to a size that
61+violates its size constraints
62+
63+@end itemize
64+
65+
1066 @unnumberedsec 0.29
1167
1268 @itemize @bullet
--- a/nokogiri/ChangeLog
+++ b/nokogiri/ChangeLog
@@ -1,3 +1,30 @@
1+2000-07-09 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * version 0.30
4+
5+ * nokogiri-widget-dialog.jl: put the title above the widget,
6+ not beside it
7+
8+ * nokogiri-widget.jl: new widget type `quoted'
9+
10+2000-07-08 John Harper <john@dcs.warwick.ac.uk>
11+
12+ * nokogiri-widgets/pair.jl (make-pair-item): added optional arg
13+ REVERSED, when non-nil, the layout order of the widgets is
14+ swapped
15+
16+ * nokogiri-widgets/event.jl, nokogiri-widgets/command.jl:
17+ factored these out of the `keymap' widget, since they may be of
18+ use individually
19+
20+2000-07-07 John Harper <john@dcs.warwick.ac.uk>
21+
22+ * nokogiri-widgets/list.jl: set the clist to `browse' mode, and
23+ keep it frozen while modifying it
24+
25+ * nokogiri-widgets/list.jl (edit-item): save the original value
26+ of the selection, since it may get changed asynchronously
27+
128 2000-07-06 John Harper <john@dcs.warwick.ac.uk>
229
330 * nokogiri-widget.jl (list-index): made this function terminate
--- a/nokogiri/Makefile.in
+++ b/nokogiri/Makefile.in
@@ -47,6 +47,8 @@ SRCS := nokogiri-apply.jl \
4747
4848 W_SRCS := nokogiri-widgets/alist.jl \
4949 nokogiri-widgets/color.jl \
50+ nokogiri-widgets/command.jl \
51+ nokogiri-widgets/event.jl \
5052 nokogiri-widgets/file.jl \
5153 nokogiri-widgets/font.jl \
5254 nokogiri-widgets/frame-style.jl \
--- a/nokogiri/WIDGETS
+++ b/nokogiri/WIDGETS
@@ -4,25 +4,31 @@ These are the currently implemented widget types:
44 (symbol [OPTIONS...])
55 (choice OPTIONS...)
66 (string)
7- (number [MIN MAX])
7+ (number [MIN [MAX]])
88 (boolean [LABEL])
99
10- (color)
11- (font)
12- (file)
13- (program) ;currently the same as `file'
14-
15- (optional WIDGET)
16- (or WIDGETS...)
17-
10+ (or WIDGETS...) ;WIDGET value or `nil'
11+ (optional WIDGET) ;same as `(or WIDGET)' ?
1812 (and WIDGETS...) ;creates a list of values
1913 (v-and WIDGETS...) ;puts widgets in a vbox
2014 (h-and WIDGETS...) ;puts widgets in a hbox
2115
22- (pair CAR-WIDGET CDR-WIDGET)
16+ (quoted WIDGET) ;value is `(quote WIDGET-VALUE)'
17+ (labelled LABEL WIDGET)
18+
19+ (pair CAR-WIDGET CDR-WIDGET [IN-VBOX] [REVERSE-LAYOUT])
2320 (list WIDGET [TITLE])
2421 (alist KEY-WIDGET VALUE_WIDGET)
2522 (alist (KEY-WIDGET "KEY-TITLE") (VALUE-WIDGET "VALUE-TITLE"))
2623
27- (labelled LABEL WIDGET)
24+ (color)
25+ (font)
26+ (file)
27+ (program) ;currently the same as `file'
28+ (command)
29+ (event)
30+ (keymap)
31+ (icon) ;value is name of image file
32+ (workspace-geometry)
33+ (frame-style)
2834
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
1+2000-07-09 John Harper <john@dcs.warwick.ac.uk>
2+
3+ * versiom 0.30
4+
5+2000-07-07 John Harper <john@dcs.warwick.ac.uk>
6+
7+ * images.c (get_pixel): don't box the integer twice
8+ (set_pixel): if no alpha in pixel, but image has alpha channel,
9+ assume full opacity
10+
111 2000-07-06 John Harper <john@dcs.warwick.ac.uk>
212
313 * main.c (main): unless XSupportsLocale (), don't use FontSets