Japanese translation of message catalog for Sawfish Window-Manager
Revision | 049053e6c326a694c0a7874dff94018cbc7709b0 (tree) |
---|---|
Zeit | 2010-05-11 14:34:54 |
Autor | Teika kazura <teika@lava...> |
Commiter | Teika kazura |
Docs.
@@ -3,10 +3,8 @@ | ||
3 | 3 | -- [modified patch from Gentoo] |
4 | 4 | |
5 | 5 | * lisp/sawfish/wm/ext/apps-menu.jl: Allow whitespace and comments |
6 | - at the beginning of .desktop files | |
7 | - and skip the file, if the first valid | |
8 | - line is not [Desktop Entry]. | |
9 | - -- [Matthew Love/Teika Kazura] | |
6 | + at the beginning of .desktop files. | |
7 | + -- [Matthew Love, Teika Kazura] | |
10 | 8 | |
11 | 9 | * src/Makefile.in |
12 | 10 | * src/display.c |
@@ -49,7 +47,8 @@ | ||
49 | 47 | * lisp/sawfish/wm/state/maximize.jl: make maximize-/-fullscreen/fullxinerama |
50 | 48 | honor maximize-raises [Nolan Leake] |
51 | 49 | |
52 | - * lisp/sawfish/wm/ext/apps-menu.jl: more robustness | |
50 | + * lisp/sawfish/wm/ext/apps-menu.jl: Anti-brekage for "R". | |
51 | + Removal of phony constants. Some code refactoring. [Teika Kazura] | |
53 | 52 | |
54 | 53 | 2010-03-13 Christopher Bratusek <zanghar@freenet.de> |
55 | 54 | * lisp/sawfish/wm/util/display-wininfo.jl: missing require |
@@ -6,7 +6,7 @@ | ||
6 | 6 | |
7 | 7 | @enumerate |
8 | 8 | |
9 | -@item How can I get informations on Sawfish? | |
9 | +@item How can I get information on Sawfish? | |
10 | 10 | |
11 | 11 | @itemize |
12 | 12 | @item Homepage: @url{http://sawfish.wikia.com/}. |
@@ -24,13 +24,13 @@ window, if that is too small [Fuchur] | ||
24 | 24 | @code{maximize-window-fullxinerama}, too, not just in maximize-window |
25 | 25 | [Nolan Leake] |
26 | 26 | |
27 | -@item More robustness in applications menu [Teika Kazura] [Matthew Love] | |
27 | +@item More robustness in applications menu [Teika Kazura, Matthew Love] | |
28 | 28 | |
29 | 29 | Before it broke for 'R' (statistics software), and whitespace handling |
30 | -didn't follow the specification. Phony constants are removed, too. | |
30 | +didn't follow the specification. | |
31 | 31 | |
32 | -Allow whitespace and comments at the beginning of .desktop files and skip | |
33 | -the file, if the first valid line is not [Desktop Entry]. | |
32 | +Some *.desktop files are not ignored any more either, i.e., leading | |
33 | +empty lines and comments are allowed. | |
34 | 34 | @end itemize |
35 | 35 | |
36 | 36 | @item New Features |
@@ -95,7 +95,8 @@ lisp files, but now it's guaranteed for all files. | ||
95 | 95 | |
96 | 96 | @item ``Windows'' chapter is partly revised. Function @code{display-window} |
97 | 97 | is documented. Difference between @code{window-wants-input-p} and |
98 | -@code{window-really-wants-input-p} is described. | |
98 | +@code{window-really-wants-input-p} is described. Short description on | |
99 | +the root window. | |
99 | 100 | |
100 | 101 | @item In past few versions we made more changes which were not described in |
101 | 102 | the news, including clarification in viewport, workspace and event, |
@@ -672,6 +672,11 @@ Returns @code{t} if @var{arg} is a member of the window type, and has a | ||
672 | 672 | client window associated with it. |
673 | 673 | @end defun |
674 | 674 | |
675 | +Since the root window is not a managed client window, it is not | |
676 | +represented by a window object. Sometimes functions' arguments and | |
677 | +return value treat the symbol @code{root} as the root window. Window | |
678 | +hooks are so. But sometimes not. | |
679 | + | |
675 | 680 | @menu |
676 | 681 | Basics: |
677 | 682 | * Window Attributes:: |
@@ -6684,14 +6689,17 @@ the hooks mechanism. For more details on the hooks mechanism see | ||
6684 | 6689 | |
6685 | 6690 | As well as using the standard @code{call-hook} function, sawfish also |
6686 | 6691 | provides the @code{call-window-hook} function. This is used to invoke |
6687 | -hooks which refer to a single window. If the hook has a local value | |
6688 | -defined in the window's property list then this value is used, before | |
6689 | -the default value defined by the actual variable. | |
6692 | +hooks which refer to a single window. Such hook is called ``window | |
6693 | +hook''. If a window hook has a local value defined in the window's | |
6694 | +property list then this value is used, before the default value | |
6695 | +defined by the actual variable. | |
6690 | 6696 | |
6691 | 6697 | @defun call-window-hook hook window &optional args hook-type |
6692 | 6698 | Call @var{hook} for @var{window} with further arguments @var{args}. See |
6693 | 6699 | @code{call-hook} for a description of @var{hook-type}. Each function in |
6694 | 6700 | the hook is called with arguments @code{(@var{window} . @var{args})}. |
6701 | + | |
6702 | +Root window is represented by the symbol @code{root}. | |
6695 | 6703 | @end defun |
6696 | 6704 | |
6697 | 6705 | The available hooks are listed below. |