OSDN Git Service

update version strings in generated files
[howm/howm.git] / howm-lang-fr.el
1 ;;; howm-lang-fr.el --- Wiki-like note-taking tool
2 ;;; Copyright (C) 2005-2020
3 ;;;   HIRAOKA Kazuyuki <khi@users.osdn.me>
4 ;;;
5 ;;; French translation by french-speaking howm users
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-fr '("Dim" "Lun" "Mar" "Mer" "Jeu" "Ven" "Sam"))
26
27 (defvar howm-menu-command-table-fr
28   `(
29     ("[Se souvenir]" howm-remember previous)
30     ("[Nouveau]" (lambda () (howm-create ,howm-menu-action-arg)))
31     ("[Ajouter]" (lambda () (howm-create-here ,howm-menu-action-arg)))
32     ("[Dup]" howm-dup)
33     ("[Màj]" howm-initialize-buffer previous)
34     ("[Regexp]" howm-list-grep)
35     ("[Chaine]" howm-list-grep-fixed)
36     ;;         ("[roma]" howm-list-migemo)
37     ("[Aujourd'hui]" howm-find-today)
38     ("[Hier]" howm-find-yesterday)
39     ("[Tout]" howm-list-all)
40     ("[Récent]" howm-list-recent)
41     ("[Autour]" howm-list-around)
42     ("[Programme]" howm-list-schedule)
43     ("[Occurences]" (lambda () (call-interactively 'howm-occur)) previous)
44     ("[Fichiers tampons]" (lambda () (howm-list-buffers ,howm-menu-action-arg)))
45     ("[Repères]" howm-list-mark-ring previous)
46     ("[Historique]" howm-history)
47     ("[<Titre]" howm-keyword-to-kill-ring)
48     ("[<Nom]" (lambda () (howm-keyword-to-kill-ring t)))
49     ("[Clé>]" howm-insert-keyword previous)
50     ("[Date>]" howm-insert-date previous)
51     ("[DateTemps>]" howm-insert-dtime previous)
52     ("[A faire]" howm-list-todo)
53     ("[Tout tuer]" howm-kill-all)
54     ("[Forcer tout tuer]" (lambda () (interactive) (howm-kill-all t)))
55     ("[Editer le menu]" howm-menu-edit current)
56     ("[Màj du Menu]" howm-menu-refresh current)
57     ("[Préferences]" (lambda () (customize-group 'howm)))
58     ("[Parcours aléatoire]" howm-random-walk previous)
59     ))
60
61 (provide 'howm-lang-fr)
62
63 ;;; howm-lang-fr.el ends here