OSDN Git Service

update version strings in generated files
[howm/howm.git] / howm-lang-ja.el
1 ;;; howm-lang-ja.el --- Wiki-like note-taking tool
2 ;;; -*- Coding: utf-8 -*-
3 ;;; Copyright (C) 2005-2022
4 ;;;   HIRAOKA Kazuyuki <khi@users.osdn.me>
5 ;;;
6 ;;; This program is free software; you can redistribute it and/or modify
7 ;;; it under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 1, or (at your option)
9 ;;; any later version.
10 ;;;
11 ;;; This program is distributed in the hope that it will be useful,
12 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; The GNU General Public License is available by anonymouse ftp from
17 ;;; prep.ai.mit.edu in pub/gnu/COPYING.  Alternately, you can write to
18 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
19 ;;; USA.
20 ;;--------------------------------------------------------------------
21
22 (require 'howm-common)
23
24 (defvar howm-day-of-week-ja '("日" "月" "火" "水" "木" "金" "土"))
25
26 (defvar howm-menu-command-table-ja
27   `(
28     ("[速記]" howm-remember previous)
29     ("[新規]" (lambda () (howm-create ,howm-menu-action-arg)))
30     ("[追加]" (lambda () (howm-create-here ,howm-menu-action-arg)))
31     ("[複製]" howm-dup)
32     ("[更新]" howm-initialize-buffer previous)
33     ("[正規]" howm-list-grep)
34     ("[固定]" howm-list-grep-fixed)
35     ("[roma]" howm-list-migemo)
36     ("[今日]" howm-find-today)
37     ("[昨日]" howm-find-yesterday)
38     ("[一覧]" howm-list-all)
39     ("[最近]" howm-list-recent)
40     ("[前後]" howm-list-around)
41     ("[予定]" howm-list-schedule)
42     ("[バ内]" (lambda () (call-interactively 'howm-occur)) previous)
43     ("[全バ]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
44     ("[mark]" howm-list-mark-ring previous)
45     ("[履歴]" howm-history)
46     ("[題↑]" howm-keyword-to-kill-ring)
47     ("[名↑]" (lambda () (howm-keyword-to-kill-ring t)))
48     ("[鍵↓]" howm-insert-keyword previous)
49     ("[日↓]" howm-insert-date previous)
50     ("[時↓]" howm-insert-dtime previous)
51     ("[Todo]" howm-list-todo)
52     ("[全消]" howm-kill-all)
53     ("[強制全消]" (lambda () (interactive) (howm-kill-all t)))
54     ("[menu 編集]" howm-menu-edit current)
55     ("[menu 更新]" howm-menu-refresh current)
56     ("[設定]" (lambda () (customize-group 'howm)))
57     ("[酔歩]" howm-random-walk previous)
58     ))
59
60 (provide 'howm-lang-ja)
61
62 ;;; howm-lang-ja.el ends here