OSDN Git Service

copy old 'master' branch (c3a8f31) just after test160101
[howm/howm.git] / howm-lang-ja.el
1 ;;; howm-lang-ja.el --- Wiki-like note-taking tool
2 ;;; -*- Coding: iso-2022-7bit -*-
3 ;;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2015, 2016
4 ;;;   HIRAOKA Kazuyuki <khi@users.sourceforge.jp>
5 ;;; $Id: howm-lang-ja.el,v 1.11 2011-12-31 15:07:29 hira Exp $
6 ;;;
7 ;;; This program is free software; you can redistribute it and/or modify
8 ;;; it under the terms of the GNU General Public License as published by
9 ;;; the Free Software Foundation; either version 1, or (at your option)
10 ;;; any later version.
11 ;;;
12 ;;; This program is distributed in the hope that it will be useful,
13 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 ;;; GNU General Public License for more details.
16 ;;;
17 ;;; The GNU General Public License is available by anonymouse ftp from
18 ;;; prep.ai.mit.edu in pub/gnu/COPYING.  Alternately, you can write to
19 ;;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
20 ;;; USA.
21 ;;--------------------------------------------------------------------
22
23 (require 'howm-common)
24
25 (defvar howm-day-of-week-ja '("\e$BF|\e(B" "\e$B7n\e(B" "\e$B2P\e(B" "\e$B?e\e(B" "\e$BLZ\e(B" "\e$B6b\e(B" "\e$BEZ\e(B"))
26
27 (defvar howm-menu-command-table-ja
28   `(
29     ("[\e$BB.5-\e(B]" howm-remember previous)
30     ("[\e$B?75,\e(B]" (lambda () (howm-create ,howm-menu-action-arg)))
31     ("[\e$BDI2C\e(B]" (lambda () (howm-create-here ,howm-menu-action-arg)))
32     ("[\e$BJ#@=\e(B]" howm-dup)
33     ("[\e$B99?7\e(B]" howm-initialize-buffer previous)
34     ("[\e$B@55,\e(B]" howm-list-grep)
35     ("[\e$B8GDj\e(B]" howm-list-grep-fixed)
36     ("[roma]" howm-list-migemo)
37     ("[\e$B:#F|\e(B]" howm-find-today)
38     ("[\e$B:rF|\e(B]" howm-find-yesterday)
39     ("[\e$B0lMw\e(B]" howm-list-all)
40     ("[\e$B:G6a\e(B]" howm-list-recent)
41     ("[\e$BA08e\e(B]" howm-list-around)
42     ("[\e$BM=Dj\e(B]" howm-list-schedule)
43     ("[\e$B%PFb\e(B]" (lambda () (call-interactively 'howm-occur)) previous)
44     ("[\e$BA4%P\e(B]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
45     ("[mark]" howm-list-mark-ring previous)
46     ("[\e$BMzNr\e(B]" howm-history)
47     ("[\e$BBj",\e(B]" howm-keyword-to-kill-ring)
48     ("[\e$BL>",\e(B]" (lambda () (howm-keyword-to-kill-ring t)))
49     ("[\e$B80"-\e(B]" howm-insert-keyword previous)
50     ("[\e$BF|"-\e(B]" howm-insert-date previous)
51     ("[\e$B;~"-\e(B]" howm-insert-dtime previous)
52     ("[Todo]" howm-list-todo)
53     ("[\e$BA4>C\e(B]" howm-kill-all)
54     ("[\e$B6/@)A4>C\e(B]" (lambda () (interactive) (howm-kill-all t)))
55     ("[menu \e$BJT=8\e(B]" howm-menu-edit current)
56     ("[menu \e$B99?7\e(B]" howm-menu-refresh current)
57     ("[\e$B@_Dj\e(B]" (lambda () (customize-group 'howm)))
58     ("[\e$B?lJb\e(B]" howm-random-walk previous)
59     ))
60
61 (provide 'howm-lang-ja)
62
63 ;;; howm-lang-ja.el ends here