rabbit 2.1.6 → 2.1.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/data/locale/ja/LC_MESSAGES/rabbit.mo +0 -0
  3. data/doc/_config.yml +2 -2
  4. data/doc/_layouts/en.html +1 -1
  5. data/doc/_layouts/ja.html +1 -1
  6. data/doc/_layouts/skeleton.html +22 -17
  7. data/doc/css/rabbit.css +62 -4
  8. data/doc/en/development.rd +2 -2
  9. data/doc/en/news.rd +65 -2
  10. data/doc/index.html.en +15 -15
  11. data/doc/index.html.ja +20 -20
  12. data/doc/ja/development.rd +2 -2
  13. data/doc/ja/index.rd +4 -4
  14. data/doc/ja/news.rd +61 -2
  15. data/lib/rabbit/command/rabbit.rb +7 -62
  16. data/lib/rabbit/cursor-manager.rb +29 -22
  17. data/lib/rabbit/element/index-slide.rb +1 -1
  18. data/lib/rabbit/error.rb +224 -0
  19. data/lib/rabbit/frame.rb +6 -10
  20. data/lib/rabbit/graffiti/config-dialog.rb +4 -4
  21. data/lib/rabbit/gtk.rb +173 -3
  22. data/lib/rabbit/image/pdf.rb +1 -3
  23. data/lib/rabbit/image/svg.rb +1 -3
  24. data/lib/rabbit/info-window.rb +37 -30
  25. data/lib/rabbit/keys.rb +70 -70
  26. data/lib/rabbit/logger/gui.rb +3 -10
  27. data/lib/rabbit/menu.rb +22 -8
  28. data/lib/rabbit/parser.rb +4 -2
  29. data/lib/rabbit/parser/base.rb +0 -6
  30. data/lib/rabbit/parser/image.rb +4 -0
  31. data/lib/rabbit/parser/markdown.rb +33 -7
  32. data/lib/rabbit/parser/markdown/converter.rb +15 -4
  33. data/lib/rabbit/parser/pdf.rb +4 -0
  34. data/lib/rabbit/parser/rd.rb +4 -0
  35. data/lib/rabbit/parser/rd/ext/block-verbatim.rb +47 -34
  36. data/lib/rabbit/parser/wiki.rb +4 -0
  37. data/lib/rabbit/parser/wiki/output.rb +42 -15
  38. data/lib/rabbit/progress.rb +1 -1
  39. data/lib/rabbit/rabbit.rb +8 -225
  40. data/lib/rabbit/renderer/base.rb +1 -1
  41. data/lib/rabbit/renderer/display/base.rb +10 -3
  42. data/lib/rabbit/renderer/display/button-handler.rb +3 -3
  43. data/lib/rabbit/renderer/display/clutter-embed.rb +9 -9
  44. data/lib/rabbit/renderer/display/drawing-area-base.rb +19 -24
  45. data/lib/rabbit/renderer/display/drawing-area-primitive.rb +22 -13
  46. data/lib/rabbit/renderer/display/drawing-area-view-only.rb +1 -1
  47. data/lib/rabbit/renderer/display/drawing-area.rb +1 -1
  48. data/lib/rabbit/renderer/display/gesture.rb +1 -1
  49. data/lib/rabbit/renderer/display/key-handler.rb +19 -19
  50. data/lib/rabbit/renderer/display/magnifier.rb +1 -1
  51. data/lib/rabbit/renderer/display/mask.rb +16 -21
  52. data/lib/rabbit/renderer/display/search.rb +1 -1
  53. data/lib/rabbit/renderer/display/spotlight.rb +1 -1
  54. data/lib/rabbit/renderer/engine.rb +1 -18
  55. data/lib/rabbit/renderer/engine/cairo.rb +0 -6
  56. data/lib/rabbit/renderer/pixmap.rb +1 -25
  57. data/lib/rabbit/renderer/pixmap/cairo.rb +1 -9
  58. data/lib/rabbit/renderer/print/cairo.rb +1 -10
  59. data/lib/rabbit/search-window.rb +2 -2
  60. data/lib/rabbit/source-generator/markdown.rb +1 -1
  61. data/lib/rabbit/stock.rb +3 -3
  62. data/lib/rabbit/task/slide.rb +1 -1
  63. data/lib/rabbit/theme/applier.rb +1 -1
  64. data/lib/rabbit/theme/clear-blue/clear-blue.rb +0 -8
  65. data/lib/rabbit/theme/image-slide-number/image-slide-number.rb +7 -5
  66. data/lib/rabbit/theme/image-timer/image-timer.rb +4 -1
  67. data/lib/rabbit/utils.rb +20 -3
  68. data/lib/rabbit/version.rb +1 -1
  69. data/lib/rabbit/video-window.rb +3 -3
  70. data/po/en/rabbit.edit.po +187 -199
  71. data/po/en/rabbit.po +58 -67
  72. data/po/fr/rabbit.edit.po +187 -199
  73. data/po/fr/rabbit.po +58 -67
  74. data/po/ja/rabbit.edit.po +204 -205
  75. data/po/ja/rabbit.po +64 -73
  76. data/rabbit.gemspec +2 -0
  77. data/sample/rabbit-en.md +2 -2
  78. data/sample/rabbit.md +2 -2
  79. data/test/image/test-dia.rb +2 -2
  80. data/test/image/test-eps.rb +2 -2
  81. data/test/parser/test-markdown.rb +71 -25
  82. data/test/parser/test-wiki.rb +73 -0
  83. data/test/rabbit-test-utils.rb +3 -7
  84. data/test/rabbit-test-utils/fixture.rb +24 -0
  85. data/test/rabbit-test-utils/parser.rb +48 -0
  86. data/test/source-generator/test-markdown.rb +1 -1
  87. metadata +37 -7
  88. data/README +0 -1
  89. data/doc/images/jp.png +0 -0
  90. data/doc/images/us.png +0 -0
  91. data/lib/rabbit/renderer/engine/gdk.rb +0 -230
  92. data/lib/rabbit/renderer/pixmap/gdk.rb +0 -29
@@ -34,7 +34,7 @@ module Rabbit
34
34
  def definition_list_item(item, description)
35
35
  [
36
36
  item,
37
- " #{description}",
37
+ ": #{description}",
38
38
  ].join("\n")
39
39
  end
40
40
 
@@ -6,7 +6,7 @@ module Rabbit
6
6
  module Stock
7
7
  include GetText
8
8
 
9
- RABBIT = :rabbit_rabbit
9
+ RABBIT = "rabbit-rabbit"
10
10
 
11
11
  @@loaded = false
12
12
 
@@ -14,14 +14,14 @@ module Rabbit
14
14
  def init(canvas)
15
15
  return if @@loaded
16
16
  @@loaded = true
17
- Gtk::Stock.add(RABBIT, N_("Rabbit"))
17
+ Gtk::Stock.add(RABBIT.to_sym, N_("Rabbit"))
18
18
  begin
19
19
  image_theme = Theme::Searcher.find_theme("rabbit-images", true)
20
20
  file = Theme::Searcher.find_file("lavie-icon.png", [image_theme])
21
21
  loader = ImageLoader.new(file)
22
22
  loader.resize(32, 32)
23
23
  factory = Gtk::IconFactory.new
24
- factory.add(RABBIT.to_s, Gtk::IconSet.new(loader.pixbuf))
24
+ factory.add(RABBIT, Gtk::IconSet.new(loader.pixbuf))
25
25
  factory.add_default
26
26
  rescue LoadError
27
27
  canvas.logger.warn($!)
@@ -235,7 +235,7 @@ module Rabbit
235
235
  def rabbit(*arguments)
236
236
  unless Rabbit::Command::Rabbit.run(*arguments)
237
237
  message = "failed to run Rabbit"
238
- message << ": #{arguments.join(', ')}" unless arguments.empty?
238
+ message << ": #{arguments.join(' ')}" unless arguments.empty?
239
239
  raise message
240
240
  end
241
241
  end
@@ -597,7 +597,7 @@ module Rabbit
597
597
  end
598
598
 
599
599
  def connect_key(keyval, modifier=nil, flags=nil, &block)
600
- modifier ||= Gdk::Window::ModifierType.new
600
+ modifier ||= Gdk::ModifierType.new
601
601
  flags ||= Gtk::AccelFlags::VISIBLE
602
602
  canvas.connect_key(keyval, modifier, flags, &block)
603
603
  end
@@ -86,14 +86,6 @@ match(Slide, Body) do |bodies|
86
86
  end
87
87
  end
88
88
 
89
- match("**", BlockQuote) do |quotes|
90
- quotes.each do |quote|
91
- first_element = quote.elements.first
92
- next unless first_element.is_a?(Paragraph)
93
- first_element.indent = first_element.prop_get("size")
94
- end
95
- end
96
-
97
89
  @slide_logo_image ||= "clear-blue-headline-background.png"
98
90
  include_theme("slide-logo")
99
91
 
@@ -24,14 +24,16 @@ end
24
24
  @image_slide_number_margin_right ||= nil
25
25
  @image_slide_number_margin_bottom ||= nil
26
26
 
27
- @image_slide_number_draw_parameters ||=
28
- {:reflect => {:ratio => 0.5, :alpha => 0.5}}
27
+ @image_slide_number_draw_parameters ||= {
28
+ :reflect => {:ratio => 0.5, :alpha => 0.5},
29
+ :draw_scaled_pixbuf => false,
30
+ }
29
31
 
30
32
  match(Slide) do |slides|
31
33
  slides.delete_post_draw_proc_by_name(proc_name)
32
-
34
+
33
35
  break if @image_slide_number_uninstall
34
-
36
+
35
37
  loader = ImageLoader.new(find_file(@image_slide_number_image))
36
38
  unless @image_slide_number_show_text
37
39
  start_loader = ImageLoader.new(find_file(@image_slide_number_start_image))
@@ -51,7 +53,7 @@ match(Slide) do |slides|
51
53
  "color" => @image_slide_number_text_color,
52
54
  "weight" => "heavy",
53
55
  }
54
-
56
+
55
57
  slides.add_post_draw_proc(proc_name) do |slide, canvas, x, y, w, h, simulation|
56
58
  if simulation
57
59
  image_height = canvas.height * @image_slide_number_space_ratio
@@ -30,7 +30,10 @@ end
30
30
 
31
31
  @image_timer_auto_updating = false
32
32
 
33
- @image_timer_draw_parameters ||= {:reflect => {:ratio => 0.5, :alpha => 0.5}}
33
+ @image_timer_draw_parameters ||= {
34
+ :reflect => {:ratio => 0.5, :alpha => 0.5},
35
+ :draw_scaled_pixbuf => false,
36
+ }
34
37
 
35
38
  match(Slide) do |slides|
36
39
  slides.delete_post_draw_proc_by_name(proc_name)
@@ -1,3 +1,19 @@
1
+ # Copyright (C) 2004-2015 Kouhei Sutou <kou@cozmixng.org>
2
+ #
3
+ # This program is free software; you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation; either version 2 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License along
14
+ # with this program; if not, write to the Free Software Foundation, Inc.,
15
+ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
+
1
17
  require 'tempfile'
2
18
  require 'nkf'
3
19
 
@@ -184,9 +200,10 @@ module Rabbit
184
200
  window = base.window
185
201
  screen = window.screen
186
202
  num = screen.get_monitor(window)
187
- monitor = screen.monitor_geometry(num)
203
+ monitor = screen.get_monitor_geometry(num)
188
204
  window_x, window_y = window.origin
189
- window_width, window_height = window.size
205
+ window_width = window.width
206
+ window_height = window.height
190
207
  target_width, target_height = target.size_request
191
208
 
192
209
  args = [window_x, window_y, window_width, window_height]
@@ -381,7 +398,7 @@ module Rabbit
381
398
  end
382
399
 
383
400
  def screen_depth
384
- default_screen.root_window.depth
401
+ default_screen.system_visual.depth
385
402
  end
386
403
 
387
404
  def mm_to_inch(mm)
@@ -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.6"
18
+ VERSION = "2.1.7"
19
19
  end
@@ -35,15 +35,15 @@ module Rabbit
35
35
 
36
36
  private
37
37
  def init_window
38
- @video_window = Gtk::Window.new(Gtk::Window::POPUP)
38
+ @video_window = Gtk::Window.new(:popup)
39
39
  @video_window.modal = true
40
40
  @video_window.set_transient_for(window)
41
41
 
42
- vbox = Gtk::VBox.new
42
+ vbox = Gtk::Box.new(:vertical)
43
43
  vbox.pack_start(@video)
44
44
  @video_window.add(vbox)
45
45
  @video_window.signal_connect('frame-event') do |widget, event|
46
- if event.event_type == Gdk::Event::Type::BUTTON_PRESS
46
+ if event.event_type == Gdk::EventType::BUTTON_PRESS
47
47
  @video.toggle
48
48
  end
49
49
  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:306
223
+ #: ../lib/rabbit/action/basic.rb:83 ../lib/rabbit/command/rabbit.rb:308
224
224
  msgid "Print"
225
225
  msgstr ""
226
226
 
@@ -604,417 +604,401 @@ msgstr ""
604
604
  msgid "rabbit-theme-benchmark-en.gem"
605
605
  msgstr ""
606
606
 
607
- #: ../lib/rabbit/command/rabbit.rb:135 ../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:137 ../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:138
611
+ #: ../lib/rabbit/command/rabbit.rb:140
612
612
  msgid "Add [PATH] to load path."
613
613
  msgstr ""
614
614
 
615
- #: ../lib/rabbit/command/rabbit.rb:143
615
+ #: ../lib/rabbit/command/rabbit.rb:145
616
616
  msgid "Use [THEME] as theme."
617
617
  msgstr ""
618
618
 
619
- #: ../lib/rabbit/command/rabbit.rb:150
619
+ #: ../lib/rabbit/command/rabbit.rb:152
620
620
  msgid "Use [THEME] for comment."
621
621
  msgstr ""
622
622
 
623
- #: ../lib/rabbit/command/rabbit.rb:156
623
+ #: ../lib/rabbit/command/rabbit.rb:158
624
624
  msgid "Use [TIME] as allotted time."
625
625
  msgstr ""
626
626
 
627
- #: ../lib/rabbit/command/rabbit.rb:162 ../lib/rabbit/html/generator.rb:404
627
+ #: ../lib/rabbit/command/rabbit.rb:164 ../lib/rabbit/html/generator.rb:404
628
628
  msgid "Source"
629
629
  msgstr ""
630
630
 
631
- #: ../lib/rabbit/command/rabbit.rb:169
631
+ #: ../lib/rabbit/command/rabbit.rb:171
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:176
638
+ #: ../lib/rabbit/command/rabbit.rb:178
639
639
  msgid "Specify source type as [TYPE]."
640
640
  msgstr ""
641
641
 
642
- #: ../lib/rabbit/command/rabbit.rb:177 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
642
+ #: ../lib/rabbit/command/rabbit.rb:179 ../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:178
646
+ #: ../lib/rabbit/command/rabbit.rb:180
647
647
  msgid "Note: case insensitive."
648
648
  msgstr ""
649
649
 
650
- #: ../lib/rabbit/command/rabbit.rb:192
650
+ #: ../lib/rabbit/command/rabbit.rb:194
651
651
  msgid "Specify source encoding as [ENCODING]."
652
652
  msgstr ""
653
653
 
654
- #: ../lib/rabbit/command/rabbit.rb:193 ../lib/rabbit/command/rabbit.rb:199 ../lib/rabbit/command/rabbit.rb:366 ../lib/rabbit/command/rabbit.rb:373 ../lib/rabbit/command/rabbit.rb:380 ../lib/rabbit/command/rabbit.rb:387 ../lib/rabbit/command/rabbit.rb:412 ../lib/rabbit/command/rabbit.rb:419 ../lib/rabbit/command/rabbit.rb:426 ../lib/rabbit/command/rabbit.rb:433 ../lib/rabbit/command/rabbit.rb:554 ../lib/rabbit/console.rb:150
654
+ #: ../lib/rabbit/command/rabbit.rb:195 ../lib/rabbit/command/rabbit.rb:201 ../lib/rabbit/command/rabbit.rb:368 ../lib/rabbit/command/rabbit.rb:375 ../lib/rabbit/command/rabbit.rb:382 ../lib/rabbit/command/rabbit.rb:389 ../lib/rabbit/command/rabbit.rb:414 ../lib/rabbit/command/rabbit.rb:421 ../lib/rabbit/command/rabbit.rb:428 ../lib/rabbit/command/rabbit.rb:435 ../lib/rabbit/command/rabbit.rb:548 ../lib/rabbit/console.rb:150
655
655
  msgid "(auto)"
656
656
  msgstr ""
657
657
 
658
- #: ../lib/rabbit/command/rabbit.rb:198
658
+ #: ../lib/rabbit/command/rabbit.rb:200
659
659
  msgid "Specify base URI or path of source as [BASE]."
660
660
  msgstr ""
661
661
 
662
- #: ../lib/rabbit/command/rabbit.rb:204
662
+ #: ../lib/rabbit/command/rabbit.rb:206
663
663
  msgid "Initial state"
664
664
  msgstr ""
665
665
 
666
- #: ../lib/rabbit/command/rabbit.rb:207
666
+ #: ../lib/rabbit/command/rabbit.rb:209
667
667
  msgid "Toggle full screen mode."
668
668
  msgstr ""
669
669
 
670
- #: ../lib/rabbit/command/rabbit.rb:213
670
+ #: ../lib/rabbit/command/rabbit.rb:215
671
671
  msgid "Toggle index mode."
672
672
  msgstr ""
673
673
 
674
- #: ../lib/rabbit/command/rabbit.rb:219
674
+ #: ../lib/rabbit/command/rabbit.rb:221
675
675
  msgid "Show the Nth slide. (zero-based)"
676
676
  msgstr ""
677
677
 
678
- #: ../lib/rabbit/command/rabbit.rb:225
678
+ #: ../lib/rabbit/command/rabbit.rb:227
679
679
  msgid "Size"
680
680
  msgstr ""
681
681
 
682
- #: ../lib/rabbit/command/rabbit.rb:228
682
+ #: ../lib/rabbit/command/rabbit.rb:230
683
683
  msgid "Set window geometry [GEOMETRY]."
684
684
  msgstr ""
685
685
 
686
- #: ../lib/rabbit/command/rabbit.rb:229
686
+ #: ../lib/rabbit/command/rabbit.rb:231
687
687
  msgid "Format: WIDTHxHEIGHT+X+Y"
688
688
  msgstr ""
689
689
 
690
- #: ../lib/rabbit/command/rabbit.rb:236
690
+ #: ../lib/rabbit/command/rabbit.rb:238
691
691
  msgid "Set window width to [WIDTH]."
692
692
  msgstr ""
693
693
 
694
- #: ../lib/rabbit/command/rabbit.rb:243
694
+ #: ../lib/rabbit/command/rabbit.rb:245
695
695
  msgid "Set window height to [HEIGHT]."
696
696
  msgstr ""
697
697
 
698
- #: ../lib/rabbit/command/rabbit.rb:248
698
+ #: ../lib/rabbit/command/rabbit.rb:250
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:261
704
+ #: ../lib/rabbit/command/rabbit.rb:263
705
705
  msgid "Save"
706
706
  msgstr ""
707
707
 
708
- #: ../lib/rabbit/command/rabbit.rb:264
708
+ #: ../lib/rabbit/command/rabbit.rb:266
709
709
  msgid "Save as image and exit."
710
710
  msgstr ""
711
711
 
712
- #: ../lib/rabbit/command/rabbit.rb:269
712
+ #: ../lib/rabbit/command/rabbit.rb:271
713
713
  msgid "Specify saved image type as [TYPE]."
714
714
  msgstr ""
715
715
 
716
- #: ../lib/rabbit/command/rabbit.rb:276
716
+ #: ../lib/rabbit/command/rabbit.rb:278
717
717
  msgid "Specify saved image base name as [BASE_NAME]."
718
718
  msgstr ""
719
719
 
720
- #: ../lib/rabbit/command/rabbit.rb:277 ../lib/rabbit/command/rabbit.rb:315
720
+ #: ../lib/rabbit/command/rabbit.rb:279 ../lib/rabbit/command/rabbit.rb:317
721
721
  msgid "Title of slide"
722
722
  msgstr ""
723
723
 
724
- #: ../lib/rabbit/command/rabbit.rb:282
724
+ #: ../lib/rabbit/command/rabbit.rb:284
725
725
  msgid "Output HTML for viewing saved images."
726
726
  msgstr ""
727
727
 
728
- #: ../lib/rabbit/command/rabbit.rb:288
728
+ #: ../lib/rabbit/command/rabbit.rb:290
729
729
  msgid "Output index HTML for navigating slides."
730
730
  msgstr ""
731
731
 
732
- #: ../lib/rabbit/command/rabbit.rb:294
732
+ #: ../lib/rabbit/command/rabbit.rb:296
733
733
  msgid "Specify base URI of RSS as [URI]."
734
734
  msgstr ""
735
735
 
736
- #: ../lib/rabbit/command/rabbit.rb:295
736
+ #: ../lib/rabbit/command/rabbit.rb:297
737
737
  msgid "RSS is generated only when HTML is output."
738
738
  msgstr ""
739
739
 
740
- #: ../lib/rabbit/command/rabbit.rb:301
740
+ #: ../lib/rabbit/command/rabbit.rb:303
741
741
  msgid "Specify source filenam as [FILENAME]."
742
742
  msgstr ""
743
743
 
744
- #: ../lib/rabbit/command/rabbit.rb:309
744
+ #: ../lib/rabbit/command/rabbit.rb:311
745
745
  msgid "Print and exit."
746
746
  msgstr ""
747
747
 
748
- #: ../lib/rabbit/command/rabbit.rb:314
748
+ #: ../lib/rabbit/command/rabbit.rb:316
749
749
  msgid "Specify printed out filename as [FILENAME]."
750
750
  msgstr ""
751
751
 
752
- #: ../lib/rabbit/command/rabbit.rb:321
752
+ #: ../lib/rabbit/command/rabbit.rb:323
753
753
  msgid "Set slides per page."
754
754
  msgstr ""
755
755
 
756
- #: ../lib/rabbit/command/rabbit.rb:327
756
+ #: ../lib/rabbit/command/rabbit.rb:329
757
757
  msgid "Draw scaled image."
758
758
  msgstr ""
759
759
 
760
- #: ../lib/rabbit/command/rabbit.rb:328
760
+ #: ../lib/rabbit/command/rabbit.rb:330
761
761
  msgid "Better look for displaying but lesser look for printing."
762
762
  msgstr ""
763
763
 
764
- #: ../lib/rabbit/command/rabbit.rb:333
764
+ #: ../lib/rabbit/command/rabbit.rb:335
765
765
  msgid "Paper"
766
766
  msgstr ""
767
767
 
768
- #: ../lib/rabbit/command/rabbit.rb:337
768
+ #: ../lib/rabbit/command/rabbit.rb:339
769
769
  msgid "Set paper width to [WIDTH] Pt."
770
770
  msgstr ""
771
771
 
772
- #: ../lib/rabbit/command/rabbit.rb:338
772
+ #: ../lib/rabbit/command/rabbit.rb:340
773
773
  msgid "(landscape A4 width)"
774
774
  msgstr ""
775
775
 
776
- #: ../lib/rabbit/command/rabbit.rb:344
776
+ #: ../lib/rabbit/command/rabbit.rb:346
777
777
  msgid "Set paper height to [HEIGHT] Pt."
778
778
  msgstr ""
779
779
 
780
- #: ../lib/rabbit/command/rabbit.rb:345
780
+ #: ../lib/rabbit/command/rabbit.rb:347
781
781
  msgid "(landscape A4 height)"
782
782
  msgstr ""
783
783
 
784
- #: ../lib/rabbit/command/rabbit.rb:349
784
+ #: ../lib/rabbit/command/rabbit.rb:351
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:351
790
+ #: ../lib/rabbit/command/rabbit.rb:353
791
791
  msgid "(landscape A4 size)"
792
792
  msgstr ""
793
793
 
794
- #: ../lib/rabbit/command/rabbit.rb:361
794
+ #: ../lib/rabbit/command/rabbit.rb:363
795
795
  msgid "Margin"
796
796
  msgstr ""
797
797
 
798
- #: ../lib/rabbit/command/rabbit.rb:365
798
+ #: ../lib/rabbit/command/rabbit.rb:367
799
799
  msgid "Set left margin for slides per page mode print."
800
800
  msgstr ""
801
801
 
802
- #: ../lib/rabbit/command/rabbit.rb:372
802
+ #: ../lib/rabbit/command/rabbit.rb:374
803
803
  msgid "Set right margin for slides per page mode print."
804
804
  msgstr ""
805
805
 
806
- #: ../lib/rabbit/command/rabbit.rb:379
806
+ #: ../lib/rabbit/command/rabbit.rb:381
807
807
  msgid "Set top margin for slides per page mode print."
808
808
  msgstr ""
809
809
 
810
- #: ../lib/rabbit/command/rabbit.rb:386
810
+ #: ../lib/rabbit/command/rabbit.rb:388
811
811
  msgid "Set bottom margin for slides per page mode print."
812
812
  msgstr ""
813
813
 
814
- #: ../lib/rabbit/command/rabbit.rb:391
814
+ #: ../lib/rabbit/command/rabbit.rb:393
815
815
  msgid "[ALL]"
816
816
  msgstr ""
817
817
 
818
- #: ../lib/rabbit/command/rabbit.rb:392
818
+ #: ../lib/rabbit/command/rabbit.rb:394
819
819
  msgid "[TOP_BOTTOM],[LEFT_RIGHT]"
820
820
  msgstr ""
821
821
 
822
- #: ../lib/rabbit/command/rabbit.rb:393
822
+ #: ../lib/rabbit/command/rabbit.rb:395
823
823
  msgid "[TOP],[LEFT_RIGHT],[BOTTOM]"
824
824
  msgstr ""
825
825
 
826
- #: ../lib/rabbit/command/rabbit.rb:394
826
+ #: ../lib/rabbit/command/rabbit.rb:396
827
827
  msgid "[TOP],[RIGHT],[BOTTOM],[LEFT]"
828
828
  msgstr ""
829
829
 
830
- #: ../lib/rabbit/command/rabbit.rb:397
830
+ #: ../lib/rabbit/command/rabbit.rb:399
831
831
  msgid "Set margin for slides per page mode print."
832
832
  msgstr ""
833
833
 
834
- #: ../lib/rabbit/command/rabbit.rb:411
834
+ #: ../lib/rabbit/command/rabbit.rb:413
835
835
  msgid "Set left page margin."
836
836
  msgstr ""
837
837
 
838
- #: ../lib/rabbit/command/rabbit.rb:418
838
+ #: ../lib/rabbit/command/rabbit.rb:420
839
839
  msgid "Set right page margin."
840
840
  msgstr ""
841
841
 
842
- #: ../lib/rabbit/command/rabbit.rb:425
842
+ #: ../lib/rabbit/command/rabbit.rb:427
843
843
  msgid "Set top page margin."
844
844
  msgstr ""
845
845
 
846
- #: ../lib/rabbit/command/rabbit.rb:432
846
+ #: ../lib/rabbit/command/rabbit.rb:434
847
847
  msgid "Set bottom page margin."
848
848
  msgstr ""
849
849
 
850
- #: ../lib/rabbit/command/rabbit.rb:439
850
+ #: ../lib/rabbit/command/rabbit.rb:441
851
851
  msgid "Set page margin."
852
852
  msgstr ""
853
853
 
854
- #: ../lib/rabbit/command/rabbit.rb:451
854
+ #: ../lib/rabbit/command/rabbit.rb:453
855
855
  msgid "dRuby"
856
856
  msgstr ""
857
857
 
858
- #: ../lib/rabbit/command/rabbit.rb:454
858
+ #: ../lib/rabbit/command/rabbit.rb:456
859
859
  msgid "Specify whether to use dRuby."
860
860
  msgstr ""
861
861
 
862
- #: ../lib/rabbit/command/rabbit.rb:460
862
+ #: ../lib/rabbit/command/rabbit.rb:462
863
863
  msgid "Specify dRuby URI."
864
864
  msgstr ""
865
865
 
866
- #: ../lib/rabbit/command/rabbit.rb:466
866
+ #: ../lib/rabbit/command/rabbit.rb:468
867
867
  msgid "Specify whether to output dRuby URI."
868
868
  msgstr ""
869
869
 
870
- #: ../lib/rabbit/command/rabbit.rb:471
870
+ #: ../lib/rabbit/command/rabbit.rb:473
871
871
  msgid "SOAP"
872
872
  msgstr ""
873
873
 
874
- #: ../lib/rabbit/command/rabbit.rb:474
874
+ #: ../lib/rabbit/command/rabbit.rb:476
875
875
  msgid "Specify whether to use SOAP."
876
876
  msgstr ""
877
877
 
878
- #: ../lib/rabbit/command/rabbit.rb:480
878
+ #: ../lib/rabbit/command/rabbit.rb:482
879
879
  msgid "Specify SOAP host as [HOST]."
880
880
  msgstr ""
881
881
 
882
- #: ../lib/rabbit/command/rabbit.rb:487
882
+ #: ../lib/rabbit/command/rabbit.rb:489
883
883
  msgid "Specify SOAP port as [PORT]."
884
884
  msgstr ""
885
885
 
886
- #: ../lib/rabbit/command/rabbit.rb:492
886
+ #: ../lib/rabbit/command/rabbit.rb:494
887
887
  msgid "XML-RPC"
888
888
  msgstr ""
889
889
 
890
- #: ../lib/rabbit/command/rabbit.rb:495
890
+ #: ../lib/rabbit/command/rabbit.rb:497
891
891
  msgid "Specify whether to use XML-RPC."
892
892
  msgstr ""
893
893
 
894
- #: ../lib/rabbit/command/rabbit.rb:501
894
+ #: ../lib/rabbit/command/rabbit.rb:503
895
895
  msgid "Specify XML-RPC host as [HOST]."
896
896
  msgstr ""
897
897
 
898
- #: ../lib/rabbit/command/rabbit.rb:508
898
+ #: ../lib/rabbit/command/rabbit.rb:510
899
899
  msgid "Specify XML-RPC port as [PORT]."
900
900
  msgstr ""
901
901
 
902
- #: ../lib/rabbit/command/rabbit.rb:513
903
- msgid "Server"
904
- msgstr ""
905
-
906
- #: ../lib/rabbit/command/rabbit.rb:516
907
- msgid "Specify whether to run as server."
908
- msgstr ""
909
-
910
- #: ../lib/rabbit/command/rabbit.rb:521
902
+ #: ../lib/rabbit/command/rabbit.rb:515
911
903
  msgid "Public level"
912
904
  msgstr ""
913
905
 
914
- #: ../lib/rabbit/command/rabbit.rb:528
906
+ #: ../lib/rabbit/command/rabbit.rb:522
915
907
  msgid "Specify public level."
916
908
  msgstr ""
917
909
 
918
- #: ../lib/rabbit/command/rabbit.rb:529
910
+ #: ../lib/rabbit/command/rabbit.rb:523
919
911
  msgid "Select from the following:"
920
912
  msgstr ""
921
913
 
922
- #: ../lib/rabbit/command/rabbit.rb:538 ../lib/rabbit/command/rabbit.rb:563 ../lib/rabbit/command/rabbit.rb:570
914
+ #: ../lib/rabbit/command/rabbit.rb:532 ../lib/rabbit/command/rabbit.rb:557 ../lib/rabbit/command/rabbit.rb:564
923
915
  msgid "(%s)"
924
916
  msgstr ""
925
917
 
926
- #: ../lib/rabbit/command/rabbit.rb:543 ../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:537 ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1 ../lib/rabbit/theme/stream-comment/property.rb:1
927
919
  msgid "Comment"
928
920
  msgstr ""
929
921
 
930
- #: ../lib/rabbit/command/rabbit.rb:546 ../lib/rabbit/command/rabbit.rb:552
922
+ #: ../lib/rabbit/command/rabbit.rb:540 ../lib/rabbit/command/rabbit.rb:546
931
923
  msgid "Deprecated. Just ignored."
932
924
  msgstr ""
933
925
 
934
- #: ../lib/rabbit/command/rabbit.rb:547
926
+ #: ../lib/rabbit/command/rabbit.rb:541
935
927
  msgid "Specify initial comment source."
936
928
  msgstr ""
937
929
 
938
- #: ../lib/rabbit/command/rabbit.rb:548
930
+ #: ../lib/rabbit/command/rabbit.rb:542
939
931
  msgid "(default source)"
940
932
  msgstr ""
941
933
 
942
- #: ../lib/rabbit/command/rabbit.rb:553
934
+ #: ../lib/rabbit/command/rabbit.rb:547
943
935
  msgid "Specify comment source encoding."
944
936
  msgstr ""
945
937
 
946
- #: ../lib/rabbit/command/rabbit.rb:557
938
+ #: ../lib/rabbit/command/rabbit.rb:551
947
939
  msgid "Migemo"
948
940
  msgstr ""
949
941
 
950
- #: ../lib/rabbit/command/rabbit.rb:562
942
+ #: ../lib/rabbit/command/rabbit.rb:556
951
943
  msgid "Specify search paths for Migemo static dictionary."
952
944
  msgstr ""
953
945
 
954
- #: ../lib/rabbit/command/rabbit.rb:569
946
+ #: ../lib/rabbit/command/rabbit.rb:563
955
947
  msgid "Specify static dictionary name for Migemo."
956
948
  msgstr ""
957
949
 
958
- #: ../lib/rabbit/command/rabbit.rb:574
950
+ #: ../lib/rabbit/command/rabbit.rb:568
959
951
  msgid "3D"
960
952
  msgstr ""
961
953
 
962
- #: ../lib/rabbit/command/rabbit.rb:577
954
+ #: ../lib/rabbit/command/rabbit.rb:571
963
955
  msgid "Specify whether to use OpenGL if available."
964
956
  msgstr ""
965
957
 
966
- #: ../lib/rabbit/command/rabbit.rb:582
958
+ #: ../lib/rabbit/command/rabbit.rb:576
967
959
  msgid "Display"
968
960
  msgstr ""
969
961
 
970
- #: ../lib/rabbit/command/rabbit.rb:585
962
+ #: ../lib/rabbit/command/rabbit.rb:579
971
963
  msgid "Specify whether to keep above window."
972
964
  msgstr ""
973
965
 
974
- #: ../lib/rabbit/command/rabbit.rb:590
966
+ #: ../lib/rabbit/command/rabbit.rb:584
975
967
  msgid "Others"
976
968
  msgstr ""
977
969
 
978
- #: ../lib/rabbit/command/rabbit.rb:593
970
+ #: ../lib/rabbit/command/rabbit.rb:587
979
971
  msgid "Check slide source syntax and exit."
980
972
  msgstr ""
981
973
 
982
- #: ../lib/rabbit/command/rabbit.rb:598
974
+ #: ../lib/rabbit/command/rabbit.rb:592
983
975
  msgid "Show a native window ID of the Rabbit window if available."
984
976
  msgstr ""
985
977
 
986
- #: ../lib/rabbit/command/rabbit.rb:599
978
+ #: ../lib/rabbit/command/rabbit.rb:593
987
979
  msgid "e.g. The ID is the ID of X resource on X window system."
988
980
  msgstr ""
989
981
 
990
- #: ../lib/rabbit/command/rabbit.rb:640
982
+ #: ../lib/rabbit/command/rabbit.rb:634
991
983
  msgid "Choose a Rabbit source file"
992
984
  msgstr ""
993
985
 
994
- #: ../lib/rabbit/command/rabbit.rb:757
986
+ #: ../lib/rabbit/command/rabbit.rb:751
995
987
  msgid "dRuby URI <%s> is in use."
996
988
  msgstr ""
997
989
 
998
- #: ../lib/rabbit/command/rabbit.rb:776
990
+ #: ../lib/rabbit/command/rabbit.rb:770
999
991
  msgid "port <%s> for SOAP is in use."
1000
992
  msgstr ""
1001
993
 
1002
- #: ../lib/rabbit/command/rabbit.rb:797
994
+ #: ../lib/rabbit/command/rabbit.rb:791
1003
995
  msgid "port <%s> for XML-RPC is in use."
1004
996
  msgstr ""
1005
997
 
1006
- #: ../lib/rabbit/command/rabbit.rb:862
998
+ #: ../lib/rabbit/command/rabbit.rb:852
1007
999
  msgid "Window ID: %d"
1008
1000
  msgstr ""
1009
1001
 
1010
- #: ../lib/rabbit/command/rabbit.rb:911
1011
- msgid "going to shutdown..."
1012
- msgstr ""
1013
-
1014
- #: ../lib/rabbit/command/rabbit.rb:913
1015
- msgid "DRb.thread done."
1016
- msgstr ""
1017
-
1018
1002
  #: ../lib/rabbit/console.rb:114
1019
1003
  msgid "Usage: %s [options]"
1020
1004
  msgstr ""
@@ -1055,6 +1039,78 @@ msgstr ""
1055
1039
  msgid "Index"
1056
1040
  msgstr ""
1057
1041
 
1042
+ #: ../lib/rabbit/error.rb:29
1043
+ msgid "no such file: %s"
1044
+ msgstr ""
1045
+
1046
+ #: ../lib/rabbit/error.rb:39
1047
+ msgid "can't handle %s because the following command can't be run successfully: %s"
1048
+ msgstr ""
1049
+
1050
+ #: ../lib/rabbit/error.rb:49
1051
+ msgid "tried gs commands: %s"
1052
+ msgstr ""
1053
+
1054
+ #: ../lib/rabbit/error.rb:57
1055
+ msgid "tried dia commands: %s"
1056
+ msgstr ""
1057
+
1058
+ #: ../lib/rabbit/error.rb:65
1059
+ msgid "tried gimp commands: %s"
1060
+ msgstr ""
1061
+
1062
+ #: ../lib/rabbit/error.rb:93
1063
+ msgid "Unknown property: %s"
1064
+ msgstr ""
1065
+
1066
+ #: ../lib/rabbit/error.rb:101
1067
+ msgid "can't allocate color: %s"
1068
+ msgstr ""
1069
+
1070
+ #: ../lib/rabbit/error.rb:112
1071
+ msgid "not exist: %s"
1072
+ msgstr ""
1073
+
1074
+ #: ../lib/rabbit/error.rb:120
1075
+ msgid "not a file: %s"
1076
+ msgstr ""
1077
+
1078
+ #: ../lib/rabbit/error.rb:128
1079
+ msgid "can not be read: %s"
1080
+ msgstr ""
1081
+
1082
+ #: ../lib/rabbit/error.rb:136
1083
+ msgid "immutable source type: %s"
1084
+ msgstr ""
1085
+
1086
+ #: ../lib/rabbit/error.rb:155
1087
+ msgid "not available interface: %s"
1088
+ msgstr ""
1089
+
1090
+ #: ../lib/rabbit/error.rb:163
1091
+ msgid "can't find HTML template: %s"
1092
+ msgstr ""
1093
+
1094
+ #: ../lib/rabbit/error.rb:171
1095
+ msgid "can't find theme RD template: %s"
1096
+ msgstr ""
1097
+
1098
+ #: ../lib/rabbit/error.rb:179
1099
+ msgid "invalid motion: %s"
1100
+ msgstr ""
1101
+
1102
+ #: ../lib/rabbit/error.rb:194
1103
+ msgid "invalid value of size property \"%{prop_name}\" of image \"%{filename}\": %{value}"
1104
+ msgstr ""
1105
+
1106
+ #: ../lib/rabbit/error.rb:215
1107
+ msgid "unknown cursor type: %s"
1108
+ msgstr ""
1109
+
1110
+ #: ../lib/rabbit/error.rb:221
1111
+ msgid "print isn't supported"
1112
+ msgstr ""
1113
+
1058
1114
  #: ../lib/rabbit/gem-finder.rb:46
1059
1115
  msgid "Installing gem: %s"
1060
1116
  msgstr ""
@@ -1083,11 +1139,11 @@ msgstr ""
1083
1139
  msgid "PDF"
1084
1140
  msgstr ""
1085
1141
 
1086
- #: ../lib/rabbit/image/pdf.rb:54
1142
+ #: ../lib/rabbit/image/pdf.rb:52
1087
1143
  msgid "invalid PDF page number: <%s>"
1088
1144
  msgstr ""
1089
1145
 
1090
- #: ../lib/rabbit/image/pdf.rb:59
1146
+ #: ../lib/rabbit/image/pdf.rb:57
1091
1147
  msgid "%s page doesn't exist in PDF"
1092
1148
  msgstr ""
1093
1149
 
@@ -1095,7 +1151,7 @@ msgstr ""
1095
1151
  msgid "%s: Information window"
1096
1152
  msgstr ""
1097
1153
 
1098
- #: ../lib/rabbit/info-window.rb:275
1154
+ #: ../lib/rabbit/info-window.rb:282
1099
1155
  msgid "unlimited"
1100
1156
  msgstr ""
1101
1157
 
@@ -1131,7 +1187,7 @@ msgstr ""
1131
1187
  msgid "can't convert to current locale from UTF-8: %s"
1132
1188
  msgstr ""
1133
1189
 
1134
- #: ../lib/rabbit/menu.rb:61
1190
+ #: ../lib/rabbit/menu.rb:77
1135
1191
  msgid "Jump to the %dth slide"
1136
1192
  msgstr ""
1137
1193
 
@@ -1163,19 +1219,19 @@ msgstr ""
1163
1219
  msgid "tried mimeTeX commands: %s"
1164
1220
  msgstr ""
1165
1221
 
1166
- #: ../lib/rabbit/parser/markdown/converter.rb:150
1222
+ #: ../lib/rabbit/parser/markdown/converter.rb:154 ../test/parser/test-markdown.rb:306
1167
1223
  msgid "multiple ![alt]{image} in a paragraph isn't supported."
1168
1224
  msgstr ""
1169
1225
 
1170
- #: ../lib/rabbit/parser/markdown/converter.rb:317
1226
+ #: ../lib/rabbit/parser/markdown/converter.rb:323
1171
1227
  msgid "multiple ![]('XXX.png'){:align='right'} isn't supported."
1172
1228
  msgstr ""
1173
1229
 
1174
- #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:48
1230
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:61
1175
1231
  msgid "multiple 'align = right' isn't supported."
1176
1232
  msgstr ""
1177
1233
 
1178
- #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:141
1234
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:154
1179
1235
  msgid "RTtool isn't available"
1180
1236
  msgstr ""
1181
1237
 
@@ -1183,16 +1239,20 @@ msgstr ""
1183
1239
  msgid "[BUG] [%s] %s extension isn't available."
1184
1240
  msgstr ""
1185
1241
 
1186
- #: ../lib/rabbit/parser/wiki/output.rb:88
1242
+ #: ../lib/rabbit/parser/wiki/output.rb:105
1187
1243
  msgid "horizontal rule is unsupported"
1188
1244
  msgstr ""
1189
1245
 
1190
- #: ../lib/rabbit/parser/wiki/output.rb:338
1246
+ #: ../lib/rabbit/parser/wiki/output.rb:355
1191
1247
  msgid "unsupported list type: %s"
1192
1248
  msgstr ""
1193
1249
 
1194
- #: ../lib/rabbit/parser/wiki/output.rb:437
1195
- msgid "multiple {{image, 'XXX.png', :align => :right}} isn't supported."
1250
+ #: ../lib/rabbit/parser/wiki/output.rb:388 ../test/parser/test-wiki.rb:46
1251
+ msgid "inline {{image(...)}} isn't supported."
1252
+ msgstr ""
1253
+
1254
+ #: ../lib/rabbit/parser/wiki/output.rb:464 ../test/parser/test-wiki.rb:66
1255
+ msgid "multiple {{image(..., :align => :right)}} isn't supported."
1196
1256
  msgstr ""
1197
1257
 
1198
1258
  #: ../lib/rabbit/path-manipulatable.rb:28
@@ -1203,78 +1263,6 @@ msgstr ""
1203
1263
  msgid "Creating file: %s"
1204
1264
  msgstr ""
1205
1265
 
1206
- #: ../lib/rabbit/rabbit.rb:60
1207
- msgid "no such file: %s"
1208
- msgstr ""
1209
-
1210
- #: ../lib/rabbit/rabbit.rb:70
1211
- msgid "can't handle %s because the following command can't be run successfully: %s"
1212
- msgstr ""
1213
-
1214
- #: ../lib/rabbit/rabbit.rb:80
1215
- msgid "tried gs commands: %s"
1216
- msgstr ""
1217
-
1218
- #: ../lib/rabbit/rabbit.rb:88
1219
- msgid "tried dia commands: %s"
1220
- msgstr ""
1221
-
1222
- #: ../lib/rabbit/rabbit.rb:96
1223
- msgid "tried gimp commands: %s"
1224
- msgstr ""
1225
-
1226
- #: ../lib/rabbit/rabbit.rb:124
1227
- msgid "Unknown property: %s"
1228
- msgstr ""
1229
-
1230
- #: ../lib/rabbit/rabbit.rb:132
1231
- msgid "can't allocate color: %s"
1232
- msgstr ""
1233
-
1234
- #: ../lib/rabbit/rabbit.rb:143
1235
- msgid "not exist: %s"
1236
- msgstr ""
1237
-
1238
- #: ../lib/rabbit/rabbit.rb:151
1239
- msgid "not a file: %s"
1240
- msgstr ""
1241
-
1242
- #: ../lib/rabbit/rabbit.rb:159
1243
- msgid "can not be read: %s"
1244
- msgstr ""
1245
-
1246
- #: ../lib/rabbit/rabbit.rb:167
1247
- msgid "immutable source type: %s"
1248
- msgstr ""
1249
-
1250
- #: ../lib/rabbit/rabbit.rb:186
1251
- msgid "not available interface: %s"
1252
- msgstr ""
1253
-
1254
- #: ../lib/rabbit/rabbit.rb:194
1255
- msgid "can't find HTML template: %s"
1256
- msgstr ""
1257
-
1258
- #: ../lib/rabbit/rabbit.rb:202
1259
- msgid "can't find theme RD template: %s"
1260
- msgstr ""
1261
-
1262
- #: ../lib/rabbit/rabbit.rb:210
1263
- msgid "invalid motion: %s"
1264
- msgstr ""
1265
-
1266
- #: ../lib/rabbit/rabbit.rb:225
1267
- msgid "invalid value of size property \"%{prop_name}\" of image \"%{filename}\": %{value}"
1268
- msgstr ""
1269
-
1270
- #: ../lib/rabbit/rabbit.rb:246
1271
- msgid "unknown cursor type: %s"
1272
- msgstr ""
1273
-
1274
- #: ../lib/rabbit/rabbit.rb:252
1275
- msgid "print isn't supported"
1276
- msgstr ""
1277
-
1278
1266
  #: ../lib/rabbit/readme-parser.rb:35
1279
1267
  msgid "No README found"
1280
1268
  msgstr ""
@@ -1283,7 +1271,7 @@ msgstr ""
1283
1271
  msgid "%s does not support: %s"
1284
1272
  msgstr ""
1285
1273
 
1286
- #: ../lib/rabbit/renderer/print/cairo.rb:123
1274
+ #: ../lib/rabbit/renderer/print/cairo.rb:114
1287
1275
  msgid "can't find printer for %s"
1288
1276
  msgstr ""
1289
1277