wok view emacs-pkg-text-translator/stuff/text-translator-load.el @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents
children
line source
1 ;;; text-translator-load.el --- Text Translator
3 ;; Copyright (C) 2007-2009 khiker
5 ;; Author: khiker <khiker.mail+elisp@gmail.com>
6 ;; plus <MLB33828@nifty.com>
8 ;; This file is free software; you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation; either version 3, or (at your option)
11 ;; any later version.
13 ;; This file is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs; see the file COPYING. If not, write to
20 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 ;; Boston, MA 02110-1301, USA.
23 ;;; Commentary:
25 ;; autoload for text-translator
27 ;;; Code:
29 (autoload 'text-translator "text-translator" nil t)
30 (autoload 'text-translator-translate-last-string "text-translator" nil t)
31 (autoload 'text-translator-translate-by-auto-selection "text-translator" nil t)
32 (autoload 'text-translator-toggle-leave-string "text-translator" nil t)
33 (autoload 'text-translator-translate-recent-type "text-translator" nil t)
34 (autoload 'text-translator-translate-default "text-translator" nil t)
36 (provide 'text-translator-load)
37 ;;; text-translator-load.el ends here
39 ;; Local Variables:
40 ;; Coding: iso-2022-7bit
41 ;; End: