Changeset 7017

Show
Ignore:
Timestamp:
02/21/08 13:39:50 (5 years ago)
Author:
drry
Message:

platform/tdiary/misc/section_footer2/yahoo.yaml
platform/tdiary/misc/section_footer2/hatena.yaml
platform/tdiary/misc/section_footer2/ldc.yaml
platform/tdiary/misc/section_footer2/fc2.yaml
platform/tdiary/misc/section_footer2/buzzurl.yaml
platform/tdiary/plugin/ja/section_footer2.rb
platform/tdiary/plugin/en/section_footer2.rb
platform/tdiary/plugin/section_footer2.rb:

Location:
platform/tdiary
Files:
6 modified
2 copied

Legend:

Unmodified
Added
Removed
  • platform/tdiary/misc/section_footer2/buzzurl.yaml

    r5069 r7017  
    11url: http://buzzurl.jp/entry/ 
    22src: http://buzzurl.jp/static/image/api/icon/add_icon_mini_10.gif 
    3 title: このエントリを含む Buzzurl 
     3title: 
     4  ja: このエントリを含む Buzzurl 
     5  =:  this entry on Buzzurl 
    46counter: http://buzzurl.jp/api/counter/ 
  • platform/tdiary/misc/section_footer2/fc2.yaml

    r5898 r7017  
    11url: http://bookmark.fc2.com/search/detail?url= 
    22src: http://bookmark.fc2.com/img/add-16.gif 
    3 title: このエントリを含む FC2ブックマーク 
     3title: 
     4  ja: このエントリを含む FC2ブックマーク 
     5  =: this entry on FC2 Bookmark 
    46counter: http://bookmark.fc2.com/image/users/ 
  • platform/tdiary/misc/section_footer2/hatena.yaml

    r5069 r7017  
    11url: http://b.hatena.ne.jp/entry/ 
    22src: http://d.hatena.ne.jp/images/b_entry.gif 
    3 title: このエントリを含むはてなブックマーク 
     3title: 
     4  ja: このエントリを含むはてなブックマーク 
     5  =: this entry on Hatena Bookmark 
    46counter: http://b.hatena.ne.jp/entry/image/normal/ 
  • platform/tdiary/misc/section_footer2/ldc.yaml

    r5069 r7017  
    11url: http://clip.livedoor.com/page/ 
    22src: http://parts.blog.livedoor.jp/img/cmn/clip_16_16_w.gif 
    3 title: このエントリを含む livedoor クリップ 
     3title: 
     4  ja: このエントリを含む livedoor クリップ 
     5  =: this entry on livedoor clip 
    46counter: http://image.clip.livedoor.com/counter/ 
  • platform/tdiary/misc/section_footer2/yahoo.yaml

    r5574 r7017  
    11url: http://bookmarks.yahoo.co.jp/url?url= 
    22src: http://i.yimg.jp/images/sicons/ybm16.gif 
    3 title: このエントリを含む Yahoo!ブックマーク 
     3title: 
     4  ja: このエントリを含む Yahoo!ブックマーク 
     5  =: this entry on Yahoo! JAPAN Bookmarks 
    46counter: http://num.bookmarks.yahoo.co.jp/image/small/ 
  • platform/tdiary/plugin/en/section_footer2.rb

    r7016 r7017  
    1 # section_footer.rb: English resource 
    2 @section_footer_delicious_label = "del.icio.us history for this entry" 
    3 @section_footer_hatenabm_label = "this entry on Hatena Bookmark" 
    4 @section_footer_ldclip_label = "this entry on livedoor clip" 
    5 @section_footer_buzzurl_label = "this entry on Buzzurl" 
    6 @section_footer_yahoobm_label = "this entry on Yahoo! JAPAN Bookmark" 
     1# section_footer2.rb: English resource 
     2@section_footer2_delicious_label = "del.icio.us history for this entry" 
  • platform/tdiary/plugin/ja/section_footer2.rb

    r7016 r7017  
    1 # section_footer.rb: Japanese resource 
    2 @section_footer_delicious_label = "このエントリの del.icio.us history" 
    3 @section_footer_hatenabm_label = "このエントリを含むはてなブックマーク" 
    4 @section_footer_ldclip_label = "このエントリを含む livedoor クリップ" 
    5 @section_footer_buzzurl_label = "このエントリを含む Buzzurl" 
    6 @section_footer_yahoobm_label = "このエントリを含む Yahoo!ブックマーク" 
     1# section_footer2.rb: Japanese resource 
     2@section_footer2_delicious_label = "このエントリの del.icio.us history" 
  • platform/tdiary/plugin/section_footer2.rb

    r6006 r7017  
    123123        if count > 0 
    124124                r << ' | ' 
    125                 r << %Q{<a href="http://del.icio.us/url/#{url_md5}"><img src="http://images.del.icio.us/static/img/delicious.small.gif" style="border: none;vertical-align: middle;" alt="このエントリの del.icio.us history" title="このエントリの del.icio.us history"> #{count} user} 
     125                r << %Q{<a href="http://del.icio.us/url/#{url_md5}"><img src="http://images.del.icio.us/static/img/delicious.small.gif" style="border: none;vertical-align: middle;" alt="#{@section_footer2_delicious_label}" title="#{@section_footer2_delicious_label}"> #{count} user} 
    126126                r << 's' if count > 1 
    127127                r << '</a>' 
     
    136136        r = "" 
    137137        unless config.nil? then 
     138                title = config["title"][@conf.lang] 
    138139                r << ' | ' 
    139140                r << %Q|<a href="#{config["url"]}#{permalink(date, index)}">| 
    140141                r << %Q|<img src="#{config["src"]}" style="border: none;vertical-align: middle;" | 
    141                 r << %Q|title="#{config["title"]}" | 
    142                 r << %Q|alt="#{config["title"]}" />| 
     142                r << %Q|title="#{title}" | 
     143                r << %Q|alt="#{title}" />| 
    143144                unless config["counter"].nil? then 
    144145                        r << %Q| <img src="#{config["counter"]}#{permalink(date, index)}" style="border: none;vertical-align: middle;" />|