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 49 50 51 52 53 54
|
#
# English resource of amazon plugin $Revision: 1.5 $
#
#
# isbn_image_left: show the item image of specified ISBN by class="left".
# Parameter:
# asin: ASIN or ISBN
# comment: comment (optional)
#
# isbn_image_right:
# Parameter:
# asin: ASIN or ISBN
# comment: comment (optional)
#
# isbn_image: show the item image of specified ISBN by class="right".
# asin: ASIN or ISBN
# comment: comment (optional)
#
# isbn: light version. it dose not access to amazon.
# asin: ASIN or ISBN
# comment: comment
#
# options in tdiary.conf:
# @options['amazon.aid']: Your Amazon Assosiate ID. This option can be
# changed in preferences page.
# @options['amazon.hideconf']: When you want to prohibit changing amazon.aid
# via preferences page, set false.
# @options['amazon.proxy']: HTTP proxy in "host:post" style.
# @options['amazon.imgsize']: specify image size (0:laege, 1:regular, 2:small)
# @options['amazon.hidename']: hide book name when class="amazon", set true.
# @options['amazon.nodefault']: If you dosen't want to show default image
# when the book image not found, set true.
#
@amazon_url = 'http://www.amazon.com/exec/obidos/ASIN'
@amazon_item_name = /^Amazon\.com: (.*)$/
@amazon_item_image = %r|(<img src="(http://images\.amazon\.com/images/P/(.*MZZZZZZZ_.jpg))".*?>)|i
@amazon_label_conf = 'Amazon'
@amazon_label_aid = 'Amazon Assosiate ID'
@amazon_label_imgsize = 'Image size of the book'
@amazon_label_large = 'Large'
@amazon_label_regular = 'Regular'
@amazon_label_small = 'Small'
@amazon_label_title = 'When using isbn_image plugin'
@amazon_label_hide = 'Hide book title'
@amazon_label_show = 'Show book title'
@amazon_label_notfound = 'If book image dose not found'
@amazon_label_usetitle = 'Show book title'
@amazon_label_usedefault = 'Use default image'
@amazon_label_clearcache = 'Clear Cache'
@amazon_label_clearcache_desc = 'Delete local cache file about book images'
@amazon_label_over18 = 'Images of adult materials'
@amazon_label_over18_desc = 'Fetch images of adult materials.'
|