1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# English resources of 01sp.rb $Revision: 1.2 $
=begin
= Select-plugin plugin
== Abstract
Selects which plugin to be actually used.
== Usage
Put this file into the plugin/ directory.
Next, move the plugins you want to be optional into another directory.
In the example below, these plugins are assumed to be in
plugin/selectable directory.
Finally, edit the tdiary.conf file in the same directory as tdiary.rb
and add the following line:
@options['sp.path'] = 'misc/plugin'
to indicate the directory you have put the optional plugins. It can be
an absolute path.
You can use this plugin in a secure diary.
== Options
:@options['sp.path']
Directory name where the optional plugins are, relative from the
directory where tdiary.rb is or absolute.
:@options['sp.usenew']
Define true if you want to the users to try a newly installed plugin.
Newly installed plugins are detected next time when the user configures
this plugin.
== Copyright notice
Copyright (C) 2003 zunda <zunda at freeshell.org>
Permission is granted for use, copying, modification, distribution, and
distribution of modified versions of this work under the terms of GPL
version 2 or later.
=end
@sp_label = 'Plugin selection'
@sp_label_description = '<p>Selects which plugins you want to use.</p>'
@sp_label_please_select = '<p>Please check the plugins you want to use. Each plugin filename is linked to its document. Please create or improve the document!</p>'
@sp_label_new = '<h4>New! Give it a try.</h4>'
@sp_label_used = '<h4>Being used</h4>'
@sp_label_notused = '<h4>Currently not used</h4>'
@sp_label_noplugin = '<p>There is no optional plugins.</p>'
|