rabbit 2.1.9 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/data/locale/ja/LC_MESSAGES/rabbit.mo +0 -0
  3. data/doc/_config.yml +4 -4
  4. data/doc/en/faq.rd +8 -8
  5. data/doc/en/news.rd +105 -1
  6. data/doc/ja/news.rd +104 -1
  7. data/lib/rabbit/canvas.rb +2 -1
  8. data/lib/rabbit/command/rabbit.rb +6 -3
  9. data/lib/rabbit/element/index-slide.rb +2 -2
  10. data/lib/rabbit/element/text-container-element.rb +30 -1
  11. data/lib/rabbit/element/text-renderer.rb +12 -1
  12. data/lib/rabbit/element/text.rb +7 -0
  13. data/lib/rabbit/error.rb +4 -3
  14. data/lib/rabbit/frame.rb +8 -22
  15. data/lib/rabbit/front.rb +8 -8
  16. data/lib/rabbit/gem-pusher.rb +66 -0
  17. data/lib/rabbit/gtk.rb +4 -0
  18. data/lib/rabbit/image-data-loader.rb +3 -3
  19. data/lib/rabbit/image/dia.rb +11 -6
  20. data/lib/rabbit/image/eps.rb +13 -11
  21. data/lib/rabbit/image/gimp.rb +1 -1
  22. data/lib/rabbit/image/pdf.rb +6 -10
  23. data/lib/rabbit/image/svg.rb +5 -1
  24. data/lib/rabbit/parser/markdown.rb +1 -0
  25. data/lib/rabbit/parser/markdown/converter.rb +43 -2
  26. data/lib/rabbit/password-reader.rb +34 -0
  27. data/lib/rabbit/progress.rb +22 -10
  28. data/lib/rabbit/renderer.rb +1 -1
  29. data/lib/rabbit/renderer/base.rb +7 -7
  30. data/lib/rabbit/renderer/color.rb +8 -0
  31. data/lib/rabbit/renderer/display/drawing-area-base.rb +1 -0
  32. data/lib/rabbit/renderer/display/drawing-area-primitive.rb +14 -2
  33. data/lib/rabbit/renderer/display/magnifier.rb +6 -4
  34. data/lib/rabbit/renderer/display/scroll-handler.rb +2 -2
  35. data/lib/rabbit/renderer/display/spotlight.rb +1 -1
  36. data/lib/rabbit/renderer/engine/cairo.rb +16 -1
  37. data/lib/rabbit/renderer/offscreen.rb +120 -0
  38. data/lib/rabbit/search-window.rb +6 -6
  39. data/lib/rabbit/searcher.rb +4 -84
  40. data/lib/rabbit/slideshare.rb +7 -11
  41. data/lib/rabbit/source-generator/markdown.rb +4 -4
  42. data/lib/rabbit/task/slide.rb +4 -2
  43. data/lib/rabbit/task/theme.rb +6 -3
  44. data/lib/rabbit/theme/slide-logo/slide-logo.rb +37 -27
  45. data/lib/rabbit/theme/syntax-highlighting/syntax-highlighting.rb +1 -7
  46. data/lib/rabbit/theme/title-on-image-toolkit/title-on-image-toolkit.rb +6 -0
  47. data/lib/rabbit/utils.rb +0 -5
  48. data/lib/rabbit/version.rb +2 -2
  49. data/po/en/rabbit.edit.po +151 -143
  50. data/po/en/rabbit.po +7 -1
  51. data/po/fr/rabbit.edit.po +151 -143
  52. data/po/fr/rabbit.po +7 -1
  53. data/po/ja/rabbit.edit.po +155 -147
  54. data/po/ja/rabbit.po +11 -5
  55. data/rabbit.gemspec +2 -1
  56. data/sample/rabbit.md +10 -0
  57. data/test/parser/test-markdown.rb +47 -1
  58. data/test/source-generator/test-markdown.rb +2 -2
  59. metadata +21 -9
  60. data/lib/rabbit/renderer/pixmap.rb +0 -1
  61. data/lib/rabbit/renderer/pixmap/base.rb +0 -127
  62. data/lib/rabbit/renderer/pixmap/cairo.rb +0 -15
  63. data/lib/rabbit/renderer/pixmap/gl.rb +0 -46
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -22,6 +22,7 @@ require "faraday"
22
22
 
23
23
  require "rabbit/gettext"
24
24
  require "rabbit/command/rabbit"
25
+ require "rabbit/password-reader"
25
26
 
26
27
  module Rabbit
27
28
  module Task
@@ -138,18 +139,13 @@ module Rabbit
138
139
  end
139
140
 
140
141
  def password
141
- @password ||= read_password(_("Enter password on SlideShare"))
142
+ @password ||= read_password
142
143
  end
143
144
 
144
- def read_password(prompt)
145
- print("%s [%s]: " % [prompt, @user])
146
- system("/bin/stty -echo") if $stdin.tty?
147
- $stdin.gets.chomp
148
- ensure
149
- if $stdin.tty?
150
- system("/bin/stty echo")
151
- puts
152
- end
145
+ def read_password
146
+ prompt = _("Enter password on SlideShare [%{user}]: ") % {:user => @user}
147
+ reader = PasswordReader.new(prompt)
148
+ reader.read
153
149
  end
154
150
 
155
151
  def common_payload
@@ -32,10 +32,10 @@ module Rabbit
32
32
  end
33
33
 
34
34
  def definition_list_item(item, description)
35
- [
36
- item,
37
- ": #{description}",
38
- ].join("\n")
35
+ <<-DEFINITION_LIST_ITEM
36
+ #{item}
37
+ : #{description}
38
+ DEFINITION_LIST_ITEM
39
39
  end
40
40
 
41
41
  def unordered_list_item(item)
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2013 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -22,6 +22,7 @@ require "rabbit/command/rabbit"
22
22
  require "rabbit/slide-configuration"
23
23
  require "rabbit/readme-parser"
24
24
  require "rabbit/gem-builder"
25
+ require "rabbit/gem-pusher"
25
26
 
26
27
  module Rabbit
27
28
  module Task
@@ -175,7 +176,8 @@ module Rabbit
175
176
  def define_publish_rubygems_task
176
177
  desc(_("Publish the slide to %s" % "RubyGems.org"))
177
178
  task :rubygems => :gem do
178
- ruby("-S", "gem", "push", gem_path)
179
+ pusher = GemPusher.new(gem_path, @slide.author.rubygems_user)
180
+ pusher.push
179
181
  end
180
182
  end
181
183
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2013 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -22,6 +22,7 @@ require "rabbit/command/rabbit"
22
22
  require "rabbit/theme-configuration"
23
23
  require "rabbit/readme-parser"
24
24
  require "rabbit/gem-builder"
25
+ require "rabbit/gem-pusher"
25
26
 
26
27
  module Rabbit
27
28
  module Task
@@ -167,10 +168,12 @@ module Rabbit
167
168
 
168
169
  publish_tasks = []
169
170
  namespace :publish do
170
- if @theme.author.rubygems_user
171
+ rubygems_user = @theme.author.rubygems_user
172
+ if rubygems_user
171
173
  desc(_("Publish the theme to %s") % "RubyGems.org")
172
174
  task :rubygems => :gem do
173
- ruby("-S", "gem", "push", gem_path)
175
+ pusher = GemPusher.new(gem_path, rubygems_user)
176
+ pusher.push
174
177
  end
175
178
  publish_tasks << :rubygems
176
179
  end
@@ -8,41 +8,51 @@ end
8
8
  @slide_logo_width ||= nil
9
9
  @slide_logo_height ||= canvas.height * 0.1
10
10
 
11
- match(SlideElement) do
11
+ match(SlideElement) do |slides|
12
12
  delete_pre_draw_proc_by_name(name)
13
13
 
14
14
  break if @slide_logo_image_uninstall
15
15
 
16
- loader = ImageLoader.new(find_file(@slide_logo_image))
16
+ loaders = {}
17
17
 
18
- add_pre_draw_proc(name) do |slide, canvas, x, y, w, h, simulation|
19
- unless simulation
20
- slide_logo_width = @slide_logo_width
21
- slide_logo_height = @slide_logo_height
22
- if slide_logo_width.respond_to?(:call)
23
- slide_logo_width = slide_logo_width.call(slide, canvas)
24
- end
25
- if slide_logo_height.respond_to?(:call)
26
- slide_logo_height = slide_logo_height.call(slide, canvas)
27
- end
28
- loader.resize(slide_logo_width, slide_logo_height)
29
-
30
- case @slide_logo_position
31
- when :right
32
- logo_x = canvas.width - loader.width
33
- logo_y = 0
34
- when :left
35
- logo_x = 0
36
- logo_y = 0
37
- else
38
- if @slide_logo_position.respond_to?(:call)
39
- logo_x, logo_y = @slide_logo_position.call(slide, canvas, loader)
18
+ slides.each do |slide|
19
+ slide_logo_image = slide["logo-image"] || @slide_logo_image
20
+ if slide_logo_image.respond_to?(:call)
21
+ slide_logo_image = slide_logo_image.call(slide)
22
+ end
23
+ slide_logo_image = find_file(slide_logo_image)
24
+ loaders[slide_logo_image] ||= ImageLoader.new(slide_logo_image)
25
+ loader = loaders[slide_logo_image]
26
+
27
+ slide.add_pre_draw_proc(name) do |canvas, x, y, w, h, simulation|
28
+ unless simulation
29
+ slide_logo_width = @slide_logo_width
30
+ slide_logo_height = @slide_logo_height
31
+ if slide_logo_width.respond_to?(:call)
32
+ slide_logo_width = slide_logo_width.call(slide, canvas)
33
+ end
34
+ if slide_logo_height.respond_to?(:call)
35
+ slide_logo_height = slide_logo_height.call(slide, canvas)
36
+ end
37
+ loader.resize(slide_logo_width, slide_logo_height)
38
+
39
+ case @slide_logo_position
40
+ when :right
41
+ logo_x = canvas.width - loader.width
42
+ logo_y = 0
43
+ when :left
44
+ logo_x = 0
45
+ logo_y = 0
40
46
  else
41
- logo_x, logo_y = @slide_logo_position
47
+ if @slide_logo_position.respond_to?(:call)
48
+ logo_x, logo_y = @slide_logo_position.call(slide, canvas, loader)
49
+ else
50
+ logo_x, logo_y = @slide_logo_position
51
+ end
42
52
  end
53
+ loader.draw(canvas, logo_x, logo_y)
43
54
  end
44
- loader.draw(canvas, logo_x, logo_y)
55
+ [x, y, w, h]
45
56
  end
46
- [x, y, w, h]
47
57
  end
48
58
  end
@@ -72,7 +72,7 @@ theme_exit if @syntax_highlighting_uninstall
72
72
  # :color => "#f57900",
73
73
  },
74
74
  :include => {
75
- :color => "#73d216",
75
+ :color => "#a40000",
76
76
  },
77
77
  :pre_constant => {
78
78
  :color => "#5c35cc",
@@ -114,10 +114,6 @@ theme_exit if @syntax_highlighting_uninstall
114
114
  @syntax_highlighting_padding_top ||= screen_y(2)
115
115
  @syntax_highlighting_padding_bottom ||= screen_y(2)
116
116
 
117
- if @syntax_highlighting_keep_in_size.nil?
118
- @syntax_highlighting_keep_in_size = true
119
- end
120
-
121
117
  match("**", SyntaxHighlightingBlock) do |blocks|
122
118
  name = "syntax-highlighting-block"
123
119
 
@@ -144,8 +140,6 @@ match("**", SyntaxHighlightingBlock) do |blocks|
144
140
  blocks.margin_top = @space
145
141
  blocks.margin_bottom = @space
146
142
 
147
- blocks.keep_in_size if @syntax_highlighting_keep_in_size
148
-
149
143
  draw_frame(blocks, params)
150
144
  blocks.prop_set("foreground", @syntax_highlighting_foreground)
151
145
  end
@@ -76,6 +76,12 @@ def setup_title_on_image_slide(slide)
76
76
  move_y = @applier.screen_y(font_size.to_f / @applier.screen_size(20))
77
77
  canvas.draw_layout(shadow_layout, orig_x + move_x, base_y + move_y,
78
78
  shadow_color)
79
+
80
+ canvas.draw_layout(shadow_layout,
81
+ orig_x, base_y,
82
+ shadow_color,
83
+ :line_width => 5,
84
+ :stroke => true)
79
85
  end
80
86
  headline.draw_element(canvas,
81
87
  orig_x, base_y, orig_w, base_h,
@@ -122,11 +122,6 @@ module Rabbit
122
122
  REXML::Text.unnormalize(title).gsub(/\r|\n/, ' ')
123
123
  end
124
124
 
125
- def drawable_to_pixbuf(drawable)
126
- args = [drawable.colormap, drawable, 0, 0, *drawable.size]
127
- Gdk::Pixbuf.from_drawable(*args)
128
- end
129
-
130
125
  def process_pending_events
131
126
  if events_pending_available?
132
127
  while Gtk.events_pending?
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2012-2015 Kouhei Sutou <kou@cozmixng.org>
1
+ # Copyright (C) 2012-2016 Kouhei Sutou <kou@cozmixng.org>
2
2
  #
3
3
  # This program is free software; you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -15,5 +15,5 @@
15
15
  # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
16
 
17
17
  module Rabbit
18
- VERSION = "2.1.9"
18
+ VERSION = "2.2.0"
19
19
  end
@@ -220,7 +220,7 @@ msgstr ""
220
220
  msgid "Save as image"
221
221
  msgstr ""
222
222
 
223
- #: ../lib/rabbit/action/basic.rb:83 ../lib/rabbit/command/rabbit.rb:315
223
+ #: ../lib/rabbit/action/basic.rb:83 ../lib/rabbit/command/rabbit.rb:318
224
224
  msgid "Print"
225
225
  msgstr ""
226
226
 
@@ -388,11 +388,11 @@ msgstr ""
388
388
  msgid "Failed to write author configuration: %s: %s"
389
389
  msgstr ""
390
390
 
391
- #: ../lib/rabbit/canvas.rb:603
391
+ #: ../lib/rabbit/canvas.rb:604
392
392
  msgid "Unknown action: %s"
393
393
  msgstr ""
394
394
 
395
- #: ../lib/rabbit/canvas.rb:671
395
+ #: ../lib/rabbit/canvas.rb:672
396
396
  msgid "Processing..."
397
397
  msgstr ""
398
398
 
@@ -600,402 +600,402 @@ msgstr ""
600
600
  msgid "For users"
601
601
  msgstr ""
602
602
 
603
- #: ../lib/rabbit/command/rabbit-theme.rb:229 ../lib/rabbit/task/theme.rb:95
603
+ #: ../lib/rabbit/command/rabbit-theme.rb:229 ../lib/rabbit/task/theme.rb:96
604
604
  msgid "rabbit-theme-benchmark-en.gem"
605
605
  msgstr ""
606
606
 
607
- #: ../lib/rabbit/command/rabbit.rb:144 ../lib/rabbit/theme/blue-bar/property.rb:1 ../lib/rabbit/theme/blue-circle/property.rb:1 ../lib/rabbit/theme/centering-rabbit/property.rb:1 ../lib/rabbit/theme/clear-blue/property.rb:1 ../lib/rabbit/theme/cozmixng/property.rb:1 ../lib/rabbit/theme/dark-gradation/property.rb:1 ../lib/rabbit/theme/day-white/property.rb:1 ../lib/rabbit/theme/debian/property.rb:1 ../lib/rabbit/theme/default/property.rb:1 ../lib/rabbit/theme/enishi-green/property.rb:1 ../lib/rabbit/theme/green-circle/property.rb:1 ../lib/rabbit/theme/image-viewer/property.rb:1 ../lib/rabbit/theme/lightning-clear-blue/property.rb:1 ../lib/rabbit/theme/lightning-monochrome/property.rb:1 ../lib/rabbit/theme/lightning-rabbit/property.rb:1 ../lib/rabbit/theme/lightning-simple/property.rb:1 ../lib/rabbit/theme/lightning-talk/property.rb:1 ../lib/rabbit/theme/nari/property.rb:1 ../lib/rabbit/theme/night-black/property.rb:1 ../lib/rabbit/theme/pdf/property.rb:1 ../lib/rabbit/theme/rabbit/property.rb:1 ../lib/rabbit/theme/ranguba/property.rb:1 ../lib/rabbit/theme/red-frame/property.rb:1 ../lib/rabbit/theme/ruby-gnome2/property.rb:1 ../lib/rabbit/theme/rubykaigi2011/property.rb:1
607
+ #: ../lib/rabbit/command/rabbit.rb:147 ../lib/rabbit/theme/blue-bar/property.rb:1 ../lib/rabbit/theme/blue-circle/property.rb:1 ../lib/rabbit/theme/centering-rabbit/property.rb:1 ../lib/rabbit/theme/clear-blue/property.rb:1 ../lib/rabbit/theme/cozmixng/property.rb:1 ../lib/rabbit/theme/dark-gradation/property.rb:1 ../lib/rabbit/theme/day-white/property.rb:1 ../lib/rabbit/theme/debian/property.rb:1 ../lib/rabbit/theme/default/property.rb:1 ../lib/rabbit/theme/enishi-green/property.rb:1 ../lib/rabbit/theme/green-circle/property.rb:1 ../lib/rabbit/theme/image-viewer/property.rb:1 ../lib/rabbit/theme/lightning-clear-blue/property.rb:1 ../lib/rabbit/theme/lightning-monochrome/property.rb:1 ../lib/rabbit/theme/lightning-rabbit/property.rb:1 ../lib/rabbit/theme/lightning-simple/property.rb:1 ../lib/rabbit/theme/lightning-talk/property.rb:1 ../lib/rabbit/theme/nari/property.rb:1 ../lib/rabbit/theme/night-black/property.rb:1 ../lib/rabbit/theme/pdf/property.rb:1 ../lib/rabbit/theme/rabbit/property.rb:1 ../lib/rabbit/theme/ranguba/property.rb:1 ../lib/rabbit/theme/red-frame/property.rb:1 ../lib/rabbit/theme/ruby-gnome2/property.rb:1 ../lib/rabbit/theme/rubykaigi2011/property.rb:1
608
608
  msgid "Theme"
609
609
  msgstr ""
610
610
 
611
- #: ../lib/rabbit/command/rabbit.rb:147
611
+ #: ../lib/rabbit/command/rabbit.rb:150
612
612
  msgid "Add [PATH] to load path."
613
613
  msgstr ""
614
614
 
615
- #: ../lib/rabbit/command/rabbit.rb:152
615
+ #: ../lib/rabbit/command/rabbit.rb:155
616
616
  msgid "Use [THEME] as theme."
617
617
  msgstr ""
618
618
 
619
- #: ../lib/rabbit/command/rabbit.rb:159
619
+ #: ../lib/rabbit/command/rabbit.rb:162
620
620
  msgid "Use [THEME] for comment."
621
621
  msgstr ""
622
622
 
623
- #: ../lib/rabbit/command/rabbit.rb:165
623
+ #: ../lib/rabbit/command/rabbit.rb:168
624
624
  msgid "Use [TIME] as allotted time."
625
625
  msgstr ""
626
626
 
627
- #: ../lib/rabbit/command/rabbit.rb:171 ../lib/rabbit/html/generator.rb:404
627
+ #: ../lib/rabbit/command/rabbit.rb:174 ../lib/rabbit/html/generator.rb:404
628
628
  msgid "Source"
629
629
  msgstr ""
630
630
 
631
- #: ../lib/rabbit/command/rabbit.rb:178
631
+ #: ../lib/rabbit/command/rabbit.rb:181
632
632
  msgid ""
633
633
  "When select %s\n"
634
634
  "specify %s\n"
635
635
  "as [SOURCE_INFOS]."
636
636
  msgstr ""
637
637
 
638
- #: ../lib/rabbit/command/rabbit.rb:185
638
+ #: ../lib/rabbit/command/rabbit.rb:188
639
639
  msgid "Specify source type as [TYPE]."
640
640
  msgstr ""
641
641
 
642
- #: ../lib/rabbit/command/rabbit.rb:186 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
642
+ #: ../lib/rabbit/command/rabbit.rb:189 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
643
643
  msgid "Select from [%s]."
644
644
  msgstr ""
645
645
 
646
- #: ../lib/rabbit/command/rabbit.rb:187
646
+ #: ../lib/rabbit/command/rabbit.rb:190
647
647
  msgid "Note: case insensitive."
648
648
  msgstr ""
649
649
 
650
- #: ../lib/rabbit/command/rabbit.rb:201
650
+ #: ../lib/rabbit/command/rabbit.rb:204
651
651
  msgid "Specify source encoding as [ENCODING]."
652
652
  msgstr ""
653
653
 
654
- #: ../lib/rabbit/command/rabbit.rb:202 ../lib/rabbit/command/rabbit.rb:208 ../lib/rabbit/command/rabbit.rb:375 ../lib/rabbit/command/rabbit.rb:382 ../lib/rabbit/command/rabbit.rb:389 ../lib/rabbit/command/rabbit.rb:396 ../lib/rabbit/command/rabbit.rb:421 ../lib/rabbit/command/rabbit.rb:428 ../lib/rabbit/command/rabbit.rb:435 ../lib/rabbit/command/rabbit.rb:442 ../lib/rabbit/command/rabbit.rb:555 ../lib/rabbit/console.rb:150
654
+ #: ../lib/rabbit/command/rabbit.rb:205 ../lib/rabbit/command/rabbit.rb:211 ../lib/rabbit/command/rabbit.rb:378 ../lib/rabbit/command/rabbit.rb:385 ../lib/rabbit/command/rabbit.rb:392 ../lib/rabbit/command/rabbit.rb:399 ../lib/rabbit/command/rabbit.rb:424 ../lib/rabbit/command/rabbit.rb:431 ../lib/rabbit/command/rabbit.rb:438 ../lib/rabbit/command/rabbit.rb:445 ../lib/rabbit/command/rabbit.rb:558 ../lib/rabbit/console.rb:150
655
655
  msgid "(auto)"
656
656
  msgstr ""
657
657
 
658
- #: ../lib/rabbit/command/rabbit.rb:207
658
+ #: ../lib/rabbit/command/rabbit.rb:210
659
659
  msgid "Specify base URI or path of source as [BASE]."
660
660
  msgstr ""
661
661
 
662
- #: ../lib/rabbit/command/rabbit.rb:213
662
+ #: ../lib/rabbit/command/rabbit.rb:216
663
663
  msgid "Initial state"
664
664
  msgstr ""
665
665
 
666
- #: ../lib/rabbit/command/rabbit.rb:216
666
+ #: ../lib/rabbit/command/rabbit.rb:219
667
667
  msgid "Toggle full screen mode."
668
668
  msgstr ""
669
669
 
670
- #: ../lib/rabbit/command/rabbit.rb:222
670
+ #: ../lib/rabbit/command/rabbit.rb:225
671
671
  msgid "Toggle index mode."
672
672
  msgstr ""
673
673
 
674
- #: ../lib/rabbit/command/rabbit.rb:228
674
+ #: ../lib/rabbit/command/rabbit.rb:231
675
675
  msgid "Show the Nth slide. (zero-based)"
676
676
  msgstr ""
677
677
 
678
- #: ../lib/rabbit/command/rabbit.rb:234
678
+ #: ../lib/rabbit/command/rabbit.rb:237
679
679
  msgid "Size"
680
680
  msgstr ""
681
681
 
682
- #: ../lib/rabbit/command/rabbit.rb:237
682
+ #: ../lib/rabbit/command/rabbit.rb:240
683
683
  msgid "Set window geometry [GEOMETRY]."
684
684
  msgstr ""
685
685
 
686
- #: ../lib/rabbit/command/rabbit.rb:238
686
+ #: ../lib/rabbit/command/rabbit.rb:241
687
687
  msgid "Format: WIDTHxHEIGHT+X+Y"
688
688
  msgstr ""
689
689
 
690
- #: ../lib/rabbit/command/rabbit.rb:245
690
+ #: ../lib/rabbit/command/rabbit.rb:248
691
691
  msgid "Set window width to [WIDTH]."
692
692
  msgstr ""
693
693
 
694
- #: ../lib/rabbit/command/rabbit.rb:252
694
+ #: ../lib/rabbit/command/rabbit.rb:255
695
695
  msgid "Set window height to [HEIGHT]."
696
696
  msgstr ""
697
697
 
698
- #: ../lib/rabbit/command/rabbit.rb:257
698
+ #: ../lib/rabbit/command/rabbit.rb:260
699
699
  msgid ""
700
700
  "Set window width and height to\n"
701
701
  "[WIDTH] and [HEIGHT]."
702
702
  msgstr ""
703
703
 
704
- #: ../lib/rabbit/command/rabbit.rb:270
704
+ #: ../lib/rabbit/command/rabbit.rb:273
705
705
  msgid "Save"
706
706
  msgstr ""
707
707
 
708
- #: ../lib/rabbit/command/rabbit.rb:273
708
+ #: ../lib/rabbit/command/rabbit.rb:276
709
709
  msgid "Save as image and exit."
710
710
  msgstr ""
711
711
 
712
- #: ../lib/rabbit/command/rabbit.rb:278
712
+ #: ../lib/rabbit/command/rabbit.rb:281
713
713
  msgid "Specify saved image type as [TYPE]."
714
714
  msgstr ""
715
715
 
716
- #: ../lib/rabbit/command/rabbit.rb:285
716
+ #: ../lib/rabbit/command/rabbit.rb:288
717
717
  msgid "Specify saved image base name as [BASE_NAME]."
718
718
  msgstr ""
719
719
 
720
- #: ../lib/rabbit/command/rabbit.rb:286 ../lib/rabbit/command/rabbit.rb:324
720
+ #: ../lib/rabbit/command/rabbit.rb:289 ../lib/rabbit/command/rabbit.rb:327
721
721
  msgid "Title of slide"
722
722
  msgstr ""
723
723
 
724
- #: ../lib/rabbit/command/rabbit.rb:291
724
+ #: ../lib/rabbit/command/rabbit.rb:294
725
725
  msgid "Output HTML for viewing saved images."
726
726
  msgstr ""
727
727
 
728
- #: ../lib/rabbit/command/rabbit.rb:297
728
+ #: ../lib/rabbit/command/rabbit.rb:300
729
729
  msgid "Output index HTML for navigating slides."
730
730
  msgstr ""
731
731
 
732
- #: ../lib/rabbit/command/rabbit.rb:303
732
+ #: ../lib/rabbit/command/rabbit.rb:306
733
733
  msgid "Specify base URI of RSS as [URI]."
734
734
  msgstr ""
735
735
 
736
- #: ../lib/rabbit/command/rabbit.rb:304
736
+ #: ../lib/rabbit/command/rabbit.rb:307
737
737
  msgid "RSS is generated only when HTML is output."
738
738
  msgstr ""
739
739
 
740
- #: ../lib/rabbit/command/rabbit.rb:310
740
+ #: ../lib/rabbit/command/rabbit.rb:313
741
741
  msgid "Specify source filenam as [FILENAME]."
742
742
  msgstr ""
743
743
 
744
- #: ../lib/rabbit/command/rabbit.rb:318
744
+ #: ../lib/rabbit/command/rabbit.rb:321
745
745
  msgid "Print and exit."
746
746
  msgstr ""
747
747
 
748
- #: ../lib/rabbit/command/rabbit.rb:323
748
+ #: ../lib/rabbit/command/rabbit.rb:326
749
749
  msgid "Specify printed out filename as [FILENAME]."
750
750
  msgstr ""
751
751
 
752
- #: ../lib/rabbit/command/rabbit.rb:330
752
+ #: ../lib/rabbit/command/rabbit.rb:333
753
753
  msgid "Set slides per page."
754
754
  msgstr ""
755
755
 
756
- #: ../lib/rabbit/command/rabbit.rb:336
756
+ #: ../lib/rabbit/command/rabbit.rb:339
757
757
  msgid "Draw scaled image."
758
758
  msgstr ""
759
759
 
760
- #: ../lib/rabbit/command/rabbit.rb:337
760
+ #: ../lib/rabbit/command/rabbit.rb:340
761
761
  msgid "Better look for displaying but lesser look for printing."
762
762
  msgstr ""
763
763
 
764
- #: ../lib/rabbit/command/rabbit.rb:342
764
+ #: ../lib/rabbit/command/rabbit.rb:345
765
765
  msgid "Paper"
766
766
  msgstr ""
767
767
 
768
- #: ../lib/rabbit/command/rabbit.rb:346
768
+ #: ../lib/rabbit/command/rabbit.rb:349
769
769
  msgid "Set paper width to [WIDTH] Pt."
770
770
  msgstr ""
771
771
 
772
- #: ../lib/rabbit/command/rabbit.rb:347
772
+ #: ../lib/rabbit/command/rabbit.rb:350
773
773
  msgid "(landscape A4 width)"
774
774
  msgstr ""
775
775
 
776
- #: ../lib/rabbit/command/rabbit.rb:353
776
+ #: ../lib/rabbit/command/rabbit.rb:356
777
777
  msgid "Set paper height to [HEIGHT] Pt."
778
778
  msgstr ""
779
779
 
780
- #: ../lib/rabbit/command/rabbit.rb:354
780
+ #: ../lib/rabbit/command/rabbit.rb:357
781
781
  msgid "(landscape A4 height)"
782
782
  msgstr ""
783
783
 
784
- #: ../lib/rabbit/command/rabbit.rb:358
784
+ #: ../lib/rabbit/command/rabbit.rb:361
785
785
  msgid ""
786
786
  "Set paper width and height to\n"
787
787
  "[WIDTH] Pt and [HEIGHT] Pt."
788
788
  msgstr ""
789
789
 
790
- #: ../lib/rabbit/command/rabbit.rb:360
790
+ #: ../lib/rabbit/command/rabbit.rb:363
791
791
  msgid "(landscape A4 size)"
792
792
  msgstr ""
793
793
 
794
- #: ../lib/rabbit/command/rabbit.rb:370
794
+ #: ../lib/rabbit/command/rabbit.rb:373
795
795
  msgid "Margin"
796
796
  msgstr ""
797
797
 
798
- #: ../lib/rabbit/command/rabbit.rb:374
798
+ #: ../lib/rabbit/command/rabbit.rb:377
799
799
  msgid "Set left margin for slides per page mode print."
800
800
  msgstr ""
801
801
 
802
- #: ../lib/rabbit/command/rabbit.rb:381
802
+ #: ../lib/rabbit/command/rabbit.rb:384
803
803
  msgid "Set right margin for slides per page mode print."
804
804
  msgstr ""
805
805
 
806
- #: ../lib/rabbit/command/rabbit.rb:388
806
+ #: ../lib/rabbit/command/rabbit.rb:391
807
807
  msgid "Set top margin for slides per page mode print."
808
808
  msgstr ""
809
809
 
810
- #: ../lib/rabbit/command/rabbit.rb:395
810
+ #: ../lib/rabbit/command/rabbit.rb:398
811
811
  msgid "Set bottom margin for slides per page mode print."
812
812
  msgstr ""
813
813
 
814
- #: ../lib/rabbit/command/rabbit.rb:400
814
+ #: ../lib/rabbit/command/rabbit.rb:403
815
815
  msgid "[ALL]"
816
816
  msgstr ""
817
817
 
818
- #: ../lib/rabbit/command/rabbit.rb:401
818
+ #: ../lib/rabbit/command/rabbit.rb:404
819
819
  msgid "[TOP_BOTTOM],[LEFT_RIGHT]"
820
820
  msgstr ""
821
821
 
822
- #: ../lib/rabbit/command/rabbit.rb:402
822
+ #: ../lib/rabbit/command/rabbit.rb:405
823
823
  msgid "[TOP],[LEFT_RIGHT],[BOTTOM]"
824
824
  msgstr ""
825
825
 
826
- #: ../lib/rabbit/command/rabbit.rb:403
826
+ #: ../lib/rabbit/command/rabbit.rb:406
827
827
  msgid "[TOP],[RIGHT],[BOTTOM],[LEFT]"
828
828
  msgstr ""
829
829
 
830
- #: ../lib/rabbit/command/rabbit.rb:406
830
+ #: ../lib/rabbit/command/rabbit.rb:409
831
831
  msgid "Set margin for slides per page mode print."
832
832
  msgstr ""
833
833
 
834
- #: ../lib/rabbit/command/rabbit.rb:420
834
+ #: ../lib/rabbit/command/rabbit.rb:423
835
835
  msgid "Set left page margin."
836
836
  msgstr ""
837
837
 
838
- #: ../lib/rabbit/command/rabbit.rb:427
838
+ #: ../lib/rabbit/command/rabbit.rb:430
839
839
  msgid "Set right page margin."
840
840
  msgstr ""
841
841
 
842
- #: ../lib/rabbit/command/rabbit.rb:434
842
+ #: ../lib/rabbit/command/rabbit.rb:437
843
843
  msgid "Set top page margin."
844
844
  msgstr ""
845
845
 
846
- #: ../lib/rabbit/command/rabbit.rb:441
846
+ #: ../lib/rabbit/command/rabbit.rb:444
847
847
  msgid "Set bottom page margin."
848
848
  msgstr ""
849
849
 
850
- #: ../lib/rabbit/command/rabbit.rb:448
850
+ #: ../lib/rabbit/command/rabbit.rb:451
851
851
  msgid "Set page margin."
852
852
  msgstr ""
853
853
 
854
- #: ../lib/rabbit/command/rabbit.rb:460
854
+ #: ../lib/rabbit/command/rabbit.rb:463
855
855
  msgid "dRuby"
856
856
  msgstr ""
857
857
 
858
- #: ../lib/rabbit/command/rabbit.rb:463
858
+ #: ../lib/rabbit/command/rabbit.rb:466
859
859
  msgid "Specify whether to use dRuby."
860
860
  msgstr ""
861
861
 
862
- #: ../lib/rabbit/command/rabbit.rb:469
862
+ #: ../lib/rabbit/command/rabbit.rb:472
863
863
  msgid "Specify dRuby URI."
864
864
  msgstr ""
865
865
 
866
- #: ../lib/rabbit/command/rabbit.rb:475
866
+ #: ../lib/rabbit/command/rabbit.rb:478
867
867
  msgid "Specify whether to output dRuby URI."
868
868
  msgstr ""
869
869
 
870
- #: ../lib/rabbit/command/rabbit.rb:480
870
+ #: ../lib/rabbit/command/rabbit.rb:483
871
871
  msgid "SOAP"
872
872
  msgstr ""
873
873
 
874
- #: ../lib/rabbit/command/rabbit.rb:483
874
+ #: ../lib/rabbit/command/rabbit.rb:486
875
875
  msgid "Specify whether to use SOAP."
876
876
  msgstr ""
877
877
 
878
- #: ../lib/rabbit/command/rabbit.rb:489
878
+ #: ../lib/rabbit/command/rabbit.rb:492
879
879
  msgid "Specify SOAP host as [HOST]."
880
880
  msgstr ""
881
881
 
882
- #: ../lib/rabbit/command/rabbit.rb:496
882
+ #: ../lib/rabbit/command/rabbit.rb:499
883
883
  msgid "Specify SOAP port as [PORT]."
884
884
  msgstr ""
885
885
 
886
- #: ../lib/rabbit/command/rabbit.rb:501
886
+ #: ../lib/rabbit/command/rabbit.rb:504
887
887
  msgid "XML-RPC"
888
888
  msgstr ""
889
889
 
890
- #: ../lib/rabbit/command/rabbit.rb:504
890
+ #: ../lib/rabbit/command/rabbit.rb:507
891
891
  msgid "Specify whether to use XML-RPC."
892
892
  msgstr ""
893
893
 
894
- #: ../lib/rabbit/command/rabbit.rb:510
894
+ #: ../lib/rabbit/command/rabbit.rb:513
895
895
  msgid "Specify XML-RPC host as [HOST]."
896
896
  msgstr ""
897
897
 
898
- #: ../lib/rabbit/command/rabbit.rb:517
898
+ #: ../lib/rabbit/command/rabbit.rb:520
899
899
  msgid "Specify XML-RPC port as [PORT]."
900
900
  msgstr ""
901
901
 
902
- #: ../lib/rabbit/command/rabbit.rb:522
902
+ #: ../lib/rabbit/command/rabbit.rb:525
903
903
  msgid "Public level"
904
904
  msgstr ""
905
905
 
906
- #: ../lib/rabbit/command/rabbit.rb:529
906
+ #: ../lib/rabbit/command/rabbit.rb:532
907
907
  msgid "Specify public level."
908
908
  msgstr ""
909
909
 
910
- #: ../lib/rabbit/command/rabbit.rb:530
910
+ #: ../lib/rabbit/command/rabbit.rb:533
911
911
  msgid "Select from the following:"
912
912
  msgstr ""
913
913
 
914
- #: ../lib/rabbit/command/rabbit.rb:539 ../lib/rabbit/command/rabbit.rb:564 ../lib/rabbit/command/rabbit.rb:571
914
+ #: ../lib/rabbit/command/rabbit.rb:542 ../lib/rabbit/command/rabbit.rb:567 ../lib/rabbit/command/rabbit.rb:574
915
915
  msgid "(%s)"
916
916
  msgstr ""
917
917
 
918
- #: ../lib/rabbit/command/rabbit.rb:544 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
918
+ #: ../lib/rabbit/command/rabbit.rb:547 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
919
919
  msgid "Comment"
920
920
  msgstr ""
921
921
 
922
- #: ../lib/rabbit/command/rabbit.rb:547 ../lib/rabbit/command/rabbit.rb:553
922
+ #: ../lib/rabbit/command/rabbit.rb:550 ../lib/rabbit/command/rabbit.rb:556
923
923
  msgid "Deprecated. Just ignored."
924
924
  msgstr ""
925
925
 
926
- #: ../lib/rabbit/command/rabbit.rb:548
926
+ #: ../lib/rabbit/command/rabbit.rb:551
927
927
  msgid "Specify initial comment source."
928
928
  msgstr ""
929
929
 
930
- #: ../lib/rabbit/command/rabbit.rb:549
930
+ #: ../lib/rabbit/command/rabbit.rb:552
931
931
  msgid "(default source)"
932
932
  msgstr ""
933
933
 
934
- #: ../lib/rabbit/command/rabbit.rb:554
934
+ #: ../lib/rabbit/command/rabbit.rb:557
935
935
  msgid "Specify comment source encoding."
936
936
  msgstr ""
937
937
 
938
- #: ../lib/rabbit/command/rabbit.rb:558
938
+ #: ../lib/rabbit/command/rabbit.rb:561
939
939
  msgid "Migemo"
940
940
  msgstr ""
941
941
 
942
- #: ../lib/rabbit/command/rabbit.rb:563
942
+ #: ../lib/rabbit/command/rabbit.rb:566
943
943
  msgid "Specify search paths for Migemo static dictionary."
944
944
  msgstr ""
945
945
 
946
- #: ../lib/rabbit/command/rabbit.rb:570
946
+ #: ../lib/rabbit/command/rabbit.rb:573
947
947
  msgid "Specify static dictionary name for Migemo."
948
948
  msgstr ""
949
949
 
950
- #: ../lib/rabbit/command/rabbit.rb:575
950
+ #: ../lib/rabbit/command/rabbit.rb:578
951
951
  msgid "3D"
952
952
  msgstr ""
953
953
 
954
- #: ../lib/rabbit/command/rabbit.rb:578
954
+ #: ../lib/rabbit/command/rabbit.rb:581
955
955
  msgid "Specify whether to use OpenGL if available."
956
956
  msgstr ""
957
957
 
958
- #: ../lib/rabbit/command/rabbit.rb:583
958
+ #: ../lib/rabbit/command/rabbit.rb:586
959
959
  msgid "Display"
960
960
  msgstr ""
961
961
 
962
- #: ../lib/rabbit/command/rabbit.rb:586
962
+ #: ../lib/rabbit/command/rabbit.rb:589
963
963
  msgid "Specify whether to keep above window."
964
964
  msgstr ""
965
965
 
966
- #: ../lib/rabbit/command/rabbit.rb:591
966
+ #: ../lib/rabbit/command/rabbit.rb:594
967
967
  msgid "Others"
968
968
  msgstr ""
969
969
 
970
- #: ../lib/rabbit/command/rabbit.rb:594
970
+ #: ../lib/rabbit/command/rabbit.rb:597
971
971
  msgid "Check slide source syntax and exit."
972
972
  msgstr ""
973
973
 
974
- #: ../lib/rabbit/command/rabbit.rb:599
974
+ #: ../lib/rabbit/command/rabbit.rb:602
975
975
  msgid "Show a native window ID of the Rabbit window if available."
976
976
  msgstr ""
977
977
 
978
- #: ../lib/rabbit/command/rabbit.rb:600
978
+ #: ../lib/rabbit/command/rabbit.rb:603
979
979
  msgid "e.g. The ID is the ID of X resource on X window system."
980
980
  msgstr ""
981
981
 
982
- #: ../lib/rabbit/command/rabbit.rb:641
982
+ #: ../lib/rabbit/command/rabbit.rb:644
983
983
  msgid "Choose a Rabbit source file"
984
984
  msgstr ""
985
985
 
986
- #: ../lib/rabbit/command/rabbit.rb:759
986
+ #: ../lib/rabbit/command/rabbit.rb:762
987
987
  msgid "dRuby URI <%s> is in use."
988
988
  msgstr ""
989
989
 
990
- #: ../lib/rabbit/command/rabbit.rb:778
990
+ #: ../lib/rabbit/command/rabbit.rb:781
991
991
  msgid "port <%s> for SOAP is in use."
992
992
  msgstr ""
993
993
 
994
- #: ../lib/rabbit/command/rabbit.rb:799
994
+ #: ../lib/rabbit/command/rabbit.rb:802
995
995
  msgid "port <%s> for XML-RPC is in use."
996
996
  msgstr ""
997
997
 
998
- #: ../lib/rabbit/command/rabbit.rb:860
998
+ #: ../lib/rabbit/command/rabbit.rb:863
999
999
  msgid "Window ID: %d"
1000
1000
  msgstr ""
1001
1001
 
@@ -1039,75 +1039,75 @@ msgstr ""
1039
1039
  msgid "Index"
1040
1040
  msgstr ""
1041
1041
 
1042
- #: ../lib/rabbit/error.rb:29
1042
+ #: ../lib/rabbit/error.rb:30
1043
1043
  msgid "no such file: %s"
1044
1044
  msgstr ""
1045
1045
 
1046
- #: ../lib/rabbit/error.rb:39
1046
+ #: ../lib/rabbit/error.rb:40
1047
1047
  msgid "can't handle %s because the following command can't be run successfully: %s"
1048
1048
  msgstr ""
1049
1049
 
1050
- #: ../lib/rabbit/error.rb:49
1050
+ #: ../lib/rabbit/error.rb:50
1051
1051
  msgid "tried gs commands: %s"
1052
1052
  msgstr ""
1053
1053
 
1054
- #: ../lib/rabbit/error.rb:57
1054
+ #: ../lib/rabbit/error.rb:58
1055
1055
  msgid "tried dia commands: %s"
1056
1056
  msgstr ""
1057
1057
 
1058
- #: ../lib/rabbit/error.rb:65
1058
+ #: ../lib/rabbit/error.rb:66
1059
1059
  msgid "tried gimp commands: %s"
1060
1060
  msgstr ""
1061
1061
 
1062
- #: ../lib/rabbit/error.rb:93
1062
+ #: ../lib/rabbit/error.rb:94
1063
1063
  msgid "Unknown property: %s"
1064
1064
  msgstr ""
1065
1065
 
1066
- #: ../lib/rabbit/error.rb:101
1066
+ #: ../lib/rabbit/error.rb:102
1067
1067
  msgid "can't allocate color: %s"
1068
1068
  msgstr ""
1069
1069
 
1070
- #: ../lib/rabbit/error.rb:112
1070
+ #: ../lib/rabbit/error.rb:113
1071
1071
  msgid "not exist: %s"
1072
1072
  msgstr ""
1073
1073
 
1074
- #: ../lib/rabbit/error.rb:120
1074
+ #: ../lib/rabbit/error.rb:121
1075
1075
  msgid "not a file: %s"
1076
1076
  msgstr ""
1077
1077
 
1078
- #: ../lib/rabbit/error.rb:128
1078
+ #: ../lib/rabbit/error.rb:129
1079
1079
  msgid "can not be read: %s"
1080
1080
  msgstr ""
1081
1081
 
1082
- #: ../lib/rabbit/error.rb:136
1082
+ #: ../lib/rabbit/error.rb:137
1083
1083
  msgid "immutable source type: %s"
1084
1084
  msgstr ""
1085
1085
 
1086
- #: ../lib/rabbit/error.rb:155
1086
+ #: ../lib/rabbit/error.rb:156
1087
1087
  msgid "not available interface: %s"
1088
1088
  msgstr ""
1089
1089
 
1090
- #: ../lib/rabbit/error.rb:163
1090
+ #: ../lib/rabbit/error.rb:164
1091
1091
  msgid "can't find HTML template: %s"
1092
1092
  msgstr ""
1093
1093
 
1094
- #: ../lib/rabbit/error.rb:171
1094
+ #: ../lib/rabbit/error.rb:172
1095
1095
  msgid "can't find theme RD template: %s"
1096
1096
  msgstr ""
1097
1097
 
1098
- #: ../lib/rabbit/error.rb:179
1098
+ #: ../lib/rabbit/error.rb:180
1099
1099
  msgid "invalid motion: %s"
1100
1100
  msgstr ""
1101
1101
 
1102
- #: ../lib/rabbit/error.rb:194
1102
+ #: ../lib/rabbit/error.rb:195
1103
1103
  msgid "invalid value of size property \"%{prop_name}\" of image \"%{filename}\": %{value}"
1104
1104
  msgstr ""
1105
1105
 
1106
- #: ../lib/rabbit/error.rb:215
1106
+ #: ../lib/rabbit/error.rb:216
1107
1107
  msgid "unknown cursor type: %s"
1108
1108
  msgstr ""
1109
1109
 
1110
- #: ../lib/rabbit/error.rb:221
1110
+ #: ../lib/rabbit/error.rb:222
1111
1111
  msgid "print isn't supported"
1112
1112
  msgstr ""
1113
1113
 
@@ -1119,6 +1119,10 @@ msgstr ""
1119
1119
  msgid "Installing gem in user install mode: %s"
1120
1120
  msgstr ""
1121
1121
 
1122
+ #: ../lib/rabbit/gem-pusher.rb:57
1123
+ msgid "Enter password on RubyGems.org [%{user}]: "
1124
+ msgstr ""
1125
+
1122
1126
  #: ../lib/rabbit/graffiti/config-dialog.rb:50
1123
1127
  msgid "Line width:"
1124
1128
  msgstr ""
@@ -1139,11 +1143,11 @@ msgstr ""
1139
1143
  msgid "PDF"
1140
1144
  msgstr ""
1141
1145
 
1142
- #: ../lib/rabbit/image/pdf.rb:52
1146
+ #: ../lib/rabbit/image/pdf.rb:48
1143
1147
  msgid "invalid PDF page number: <%s>"
1144
1148
  msgstr ""
1145
1149
 
1146
- #: ../lib/rabbit/image/pdf.rb:57
1150
+ #: ../lib/rabbit/image/pdf.rb:53
1147
1151
  msgid "%s page doesn't exist in PDF"
1148
1152
  msgstr ""
1149
1153
 
@@ -1219,19 +1223,23 @@ msgstr ""
1219
1223
  msgid "tried mimeTeX commands: %s"
1220
1224
  msgstr ""
1221
1225
 
1222
- #: ../lib/rabbit/parser/markdown/converter.rb:154 ../test/parser/test-markdown.rb:340
1226
+ #: ../lib/rabbit/parser/markdown/converter.rb:170 ../test/parser/test-markdown.rb:340
1223
1227
  msgid "multiple ![alt]{image} in a paragraph isn't supported."
1224
1228
  msgstr ""
1225
1229
 
1226
- #: ../lib/rabbit/parser/markdown/converter.rb:265 ../test/parser/test-markdown.rb:354
1230
+ #: ../lib/rabbit/parser/markdown/converter.rb:294 ../test/parser/test-markdown.rb:354
1227
1231
  msgid "horizontal rule isn't supported."
1228
1232
  msgstr ""
1229
1233
 
1230
- #: ../lib/rabbit/parser/markdown/converter.rb:327
1234
+ #: ../lib/rabbit/parser/markdown/converter.rb:356
1231
1235
  msgid "multiple ![]('XXX.png'){:align='right'} isn't supported."
1232
1236
  msgstr ""
1233
1237
 
1234
- #: ../lib/rabbit/parser/markdown/converter.rb:385
1238
+ #: ../lib/rabbit/parser/markdown/converter.rb:412 ../test/parser/test-markdown.rb:367
1239
+ msgid "tag name is missing."
1240
+ msgstr ""
1241
+
1242
+ #: ../lib/rabbit/parser/markdown/converter.rb:426
1235
1243
  msgid "HTML isn't supported."
1236
1244
  msgstr ""
1237
1245
 
@@ -1291,20 +1299,20 @@ msgstr ""
1291
1299
  msgid "Failed to write slide configuration: %s: %s"
1292
1300
  msgstr ""
1293
1301
 
1294
- #: ../lib/rabbit/slideshare.rb:61
1302
+ #: ../lib/rabbit/slideshare.rb:62
1295
1303
  msgid "Feailed to upload: %s"
1296
1304
  msgstr ""
1297
1305
 
1298
- #: ../lib/rabbit/slideshare.rb:68
1306
+ #: ../lib/rabbit/slideshare.rb:69
1299
1307
  msgid "Feailed to edit title: %s"
1300
1308
  msgstr ""
1301
1309
 
1302
- #: ../lib/rabbit/slideshare.rb:76
1310
+ #: ../lib/rabbit/slideshare.rb:77
1303
1311
  msgid "Feailed to get slide URL: %s"
1304
1312
  msgstr ""
1305
1313
 
1306
- #: ../lib/rabbit/slideshare.rb:141
1307
- msgid "Enter password on SlideShare"
1314
+ #: ../lib/rabbit/slideshare.rb:146
1315
+ msgid "Enter password on SlideShare [%{user}]: "
1308
1316
  msgstr ""
1309
1317
 
1310
1318
  #: ../lib/rabbit/source/argf.rb:10
@@ -1335,55 +1343,55 @@ msgstr ""
1335
1343
  msgid "Rabbit"
1336
1344
  msgstr ""
1337
1345
 
1338
- #: ../lib/rabbit/task/slide.rb:93
1346
+ #: ../lib/rabbit/task/slide.rb:94
1339
1347
  msgid "To run rabbit, create '%{options_path}'!"
1340
1348
  msgstr ""
1341
1349
 
1342
- #: ../lib/rabbit/task/slide.rb:97
1350
+ #: ../lib/rabbit/task/slide.rb:98
1343
1351
  msgid "Show slide"
1344
1352
  msgstr ""
1345
1353
 
1346
- #: ../lib/rabbit/task/slide.rb:109 ../lib/rabbit/task/theme.rb:105
1354
+ #: ../lib/rabbit/task/slide.rb:110 ../lib/rabbit/task/theme.rb:106
1347
1355
  msgid "Create gem: %{gem_path}"
1348
1356
  msgstr ""
1349
1357
 
1350
- #: ../lib/rabbit/task/slide.rb:121 ../lib/rabbit/task/theme.rb:117
1358
+ #: ../lib/rabbit/task/slide.rb:122 ../lib/rabbit/task/theme.rb:118
1351
1359
  msgid "Write %{item} in %{where}: %{content}"
1352
1360
  msgstr ""
1353
1361
 
1354
- #: ../lib/rabbit/task/slide.rb:147 ../lib/rabbit/task/theme.rb:157
1362
+ #: ../lib/rabbit/task/slide.rb:148 ../lib/rabbit/task/theme.rb:158
1355
1363
  msgid "Generate PDF: %{pdf_path}"
1356
1364
  msgstr ""
1357
1365
 
1358
- #: ../lib/rabbit/task/slide.rb:152
1366
+ #: ../lib/rabbit/task/slide.rb:153
1359
1367
  msgid "Publish the slide to all available targets"
1360
1368
  msgstr ""
1361
1369
 
1362
- #: ../lib/rabbit/task/slide.rb:176 ../lib/rabbit/task/slide.rb:184 ../lib/rabbit/task/slide.rb:208
1370
+ #: ../lib/rabbit/task/slide.rb:177 ../lib/rabbit/task/slide.rb:186 ../lib/rabbit/task/slide.rb:210
1363
1371
  msgid "Publish the slide to %s"
1364
1372
  msgstr ""
1365
1373
 
1366
- #: ../lib/rabbit/task/slide.rb:196
1374
+ #: ../lib/rabbit/task/slide.rb:198
1367
1375
  msgid "Uploaded successfully!"
1368
1376
  msgstr ""
1369
1377
 
1370
- #: ../lib/rabbit/task/slide.rb:197
1378
+ #: ../lib/rabbit/task/slide.rb:199
1371
1379
  msgid "See %s"
1372
1380
  msgstr ""
1373
1381
 
1374
- #: ../lib/rabbit/task/theme.rb:93
1382
+ #: ../lib/rabbit/task/theme.rb:94
1375
1383
  msgid "Show theme benchmark slide with this theme"
1376
1384
  msgstr ""
1377
1385
 
1378
- #: ../lib/rabbit/task/theme.rb:137
1386
+ #: ../lib/rabbit/task/theme.rb:138
1379
1387
  msgid "Generate all PDFs"
1380
1388
  msgstr ""
1381
1389
 
1382
- #: ../lib/rabbit/task/theme.rb:165
1390
+ #: ../lib/rabbit/task/theme.rb:166
1383
1391
  msgid "Publish the theme to all available targets"
1384
1392
  msgstr ""
1385
1393
 
1386
- #: ../lib/rabbit/task/theme.rb:171
1394
+ #: ../lib/rabbit/task/theme.rb:173
1387
1395
  msgid "Publish the theme to %s"
1388
1396
  msgstr ""
1389
1397