rabbit 2.0.1 → 2.0.2

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 (91) hide show
  1. data/Rakefile +0 -27
  2. data/data/locale/en/LC_MESSAGES/rabbit.mo +0 -0
  3. data/data/locale/fr/LC_MESSAGES/rabbit.mo +0 -0
  4. data/data/locale/ja/LC_MESSAGES/rabbit.mo +0 -0
  5. data/doc/_config.yml +2 -2
  6. data/doc/en/index.rd +5 -5
  7. data/doc/en/news.rd +87 -0
  8. data/doc/images/screenshots/en/blue-circle.png +0 -0
  9. data/doc/images/screenshots/en/clear-blue-raw.png +0 -0
  10. data/doc/images/screenshots/en/clear-blue.png +0 -0
  11. data/doc/images/screenshots/en/cozmixng-raw.png +0 -0
  12. data/doc/images/screenshots/en/cozmixng.png +0 -0
  13. data/doc/images/screenshots/en/dark-gradation-raw.png +0 -0
  14. data/doc/images/screenshots/en/dark-gradation.png +0 -0
  15. data/doc/images/screenshots/en/day-white-raw.png +0 -0
  16. data/doc/images/screenshots/en/day-white.png +0 -0
  17. data/doc/images/screenshots/en/debian-raw.png +0 -0
  18. data/doc/images/screenshots/en/debian.png +0 -0
  19. data/doc/images/screenshots/en/green-circle.png +0 -0
  20. data/doc/images/screenshots/en/night-black-raw.png +0 -0
  21. data/doc/images/screenshots/en/night-black.png +0 -0
  22. data/doc/images/screenshots/en/rabbit-raw.png +0 -0
  23. data/doc/images/screenshots/en/rabbit.png +0 -0
  24. data/doc/images/screenshots/en/ranguba-raw.png +0 -0
  25. data/doc/images/screenshots/en/ranguba.png +0 -0
  26. data/doc/images/screenshots/en/red-frame-raw.png +0 -0
  27. data/doc/images/screenshots/en/red-frame.png +0 -0
  28. data/doc/images/screenshots/en/ruby-gnome2-raw.png +0 -0
  29. data/doc/images/screenshots/en/ruby-gnome2.png +0 -0
  30. data/doc/images/screenshots/en/rubykaigi2011-raw.png +0 -0
  31. data/doc/images/screenshots/en/rubykaigi2011.png +0 -0
  32. data/doc/images/screenshots/ja/blue-circle.png +0 -0
  33. data/doc/images/screenshots/ja/clear-blue-raw.png +0 -0
  34. data/doc/images/screenshots/ja/clear-blue.png +0 -0
  35. data/doc/images/screenshots/ja/cozmixng-raw.png +0 -0
  36. data/doc/images/screenshots/ja/cozmixng.png +0 -0
  37. data/doc/images/screenshots/ja/dark-gradation-raw.png +0 -0
  38. data/doc/images/screenshots/ja/dark-gradation.png +0 -0
  39. data/doc/images/screenshots/ja/day-white-raw.png +0 -0
  40. data/doc/images/screenshots/ja/day-white.png +0 -0
  41. data/doc/images/screenshots/ja/debian-raw.png +0 -0
  42. data/doc/images/screenshots/ja/debian.png +0 -0
  43. data/doc/images/screenshots/ja/green-circle.png +0 -0
  44. data/doc/images/screenshots/ja/night-black-raw.png +0 -0
  45. data/doc/images/screenshots/ja/night-black.png +0 -0
  46. data/doc/images/screenshots/ja/rabbit-raw.png +0 -0
  47. data/doc/images/screenshots/ja/rabbit.png +0 -0
  48. data/doc/images/screenshots/ja/ranguba-raw.png +0 -0
  49. data/doc/images/screenshots/ja/ranguba.png +0 -0
  50. data/doc/images/screenshots/ja/red-frame-raw.png +0 -0
  51. data/doc/images/screenshots/ja/red-frame.png +0 -0
  52. data/doc/images/screenshots/ja/ruby-gnome2-raw.png +0 -0
  53. data/doc/images/screenshots/ja/ruby-gnome2.png +0 -0
  54. data/doc/images/screenshots/ja/rubykaigi2011-raw.png +0 -0
  55. data/doc/images/screenshots/ja/rubykaigi2011.png +0 -0
  56. data/doc/ja/index.rd +5 -5
  57. data/doc/ja/news.rd +85 -0
  58. data/lib/rabbit/author-configuration.rb +30 -15
  59. data/lib/rabbit/command/rabbit-slide.rb +70 -184
  60. data/lib/rabbit/command/rabbit-theme.rb +46 -125
  61. data/lib/rabbit/command/rabbit.rb +2 -1
  62. data/lib/rabbit/path-manipulatable.rb +0 -3
  63. data/lib/rabbit/readme-parser.rb +49 -0
  64. data/lib/rabbit/slide-configuration.rb +127 -0
  65. data/lib/rabbit/source-generator.rb +39 -0
  66. data/lib/rabbit/source-generator/hiki.rb +63 -0
  67. data/lib/rabbit/source-generator/markdown.rb +61 -0
  68. data/lib/rabbit/source-generator/rd.rb +65 -0
  69. data/lib/rabbit/task/slide.rb +68 -31
  70. data/lib/rabbit/task/theme.rb +46 -11
  71. data/lib/rabbit/theme-configuration.rb +104 -0
  72. data/lib/rabbit/theme/default-title-text/default-title-text.rb +2 -2
  73. data/lib/rabbit/theme/entry.rb +3 -2
  74. data/lib/rabbit/theme/nari/nari.rb +2 -0
  75. data/lib/rabbit/theme/slide-number/slide-number.rb +2 -2
  76. data/lib/rabbit/version.rb +1 -1
  77. data/po/rabbit.pot +1548 -1419
  78. data/test/run-test.rb +3 -1
  79. data/test/source-generator/test-hiki.rb +68 -0
  80. data/test/source-generator/test-markdown.rb +67 -0
  81. data/test/source-generator/test-rd.rb +69 -0
  82. data/test/{test_applier.rb → test-applier.rb} +0 -0
  83. data/test/test-author-configuration.rb +36 -0
  84. data/test/{test_color.rb → test-color.rb} +0 -0
  85. data/test/{test_element.rb → test-element.rb} +0 -0
  86. data/test/test-readme-parser.rb +57 -0
  87. data/test/test-slide-configuration.rb +56 -0
  88. data/test/{test_source.rb → test-source.rb} +0 -0
  89. data/test/test-theme-configuration.rb +47 -0
  90. data/test/{test_utils.rb → test-utils.rb} +0 -0
  91. metadata +65 -12
@@ -19,6 +19,8 @@ require "rake"
19
19
  require "rabbit/gettext"
20
20
  require "rabbit/logger"
21
21
  require "rabbit/command/rabbit"
22
+ require "rabbit/theme-configuration"
23
+ require "rabbit/readme-parser"
22
24
 
23
25
  module Rabbit
24
26
  module Task
@@ -27,20 +29,50 @@ module Rabbit
27
29
  include GetText
28
30
 
29
31
  attr_reader :spec
30
- attr_accessor :package_dir, :pdf_dir, :pdf_base_path
31
- attr_accessor :rubygems_user
32
- def initialize(spec)
32
+ attr_accessor :package_dir, :pdf_dir, :required_rabbit_version
33
+ def initialize
33
34
  @logger = Logger.default
34
- @spec = spec
35
+ @theme = load_theme_configuration
36
+ @spec = create_spec
35
37
  @package_dir = "pkg"
36
38
  @pdf_dir = "pdf"
37
- @pdf_base_path = nil
38
- @rubygems_user = nil
39
+ @required_rabbit_version = ">= 2.0.2"
39
40
  yield(self) if block_given?
40
41
  define
41
42
  end
42
43
 
43
44
  private
45
+ def load_theme_configuration
46
+ theme_conf = ThemeConfiguration.new(@logger)
47
+ theme_conf.load
48
+ theme_conf
49
+ end
50
+
51
+ def create_spec
52
+ readme_parser = READMEParser.new(@logger)
53
+ readme_parser.parse
54
+
55
+ Gem::Specification.new do |spec|
56
+ spec.name = @theme.gem_name
57
+ spec.version = @theme.version
58
+ spec.homepage = homepage
59
+ spec.authors = [@theme.author.name]
60
+ spec.email = [@theme.author.email]
61
+ spec.summary = readme_parser.title || "TODO"
62
+ spec.description = readme_parser.description || "TODO"
63
+ spec.licenses = @theme.licenses
64
+
65
+ theme_conf_path = @theme.path
66
+ spec.files = [theme_conf_path, "Rakefile"]
67
+ spec.files += Dir.glob("{theme.rb,COPYING,GPL,README*}")
68
+ spec.files += Dir.glob("data/**/*.{svg,png,jpg,jpeg,gif,eps,pdf}")
69
+ spec.files += Dir.glob("locale/**/*.mo")
70
+ spec.files += Dir.glob("po/*/*.po")
71
+
72
+ spec.add_runtime_dependency("rabbit", @required_rabbit_version)
73
+ end
74
+ end
75
+
44
76
  def define
45
77
  task :default => :run
46
78
 
@@ -77,7 +109,7 @@ module Rabbit
77
109
  end
78
110
  end
79
111
 
80
- pdf_path = File.join(@pdf_dir, @pdf_base_path || default_pdf_base_path)
112
+ pdf_path = File.join(@pdf_dir, pdf_base_path)
81
113
  file pdf_path => [*@spec.files] do
82
114
  mkdir_p(@pdf_dir)
83
115
  rabbit("--theme", ".",
@@ -94,7 +126,7 @@ module Rabbit
94
126
 
95
127
  publish_tasks = []
96
128
  namespace :publish do
97
- if @rubygems_user
129
+ if @theme.author.rubygems_user
98
130
  desc(_("Publish the theme to %s") % "RubyGems.org")
99
131
  task :rubygems => :gem do
100
132
  ruby("-S", "gem", "push", "--verbose", gem_path)
@@ -109,9 +141,12 @@ module Rabbit
109
141
  File.join(@package_dir, "#{@spec.name}-#{@spec.version}.gem")
110
142
  end
111
143
 
112
- def default_pdf_base_path
113
- theme_id = @spec.name.gsub(/\Arabbit-theme-/, "")
114
- "#{theme_id}.pdf"
144
+ def pdf_base_path
145
+ "#{@theme.id}.pdf"
146
+ end
147
+
148
+ def homepage
149
+ "http://theme.rabbit-shockers.org/#{@theme.id}/"
115
150
  end
116
151
 
117
152
  def rabbit(*arguments)
@@ -0,0 +1,104 @@
1
+ # Copyright (C) 2012 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
+
17
+ require "yaml"
18
+
19
+ require "rabbit/gettext"
20
+ require "rabbit/author-configuration"
21
+ require "rabbit/path-manipulatable"
22
+
23
+ module Rabbit
24
+ class ThemeConfiguration
25
+ include GetText
26
+ include PathManipulatable
27
+
28
+ GEM_NAME_PREFIX = "rabbit-theme"
29
+
30
+ attr_accessor :logger
31
+ attr_accessor :id, :tags, :licenses
32
+ attr_writer :version
33
+ attr_accessor :author
34
+ def initialize(logger=nil)
35
+ @logger = logger || Logger.default
36
+ @id = nil
37
+ @tags = []
38
+ @version = nil
39
+ @licenses = []
40
+ @author = nil
41
+ end
42
+
43
+ def load
44
+ return unless File.exist?(path)
45
+ conf = YAML.load(File.read(path))
46
+ merge!(conf)
47
+ rescue
48
+ format = _("Failed to read slide configuration: %s: %s")
49
+ @logger.error(format % [path, $!.message])
50
+ end
51
+
52
+ def save(base_dir)
53
+ config_path = File.join(base_dir, path)
54
+ create_file(config_path) do |conf_file|
55
+ conf_file.print(to_yaml)
56
+ end
57
+ rescue
58
+ format = _("Failed to write slide configuration: %s: %s")
59
+ @logger.error(format % [config_path, $!.message])
60
+ end
61
+
62
+ def merge!(conf)
63
+ @id = conf["id"]
64
+ @tags = conf["tags"]
65
+ @version = conf["version"]
66
+ @licenses = conf["licenses"]
67
+
68
+ @author = AuthorConfiguration.new(@logger)
69
+ @author.merge!(conf["author"] || {})
70
+ end
71
+
72
+ def to_hash
73
+ config = {
74
+ "id" => @id,
75
+ "tags" => @tags,
76
+ "version" => version,
77
+ "licenses" => @licenses,
78
+ }
79
+ config["author"] = @author.to_hash if @author
80
+ config
81
+ end
82
+
83
+ def to_yaml
84
+ to_hash.to_yaml
85
+ end
86
+
87
+ def version
88
+ @version || default_version
89
+ end
90
+
91
+ def gem_name
92
+ "#{GEM_NAME_PREFIX}-#{@id}"
93
+ end
94
+
95
+ def path
96
+ "config.yaml"
97
+ end
98
+
99
+ private
100
+ def default_version
101
+ "1.0.0"
102
+ end
103
+ end
104
+ end
@@ -25,13 +25,13 @@ end
25
25
  match(TitleSlide, ContentSource) do |sources|
26
26
  sources.prop_set("size", @title_slide_content_source_font_size)
27
27
  sources.prop_set("style", "italic")
28
-
29
- sources.margin_bottom = @space
30
28
  end
31
29
 
32
30
  match(TitleSlide, Institution) do |institutions|
33
31
  institutions.prop_set("size", @title_slide_institution_font_size)
34
32
  institutions.prop_set("style", "italic")
33
+
34
+ institutions.margin_bottom = @space
35
35
  end
36
36
 
37
37
  match(TitleSlide, Place) do |places|
@@ -18,6 +18,7 @@ require 'erb'
18
18
 
19
19
  require 'rabbit/rabbit'
20
20
  require "rabbit/gem-finder"
21
+ require "rabbit/theme-configuration"
21
22
 
22
23
  module Rabbit
23
24
  module Theme
@@ -179,7 +180,7 @@ module Rabbit
179
180
  if valid_gem_name?(name)
180
181
  finder = GemFinder.new(logger)
181
182
  begin
182
- @spec = finder.find(name, "rabbit-theme-")
183
+ @spec = finder.find(name, "#{ThemeConfiguration::GEM_NAME_PREFIX}-")
183
184
  rescue Gem::GemNotFoundException
184
185
  end
185
186
  end
@@ -206,7 +207,7 @@ module Rabbit
206
207
 
207
208
  private
208
209
  def valid_gem_name?(name)
209
- /\A[a-z\d_\-]\z/i =~ name
210
+ /\A[a-z\d_\-]+\z/i =~ name
210
211
  end
211
212
  end
212
213
 
@@ -151,6 +151,7 @@ match(Slide) do |slides|
151
151
  headline_position = slide["headline-position"]
152
152
  next if headline_position.nil?
153
153
 
154
+ slide.horizontal_centering = false
154
155
  head = slide.headline
155
156
  head.horizontal_centering = false
156
157
  head.vertical_centering = false
@@ -182,6 +183,7 @@ match(Slide) do |slides|
182
183
  headline_align = slide["headline-align"]
183
184
  next if headline_align.nil?
184
185
 
186
+ slide.horizontal_centering = false
185
187
  slide.headline.horizontal_centering = false
186
188
  end
187
189
  end
@@ -23,9 +23,9 @@ match(Slide) do |slides|
23
23
  layout.set_width(w * Pango::SCALE)
24
24
  case @slide_number_position
25
25
  when :bottom
26
- number_y = canvas.height - @margin_bottom - text.height
26
+ number_y = canvas.height - slide.margin_bottom - text.height
27
27
  when :top
28
- number_y = @margin_top
28
+ number_y = slide.margin_top
29
29
  end
30
30
  canvas.draw_layout(text.layout, x, number_y, @slide_number_color)
31
31
  end
@@ -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.0.1"
18
+ VERSION = "2.0.2"
19
19
  end
data/po/rabbit.pot CHANGED
@@ -1,2589 +1,2718 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the rabbit package.
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
9
+ "Project-Id-Version: rabbit 2.0.1\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2011-07-13 20:40+0900\n"
12
- "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11
+ "POT-Creation-Date: 2012-08-31 23:10+0900\n"
12
+ "PO-Revision-Date: 2012-08-31 23:10+0900\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
20
 
20
- #: ../../lib/rabbit/info-window.rb:96
21
+ #: ../lib/rabbit/info-window.rb:98
21
22
  msgid "%s: Information window"
22
23
  msgstr ""
23
24
 
24
- #: ../../lib/rabbit/info-window.rb:177
25
+ #: ../lib/rabbit/info-window.rb:224
25
26
  msgid "unlimited"
26
27
  msgstr ""
27
28
 
28
- #: ../../lib/rabbit/logger/gui.rb:72
29
+ #: ../lib/rabbit/slideshare.rb:72
30
+ msgid "Enter password on SlideShare"
31
+ msgstr ""
32
+
33
+ #: ../lib/rabbit/slideshare.rb:100
34
+ msgid "Failed to upload: %s"
35
+ msgstr ""
36
+
37
+ #: ../lib/rabbit/logger/gui.rb:72
29
38
  msgid "Rabbit Error Dialog"
30
39
  msgstr ""
31
40
 
32
- #: ../../lib/rabbit/logger/base.rb:17
41
+ #: ../lib/rabbit/logger/base.rb:35
33
42
  msgid "DEBUG"
34
43
  msgstr ""
35
44
 
36
- #: ../../lib/rabbit/logger/base.rb:18
45
+ #: ../lib/rabbit/logger/base.rb:36
37
46
  msgid "INFO"
38
47
  msgstr ""
39
48
 
40
- #: ../../lib/rabbit/logger/base.rb:19
49
+ #: ../lib/rabbit/logger/base.rb:37
41
50
  msgid "WARNING"
42
51
  msgstr ""
43
52
 
44
- #: ../../lib/rabbit/logger/base.rb:20
53
+ #: ../lib/rabbit/logger/base.rb:38
45
54
  msgid "ERROR"
46
55
  msgstr ""
47
56
 
48
- #: ../../lib/rabbit/logger/base.rb:21
57
+ #: ../lib/rabbit/logger/base.rb:39
49
58
  msgid "FATAL"
50
59
  msgstr ""
51
60
 
52
- #: ../../lib/rabbit/logger/base.rb:22
61
+ #: ../lib/rabbit/logger/base.rb:40
53
62
  msgid "UNKNOWN"
54
63
  msgstr ""
55
64
 
56
- #: ../../lib/rabbit/logger/stderr.rb:16
65
+ #: ../lib/rabbit/logger/stderr.rb:16
57
66
  msgid "can't convert to current locale from UTF-8: %s"
58
67
  msgstr ""
59
68
 
60
- #: ../../lib/rabbit/image/pdf.rb:49
61
- msgid "%s page isn't exist in PDF"
69
+ #: ../lib/rabbit/command/rabbit-slide.rb:52 ../lib/rabbit/command/rabbit-theme.rb:47
70
+ msgid "See --help for example"
62
71
  msgstr ""
63
72
 
64
- #: ../../lib/rabbit/html/generator.rb:49
65
- msgid "Creating a image for the %dth page"
73
+ #: ../lib/rabbit/command/rabbit-slide.rb:69
74
+ msgid "Usage: %s new [options]\\n e.g.: %s new \\\\n --id rubykaigi2012 \\\\n --base-name rabbit-introduction \\\\n --markup-language rd \\\\n --name \"Kouhei Sutou\" \\\\n --email kou@cozmixng.org \\\\n --rubygems-user kou \\\\n --slideshare-user kou \\\\n --speaker-deck-user kou"
66
75
  msgstr ""
67
76
 
68
- #: ../../lib/rabbit/html/generator.rb:62
69
- msgid "can't generate RSS"
77
+ #: ../lib/rabbit/command/rabbit-slide.rb:85
78
+ msgid "Slide information"
70
79
  msgstr ""
71
80
 
72
- #: ../../lib/rabbit/html/generator.rb:390
73
- msgid "Slide"
81
+ #: ../lib/rabbit/command/rabbit-slide.rb:88
82
+ msgid "Slide ID"
74
83
  msgstr ""
75
84
 
76
- #: ../../lib/rabbit/html/generator.rb:392
77
- #: ../../lib/rabbit/element/index-slide.rb:103
78
- msgid "Index"
85
+ #: ../lib/rabbit/command/rabbit-slide.rb:89 ../lib/rabbit/command/rabbit-slide.rb:96
86
+ #: ../lib/rabbit/command/rabbit-slide.rb:108 ../lib/rabbit/command/rabbit-slide.rb:122
87
+ #: ../lib/rabbit/command/rabbit-slide.rb:130 ../lib/rabbit/command/rabbit-slide.rb:137
88
+ #: ../lib/rabbit/command/rabbit-slide.rb:144 ../lib/rabbit/command/rabbit-slide.rb:153
89
+ #: ../lib/rabbit/command/rabbit-slide.rb:166 ../lib/rabbit/command/rabbit-slide.rb:180
90
+ #: ../lib/rabbit/command/rabbit-slide.rb:194 ../lib/rabbit/command/rabbit-slide.rb:208
91
+ #: ../lib/rabbit/command/rabbit-theme.rb:80 ../lib/rabbit/command/rabbit-theme.rb:89
92
+ #: ../lib/rabbit/command/rabbit-theme.rb:102 ../lib/rabbit/command/rabbit-theme.rb:116
93
+ msgid "(e.g.: %s)"
79
94
  msgstr ""
80
95
 
81
- #: ../../lib/rabbit/html/generator.rb:399
82
- #: ../../lib/rabbit/theme/pdf/property.rb:2
83
- msgid "PDF"
96
+ #: ../lib/rabbit/command/rabbit-slide.rb:90 ../lib/rabbit/command/rabbit-slide.rb:97
97
+ #: ../lib/rabbit/command/rabbit-theme.rb:81
98
+ msgid "(must)"
84
99
  msgstr ""
85
100
 
86
- #: ../../lib/rabbit/html/generator.rb:403 ../../bin/rabbit:85
87
- msgid "Source"
101
+ #: ../lib/rabbit/command/rabbit-slide.rb:95
102
+ msgid "Base name for the slide source file and generated PDF file"
88
103
  msgstr ""
89
104
 
90
- #: ../../lib/rabbit/parser.rb:12
91
- msgid "unsupported format. (supported: %s)"
105
+ #: ../lib/rabbit/command/rabbit-slide.rb:107
106
+ msgid "Markup language for the new slide"
92
107
  msgstr ""
93
108
 
94
- #: ../../lib/rabbit/action/basic.rb:8
95
- msgid "Next"
109
+ #: ../lib/rabbit/command/rabbit-slide.rb:109
110
+ msgid "(available markup languages: %s)"
96
111
  msgstr ""
97
112
 
98
- #: ../../lib/rabbit/action/basic.rb:16
99
- msgid "Previous"
113
+ #: ../lib/rabbit/command/rabbit-slide.rb:112 ../lib/rabbit/command/rabbit-slide.rb:156
114
+ #: ../lib/rabbit/command/rabbit-slide.rb:169 ../lib/rabbit/command/rabbit-slide.rb:183
115
+ #: ../lib/rabbit/command/rabbit-slide.rb:197 ../lib/rabbit/command/rabbit-slide.rb:211
116
+ #: ../lib/rabbit/command/rabbit-theme.rb:92 ../lib/rabbit/command/rabbit-theme.rb:105
117
+ #: ../lib/rabbit/command/rabbit-theme.rb:119
118
+ msgid "(default: %s)"
100
119
  msgstr ""
101
120
 
102
- #: ../../lib/rabbit/action/basic.rb:24
103
- msgid "Next slide"
121
+ #: ../lib/rabbit/command/rabbit-slide.rb:114 ../lib/rabbit/command/rabbit-slide.rb:123
122
+ #: ../lib/rabbit/command/rabbit-slide.rb:131 ../lib/rabbit/command/rabbit-slide.rb:138
123
+ #: ../lib/rabbit/command/rabbit-slide.rb:145 ../lib/rabbit/command/rabbit-slide.rb:158
124
+ #: ../lib/rabbit/command/rabbit-slide.rb:171 ../lib/rabbit/command/rabbit-slide.rb:185
125
+ #: ../lib/rabbit/command/rabbit-slide.rb:199 ../lib/rabbit/command/rabbit-slide.rb:213
126
+ #: ../lib/rabbit/command/rabbit-theme.rb:94 ../lib/rabbit/command/rabbit-theme.rb:107
127
+ #: ../lib/rabbit/command/rabbit-theme.rb:121
128
+ msgid "(optional)"
104
129
  msgstr ""
105
130
 
106
- #: ../../lib/rabbit/action/basic.rb:32
107
- msgid "Previous slide"
131
+ #: ../lib/rabbit/command/rabbit-slide.rb:121
132
+ msgid "Title of the new slide"
108
133
  msgstr ""
109
134
 
110
- #: ../../lib/rabbit/action/basic.rb:40
111
- msgid "First slide"
135
+ #: ../lib/rabbit/command/rabbit-slide.rb:122
136
+ msgid "--title=\"Rabbit Introduction\""
112
137
  msgstr ""
113
138
 
114
- #: ../../lib/rabbit/action/basic.rb:48
115
- msgid "Last slide"
139
+ #: ../lib/rabbit/command/rabbit-slide.rb:129
140
+ msgid "Tags of the new slide"
116
141
  msgstr ""
117
142
 
118
- #: ../../lib/rabbit/action/basic.rb:58
119
- msgid "Jump to"
143
+ #: ../lib/rabbit/command/rabbit-slide.rb:136
144
+ msgid "Allotted time in presentaion"
120
145
  msgstr ""
121
146
 
122
- #: ../../lib/rabbit/action/basic.rb:75
123
- msgid "Save as image"
147
+ #: ../lib/rabbit/command/rabbit-slide.rb:143
148
+ msgid "Presentation date with the new slide"
124
149
  msgstr ""
125
150
 
126
- #: ../../lib/rabbit/action/basic.rb:83 ../../bin/rabbit:222
127
- msgid "Print"
151
+ #: ../lib/rabbit/command/rabbit-slide.rb:149 ../lib/rabbit/command/rabbit-theme.rb:85
152
+ msgid "Your information"
128
153
  msgstr ""
129
154
 
130
- #: ../../lib/rabbit/action/basic.rb:91
131
- msgid "Iconify"
155
+ #: ../lib/rabbit/command/rabbit-slide.rb:152 ../lib/rabbit/command/rabbit-theme.rb:88
156
+ msgid "Author name of the new slide"
132
157
  msgstr ""
133
158
 
134
- #: ../../lib/rabbit/action/basic.rb:102
135
- msgid "Change theme"
159
+ #: ../lib/rabbit/command/rabbit-slide.rb:165 ../lib/rabbit/command/rabbit-theme.rb:101
160
+ msgid "Author e-mail of the new slide"
136
161
  msgstr ""
137
162
 
138
- #: ../../lib/rabbit/action/basic.rb:112
139
- msgid "Merge theme"
163
+ #: ../lib/rabbit/command/rabbit-slide.rb:178 ../lib/rabbit/command/rabbit-slide.rb:192
164
+ #: ../lib/rabbit/command/rabbit-slide.rb:206 ../lib/rabbit/command/rabbit-theme.rb:114
165
+ msgid "Account for %s"
140
166
  msgstr ""
141
167
 
142
- #: ../../lib/rabbit/action/basic.rb:121
143
- msgid "Reload theme"
168
+ #: ../lib/rabbit/command/rabbit-slide.rb:179 ../lib/rabbit/command/rabbit-slide.rb:193
169
+ #: ../lib/rabbit/command/rabbit-slide.rb:207 ../lib/rabbit/command/rabbit-theme.rb:115
170
+ msgid "It is used to publish your slide to %s"
144
171
  msgstr ""
145
172
 
146
- #: ../../lib/rabbit/action/basic.rb:129
147
- msgid "Redraw"
173
+ #: ../lib/rabbit/command/rabbit-slide.rb:233 ../lib/rabbit/command/rabbit-theme.rb:140
174
+ msgid "too many commands: %s"
148
175
  msgstr ""
149
176
 
150
- #: ../../lib/rabbit/action/basic.rb:137
151
- msgid "Clear slide"
177
+ #: ../lib/rabbit/command/rabbit-slide.rb:238 ../lib/rabbit/command/rabbit-theme.rb:145
178
+ msgid "invalid command: <%s>: available commands: %s"
152
179
  msgstr ""
153
180
 
154
- #: ../../lib/rabbit/action/basic.rb:150
155
- msgid "_Quit"
181
+ #: ../lib/rabbit/command/rabbit-slide.rb:246 ../lib/rabbit/command/rabbit-slide.rb:252
182
+ #: ../lib/rabbit/command/rabbit-theme.rb:153
183
+ msgid "%s is missing"
156
184
  msgstr ""
157
185
 
158
- #: ../../lib/rabbit/action/basic.rb:151
159
- msgid "_Quit with confirmation"
186
+ #: ../lib/rabbit/command/rabbit-slide.rb:308
187
+ msgid "TODO: SLIDE TITLE"
160
188
  msgstr ""
161
189
 
162
- #: ../../lib/rabbit/action/basic.rb:158
163
- msgid "Now processing... Do you really quit?"
190
+ #: ../lib/rabbit/command/rabbit-slide.rb:310
191
+ msgid "TODO: SLIDE DESCRIPTION"
164
192
  msgstr ""
165
193
 
166
- #: ../../lib/rabbit/action/basic.rb:175
167
- msgid "Cache all slides"
194
+ #: ../lib/rabbit/command/rabbit-slide.rb:313 ../lib/rabbit/command/rabbit-theme.rb:203
195
+ msgid "For author"
168
196
  msgstr ""
169
197
 
170
- #: ../../lib/rabbit/action/basic.rb:182
171
- msgid "Graffiti"
198
+ #: ../lib/rabbit/command/rabbit-slide.rb:315 ../lib/rabbit/command/rabbit-slide.rb:331
199
+ #: ../lib/rabbit/command/rabbit-theme.rb:205 ../lib/rabbit/command/rabbit-theme.rb:221
200
+ #: ../lib/rabbit/action/radio.rb:37
201
+ msgid "Show"
172
202
  msgstr ""
173
203
 
174
- #: ../../lib/rabbit/action/basic.rb:190
175
- msgid "Clear graffiti"
204
+ #: ../lib/rabbit/command/rabbit-slide.rb:319 ../lib/rabbit/command/rabbit-theme.rb:209
205
+ msgid "Publish"
176
206
  msgstr ""
177
207
 
178
- #: ../../lib/rabbit/action/basic.rb:198
179
- msgid "Undo graffiti"
208
+ #: ../lib/rabbit/command/rabbit-slide.rb:324
209
+ msgid "For viewers"
180
210
  msgstr ""
181
211
 
182
- #: ../../lib/rabbit/action/basic.rb:206
183
- msgid "Change graffiti color"
212
+ #: ../lib/rabbit/command/rabbit-slide.rb:326 ../lib/rabbit/command/rabbit-theme.rb:216
213
+ msgid "Install"
184
214
  msgstr ""
185
215
 
186
- #: ../../lib/rabbit/action/basic.rb:224
187
- msgid "Reset adjustment"
216
+ #: ../lib/rabbit/command/rabbit-slide.rb:454 ../lib/rabbit/command/rabbit-slide.rb:463
217
+ msgid "TITLE"
188
218
  msgstr ""
189
219
 
190
- #: ../../lib/rabbit/action/basic.rb:232
191
- msgid "Reset timer"
220
+ #: ../lib/rabbit/command/rabbit-slide.rb:456
221
+ msgid "FIRST SLIDE"
192
222
  msgstr ""
193
223
 
194
- #: ../../lib/rabbit/action/basic.rb:240
195
- msgid "Expand hole"
224
+ #: ../lib/rabbit/command/rabbit-slide.rb:458
225
+ msgid "SECOND SLIDE"
196
226
  msgstr ""
197
227
 
198
- #: ../../lib/rabbit/action/basic.rb:247
199
- msgid "Narrow hole"
228
+ #: ../lib/rabbit/command/rabbit-slide.rb:469
229
+ msgid "SUBTITLE"
200
230
  msgstr ""
201
231
 
202
- #: ../../lib/rabbit/action/basic.rb:255
203
- msgid "Search slide forward"
232
+ #: ../lib/rabbit/command/rabbit-slide.rb:470
233
+ msgid "AUTHOR"
204
234
  msgstr ""
205
235
 
206
- #: ../../lib/rabbit/action/basic.rb:263
207
- msgid "Search slide backward"
236
+ #: ../lib/rabbit/command/rabbit-slide.rb:471
237
+ msgid "INSTITUTION"
208
238
  msgstr ""
209
239
 
210
- #: ../../lib/rabbit/action/basic.rb:271
211
- msgid "Search slide forward next"
240
+ #: ../lib/rabbit/command/rabbit-slide.rb:472
241
+ msgid "EVENT NAME"
212
242
  msgstr ""
213
243
 
214
- #: ../../lib/rabbit/action/basic.rb:279
215
- msgid "Search slide backward next"
244
+ #: ../lib/rabbit/command/rabbit-slide.rb:494
245
+ msgid "ITEM %d"
216
246
  msgstr ""
217
247
 
218
- #: ../../lib/rabbit/action/basic.rb:287
219
- msgid "Stop slide search"
248
+ #: ../lib/rabbit/command/rabbit.rb:142 ../lib/rabbit/theme-browser/tree.rb:54
249
+ #: ../lib/rabbit/theme/lightning-simple/property.rb:1 ../lib/rabbit/theme/cozmixng/property.rb:1
250
+ #: ../lib/rabbit/theme/blue-bar/property.rb:1 ../lib/rabbit/theme/lightning-clear-blue/property.rb:1
251
+ #: ../lib/rabbit/theme/enishi-green/property.rb:1 ../lib/rabbit/theme/clear-blue/property.rb:1
252
+ #: ../lib/rabbit/theme/ranguba/property.rb:1 ../lib/rabbit/theme/day-white/property.rb:1
253
+ #: ../lib/rabbit/theme/night-black/property.rb:1 ../lib/rabbit/theme/default/property.rb:1
254
+ #: ../lib/rabbit/theme/rabbit/property.rb:1 ../lib/rabbit/theme/blue-circle/property.rb:1
255
+ #: ../lib/rabbit/theme/lightning-rabbit/property.rb:1 ../lib/rabbit/theme/lightning-talk/property.rb:1
256
+ #: ../lib/rabbit/theme/debian/property.rb:1 ../lib/rabbit/theme/red-frame/property.rb:1
257
+ #: ../lib/rabbit/theme/nari/property.rb:1 ../lib/rabbit/theme/centering-rabbit/property.rb:1
258
+ #: ../lib/rabbit/theme/image-viewer/property.rb:1 ../lib/rabbit/theme/dark-gradation/property.rb:1
259
+ #: ../lib/rabbit/theme/green-circle/property.rb:1 ../lib/rabbit/theme/rubykaigi2011/property.rb:1
260
+ #: ../lib/rabbit/theme/ruby-gnome2/property.rb:1 ../lib/rabbit/theme/lightning-monochrome/property.rb:1
261
+ #: ../lib/rabbit/theme/pdf/property.rb:1
262
+ msgid "Theme"
220
263
  msgstr ""
221
264
 
222
- #: ../../lib/rabbit/action/basic.rb:301
223
- msgid "Log Level"
265
+ #: ../lib/rabbit/command/rabbit.rb:145 ../bin/rabbit-theme-manager:27
266
+ msgid "Add [PATH] to load path."
224
267
  msgstr ""
225
268
 
226
- #: ../../lib/rabbit/action/toggle.rb:12 ../../lib/rabbit/action/radio.rb:27
227
- msgid "Whiteout"
269
+ #: ../lib/rabbit/command/rabbit.rb:150
270
+ msgid "Use [THEME] as theme."
228
271
  msgstr ""
229
272
 
230
- #: ../../lib/rabbit/action/toggle.rb:23 ../../lib/rabbit/action/radio.rb:32
231
- msgid "Blackout"
273
+ #: ../lib/rabbit/command/rabbit.rb:157
274
+ msgid "Use [THEME] for comment."
232
275
  msgstr ""
233
276
 
234
- #: ../../lib/rabbit/action/toggle.rb:30
235
- msgid "Index mode"
277
+ #: ../lib/rabbit/command/rabbit.rb:163
278
+ msgid "Use [TIME] as allotted time."
236
279
  msgstr ""
237
280
 
238
- #: ../../lib/rabbit/action/toggle.rb:38
239
- msgid "Full screen"
281
+ #: ../lib/rabbit/command/rabbit.rb:169 ../lib/rabbit/html/generator.rb:404
282
+ msgid "Source"
240
283
  msgstr ""
241
284
 
242
- #: ../../lib/rabbit/action/toggle.rb:50
243
- msgid "Graffiti mode"
285
+ #: ../lib/rabbit/command/rabbit.rb:176
286
+ msgid "When select %s\\nspecify %s\\nas [SOURCE_INFOS]."
244
287
  msgstr ""
245
288
 
246
- #: ../../lib/rabbit/action/toggle.rb:58
247
- msgid "Information window"
289
+ #: ../lib/rabbit/command/rabbit.rb:183
290
+ msgid "Specify source type as [TYPE]."
248
291
  msgstr ""
249
292
 
250
- #: ../../lib/rabbit/action/toggle.rb:65
251
- msgid "Spotlight"
293
+ #: ../lib/rabbit/command/rabbit.rb:184 ../lib/rabbit/console.rb:165 ../lib/rabbit/console.rb:182
294
+ msgid "Select from [%s]."
252
295
  msgstr ""
253
296
 
254
- #: ../../lib/rabbit/action/toggle.rb:72
255
- msgid "Magnifier"
297
+ #: ../lib/rabbit/command/rabbit.rb:185
298
+ msgid "Note: case insensitive."
256
299
  msgstr ""
257
300
 
258
- #: ../../lib/rabbit/action/radio.rb:37
259
- msgid "Show"
301
+ #: ../lib/rabbit/command/rabbit.rb:199
302
+ msgid "Specify source encoding as [ENCODING]."
260
303
  msgstr ""
261
304
 
262
- #: ../../lib/rabbit/action/radio.rb:48
263
- #: ../../lib/rabbit/theme/show-frame/property.rb:1
264
- msgid "Debug"
305
+ #: ../lib/rabbit/command/rabbit.rb:200 ../lib/rabbit/command/rabbit.rb:206
306
+ #: ../lib/rabbit/command/rabbit.rb:367 ../lib/rabbit/command/rabbit.rb:374
307
+ #: ../lib/rabbit/command/rabbit.rb:381 ../lib/rabbit/command/rabbit.rb:388
308
+ #: ../lib/rabbit/command/rabbit.rb:413 ../lib/rabbit/command/rabbit.rb:420
309
+ #: ../lib/rabbit/command/rabbit.rb:427 ../lib/rabbit/command/rabbit.rb:434
310
+ #: ../lib/rabbit/command/rabbit.rb:555 ../lib/rabbit/console.rb:150
311
+ msgid "(auto)"
265
312
  msgstr ""
266
313
 
267
- #: ../../lib/rabbit/action/radio.rb:53
268
- msgid "Info"
314
+ #: ../lib/rabbit/command/rabbit.rb:205
315
+ msgid "Specify base URI or path of source as [BASE]."
269
316
  msgstr ""
270
317
 
271
- #: ../../lib/rabbit/action/radio.rb:58
272
- msgid "Warning"
318
+ #: ../lib/rabbit/command/rabbit.rb:211
319
+ msgid "Initial state"
273
320
  msgstr ""
274
321
 
275
- #: ../../lib/rabbit/action/radio.rb:63
276
- msgid "Error"
322
+ #: ../lib/rabbit/command/rabbit.rb:214
323
+ msgid "Toggle full screen mode."
277
324
  msgstr ""
278
325
 
279
- #: ../../lib/rabbit/action/radio.rb:68
280
- msgid "Fatal"
326
+ #: ../lib/rabbit/command/rabbit.rb:220
327
+ msgid "Toggle index mode."
281
328
  msgstr ""
282
329
 
283
- #: ../../lib/rabbit/action/radio.rb:73
284
- msgid "Unknown"
330
+ #: ../lib/rabbit/command/rabbit.rb:226
331
+ msgid "Size"
285
332
  msgstr ""
286
333
 
287
- #: ../../lib/rabbit/stock.rb:17 ../../lib/rabbit/theme/rabbit/property.rb:2
288
- msgid "Rabbit"
334
+ #: ../lib/rabbit/command/rabbit.rb:229
335
+ msgid "Set window geometry [GEOMETRY]."
289
336
  msgstr ""
290
337
 
291
- #: ../../lib/rabbit/theme-browser/page.rb:96
292
- msgid "Go back"
338
+ #: ../lib/rabbit/command/rabbit.rb:230
339
+ msgid "Format: WIDTHxHEIGHT+X+Y"
293
340
  msgstr ""
294
341
 
295
- #: ../../lib/rabbit/theme-browser/page.rb:101
296
- msgid "Go forward"
342
+ #: ../lib/rabbit/command/rabbit.rb:237 ../bin/rabbit-theme-manager:43
343
+ msgid "Set window width to [WIDTH]."
297
344
  msgstr ""
298
345
 
299
- #: ../../lib/rabbit/theme-browser/page.rb:112
300
- msgid "Go up"
346
+ #: ../lib/rabbit/command/rabbit.rb:244 ../bin/rabbit-theme-manager:50
347
+ msgid "Set window height to [HEIGHT]."
301
348
  msgstr ""
302
349
 
303
- #: ../../lib/rabbit/theme-browser/page.rb:119
304
- msgid "Reload"
350
+ #: ../lib/rabbit/command/rabbit.rb:249 ../bin/rabbit-theme-manager:55
351
+ msgid "Set window width and height to\\n[WIDTH] and [HEIGHT]."
305
352
  msgstr ""
306
353
 
307
- #: ../../lib/rabbit/theme-browser/tree.rb:54
308
- #: ../../lib/rabbit/theme/lightning-simple/property.rb:1
309
- #: ../../lib/rabbit/theme/cozmixng/property.rb:1
310
- #: ../../lib/rabbit/theme/blue-bar/property.rb:1
311
- #: ../../lib/rabbit/theme/lightning-clear-blue/property.rb:1
312
- #: ../../lib/rabbit/theme/clear-blue/property.rb:1
313
- #: ../../lib/rabbit/theme/ranguba/property.rb:1
314
- #: ../../lib/rabbit/theme/day-white/property.rb:1
315
- #: ../../lib/rabbit/theme/night-black/property.rb:1
316
- #: ../../lib/rabbit/theme/default/property.rb:1
317
- #: ../../lib/rabbit/theme/rabbit/property.rb:1
318
- #: ../../lib/rabbit/theme/blue-circle/property.rb:1
319
- #: ../../lib/rabbit/theme/pdf-tortoise-and-hare/property.rb:1
320
- #: ../../lib/rabbit/theme/lightning-rabbit/property.rb:1
321
- #: ../../lib/rabbit/theme/lightning-talk/property.rb:1
322
- #: ../../lib/rabbit/theme/debian/property.rb:1
323
- #: ../../lib/rabbit/theme/red-frame/property.rb:1
324
- #: ../../lib/rabbit/theme/centering-rabbit/property.rb:1
325
- #: ../../lib/rabbit/theme/image-viewer/property.rb:1
326
- #: ../../lib/rabbit/theme/dark-gradation/property.rb:1
327
- #: ../../lib/rabbit/theme/green-circle/property.rb:1
328
- #: ../../lib/rabbit/theme/ruby-gnome2/property.rb:1
329
- #: ../../lib/rabbit/theme/lightning-monochrome/property.rb:1
330
- #: ../../lib/rabbit/theme/pdf/property.rb:1 ../../bin/rabbit:70
331
- msgid "Theme"
354
+ #: ../lib/rabbit/command/rabbit.rb:262
355
+ msgid "Save"
332
356
  msgstr ""
333
357
 
334
- #: ../../lib/rabbit/theme-browser/document.rb:110
335
- msgid "Images"
358
+ #: ../lib/rabbit/command/rabbit.rb:265
359
+ msgid "Save as image and exit."
336
360
  msgstr ""
337
361
 
338
- #: ../../lib/rabbit/menu.rb:61
339
- msgid "Jump to the %dth slide"
362
+ #: ../lib/rabbit/command/rabbit.rb:270
363
+ msgid "Specify saved image type as [TYPE]."
340
364
  msgstr ""
341
365
 
342
- #: ../../lib/rabbit/twitter.rb:28
343
- msgid ""
344
- "twitter_oauth gem is missing. Install it by 'gem install twitter_oauth'."
366
+ #: ../lib/rabbit/command/rabbit.rb:277
367
+ msgid "Specify saved image base name as [BASE_NAME]."
345
368
  msgstr ""
346
369
 
347
- #: ../../lib/rabbit/twitter.rb:56
348
- msgid ""
349
- "twitter-stream gem is missing. Install it by 'gem install twitter-stream'."
370
+ #: ../lib/rabbit/command/rabbit.rb:278 ../lib/rabbit/command/rabbit.rb:316
371
+ msgid "Title of slide"
350
372
  msgstr ""
351
373
 
352
- #: ../../lib/rabbit/console.rb:44
353
- msgid "Usage: %s [options]"
374
+ #: ../lib/rabbit/command/rabbit.rb:283
375
+ msgid "Output HTML for viewing saved images."
354
376
  msgstr ""
355
377
 
356
- #: ../../lib/rabbit/console.rb:59
357
- msgid "Common options"
378
+ #: ../lib/rabbit/command/rabbit.rb:289
379
+ msgid "Output index HTML for navigating slides."
358
380
  msgstr ""
359
381
 
360
- #: ../../lib/rabbit/console.rb:68
361
- msgid "Specify locale dir as [DIR]."
382
+ #: ../lib/rabbit/command/rabbit.rb:295
383
+ msgid "Specify base URI of RSS as [URI]."
362
384
  msgstr ""
363
385
 
364
- #: ../../lib/rabbit/console.rb:69 ../../bin/rabbit:116 ../../bin/rabbit:122
365
- #: ../../bin/rabbit:282 ../../bin/rabbit:289 ../../bin/rabbit:296
366
- #: ../../bin/rabbit:303 ../../bin/rabbit:328 ../../bin/rabbit:335
367
- #: ../../bin/rabbit:342 ../../bin/rabbit:349 ../../bin/rabbit:480
368
- msgid "(auto)"
386
+ #: ../lib/rabbit/command/rabbit.rb:296
387
+ msgid "RSS is generated only when HTML is output."
369
388
  msgstr ""
370
389
 
371
- #: ../../lib/rabbit/console.rb:83
372
- msgid "Specify logger type as [TYPE]."
390
+ #: ../lib/rabbit/command/rabbit.rb:302
391
+ msgid "Specify source filenam as [FILENAME]."
373
392
  msgstr ""
374
393
 
375
- #: ../../lib/rabbit/console.rb:84 ../../lib/rabbit/console.rb:101
376
- #: ../../bin/rabbit:100
377
- msgid "Select from [%s]."
394
+ #: ../lib/rabbit/command/rabbit.rb:307 ../lib/rabbit/action/basic.rb:83
395
+ msgid "Print"
378
396
  msgstr ""
379
397
 
380
- #: ../../lib/rabbit/console.rb:100
381
- msgid "Specify log level as [LEVEL]."
398
+ #: ../lib/rabbit/command/rabbit.rb:310
399
+ msgid "Print and exit."
382
400
  msgstr ""
383
401
 
384
- #: ../../lib/rabbit/console.rb:110
385
- msgid "Show this message."
402
+ #: ../lib/rabbit/command/rabbit.rb:315
403
+ msgid "Specify printed out filename as [FILENAME]."
386
404
  msgstr ""
387
405
 
388
- #: ../../lib/rabbit/console.rb:114
389
- msgid "Show version."
406
+ #: ../lib/rabbit/command/rabbit.rb:322
407
+ msgid "Set slides per page."
390
408
  msgstr ""
391
409
 
392
- #: ../../lib/rabbit/theme/slide-show/property.rb:1
393
- #: ../../lib/rabbit/theme/clock/property.rb:1
394
- #: ../../lib/rabbit/theme/timer/property.rb:1
395
- #: ../../lib/rabbit/theme/image-timer/property.rb:1
396
- msgid "Time"
410
+ #: ../lib/rabbit/command/rabbit.rb:328
411
+ msgid "Draw scaled image."
397
412
  msgstr ""
398
413
 
399
- #: ../../lib/rabbit/theme/slide-show/property.rb:2
400
- msgid "Slide Show"
414
+ #: ../lib/rabbit/command/rabbit.rb:329
415
+ msgid "Better look for displaying but lesser look for printing."
401
416
  msgstr ""
402
417
 
403
- #: ../../lib/rabbit/theme/slide-show/property.rb:3
404
- msgid "Toolkit to do slide show"
418
+ #: ../lib/rabbit/command/rabbit.rb:334
419
+ msgid "Paper"
405
420
  msgstr ""
406
421
 
407
- #: ../../lib/rabbit/theme/slide-show/property.rb:4
408
- msgid "Move to the next slide automatically."
422
+ #: ../lib/rabbit/command/rabbit.rb:338
423
+ msgid "Set paper width to [WIDTH] Pt."
409
424
  msgstr ""
410
425
 
411
- #: ../../lib/rabbit/theme/lightning-simple/property.rb:2
412
- msgid "LightningTalk-Simple"
426
+ #: ../lib/rabbit/command/rabbit.rb:339
427
+ msgid "(landscape A4 width)"
413
428
  msgstr ""
414
429
 
415
- #: ../../lib/rabbit/theme/lightning-simple/property.rb:3
416
- msgid "Lightning Talk theme simple version"
430
+ #: ../lib/rabbit/command/rabbit.rb:345
431
+ msgid "Set paper height to [HEIGHT] Pt."
417
432
  msgstr ""
418
433
 
419
- #: ../../lib/rabbit/theme/auto-slide/auto-slide.rb:1
420
- #: ../../lib/rabbit/theme/applier.rb:603
421
- #: ../../lib/rabbit/theme/slide-background/slide-background.rb:1
422
- msgid "%s is deprecated. Use %s instead."
434
+ #: ../lib/rabbit/command/rabbit.rb:346
435
+ msgid "(landscape A4 height)"
423
436
  msgstr ""
424
437
 
425
- #: ../../lib/rabbit/theme/auto-slide/property.rb:1
426
- #: ../../lib/rabbit/theme/slide-background/property.rb:1
427
- msgid "Backward compatibility"
438
+ #: ../lib/rabbit/command/rabbit.rb:350
439
+ msgid "Set paper width and height to\\n[WIDTH] Pt and [HEIGHT] Pt."
428
440
  msgstr ""
429
441
 
430
- #: ../../lib/rabbit/theme/auto-slide/property.rb:2
431
- msgid "Auto Slide"
442
+ #: ../lib/rabbit/command/rabbit.rb:352
443
+ msgid "(landscape A4 size)"
432
444
  msgstr ""
433
445
 
434
- #: ../../lib/rabbit/theme/auto-slide/property.rb:3
435
- msgid "Backward compatibility theme for ((<slide-show>))"
446
+ #: ../lib/rabbit/command/rabbit.rb:362
447
+ msgid "Margin"
436
448
  msgstr ""
437
449
 
438
- #: ../../lib/rabbit/theme/auto-slide/property.rb:4
439
- msgid "See ((<slide-show>))"
450
+ #: ../lib/rabbit/command/rabbit.rb:366
451
+ msgid "Set left margin for slides per page mode print."
440
452
  msgstr ""
441
453
 
442
- #: ../../lib/rabbit/theme/title-on-image-toolkit/property.rb:1
443
- #: ../../lib/rabbit/theme/default-preformatted/property.rb:1
444
- #: ../../lib/rabbit/theme/edge-info-toolkit/property.rb:1
445
- #: ../../lib/rabbit/theme/tag/property.rb:1
446
- #: ../../lib/rabbit/theme/default-title-text/property.rb:1
447
- #: ../../lib/rabbit/theme/default-item-mark-setup/property.rb:1
448
- #: ../../lib/rabbit/theme/default-title-slide/property.rb:1
449
- #: ../../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:1
450
- #: ../../lib/rabbit/theme/title-logo/property.rb:1
451
- #: ../../lib/rabbit/theme/syntax-highlighting/property.rb:1
452
- #: ../../lib/rabbit/theme/image/property.rb:1
453
- #: ../../lib/rabbit/theme/default-foot-text/property.rb:1
454
- #: ../../lib/rabbit/theme/default-text/property.rb:1
455
- #: ../../lib/rabbit/theme/table/property.rb:1
456
- #: ../../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:1
457
- #: ../../lib/rabbit/theme/color-circle-slide/property.rb:1
458
- #: ../../lib/rabbit/theme/base/property.rb:1
459
- #: ../../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:1
460
- #: ../../lib/rabbit/theme/default-block-quote/property.rb:1
461
- #: ../../lib/rabbit/theme/color-circle-common/property.rb:1
462
- #: ../../lib/rabbit/theme/emphasize-keyword/property.rb:1
463
- #: ../../lib/rabbit/theme/rabbit-powered-by/property.rb:1
464
- #: ../../lib/rabbit/theme/ruby-gnome2-icon/property.rb:1
465
- #: ../../lib/rabbit/theme/ruby-gnome2-description/property.rb:1
466
- #: ../../lib/rabbit/theme/cozmixng-powered-by/property.rb:1
467
- #: ../../lib/rabbit/theme/color-circle-title-text/property.rb:1
468
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:1
469
- #: ../../lib/rabbit/theme/default-description/property.rb:1
470
- #: ../../lib/rabbit/theme/ruby-gnome2-headline/property.rb:1
471
- #: ../../lib/rabbit/theme/color-circle-title-slide/property.rb:1
472
- #: ../../lib/rabbit/theme/color-circle-description/property.rb:1
473
- #: ../../lib/rabbit/theme/default-icon/property.rb:1
474
- #: ../../lib/rabbit/theme/color-circle-foot-text/property.rb:1
475
- #: ../../lib/rabbit/theme/default-item-mark/property.rb:1
476
- #: ../../lib/rabbit/theme/per-slide-background-image/property.rb:1
477
- #: ../../lib/rabbit/theme/color-circle/property.rb:1
478
- #: ../../lib/rabbit/theme/rabbit-item-mark/property.rb:1
479
- #: ../../lib/rabbit/theme/color-circle-method-list/property.rb:1
480
- #: ../../lib/rabbit/theme/ruby-gnome2-slide/property.rb:1
481
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:1
482
- #: ../../lib/rabbit/theme/slide-number/property.rb:1
483
- #: ../../lib/rabbit/theme/icon/property.rb:1
484
- #: ../../lib/rabbit/theme/color-circle-block-quote/property.rb:1
485
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:1
486
- #: ../../lib/rabbit/theme/title-background-color/property.rb:1
487
- #: ../../lib/rabbit/theme/footer-logo/property.rb:1
488
- #: ../../lib/rabbit/theme/powered-by/property.rb:1
489
- #: ../../lib/rabbit/theme/rabbit-headline-logo/property.rb:1
490
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:1
491
- #: ../../lib/rabbit/theme/default-method-list/property.rb:1
492
- #: ../../lib/rabbit/theme/simple-item-mark/property.rb:1
493
- #: ../../lib/rabbit/theme/rabbit-block-quote/property.rb:1
494
- #: ../../lib/rabbit/theme/slide-logo/property.rb:1
495
- #: ../../lib/rabbit/theme/title-background-image/property.rb:1
496
- #: ../../lib/rabbit/theme/rabbit-icon/property.rb:1
497
- #: ../../lib/rabbit/theme/color-circle-text/property.rb:1
498
- #: ../../lib/rabbit/theme/default-slide/property.rb:1
499
- #: ../../lib/rabbit/theme/color-circle-item-mark/property.rb:1
500
- #: ../../lib/rabbit/theme/lightning-talk-toolkit/property.rb:1
501
- #: ../../lib/rabbit/theme/color-circle-preformatted/property.rb:1
502
- #: ../../lib/rabbit/theme/rabbit-title-logo/property.rb:1
503
- #: ../../lib/rabbit/theme/title-shadow/property.rb:1
504
- #: ../../lib/rabbit/theme/per-slide-background-color/property.rb:1
505
- #: ../../lib/rabbit/theme/headline-logo/property.rb:1
506
- msgid "Toolkit"
454
+ #: ../lib/rabbit/command/rabbit.rb:373
455
+ msgid "Set right margin for slides per page mode print."
507
456
  msgstr ""
508
457
 
509
- #: ../../lib/rabbit/theme/title-on-image-toolkit/property.rb:2
510
- msgid "Title on Image Toolkit"
458
+ #: ../lib/rabbit/command/rabbit.rb:380
459
+ msgid "Set top margin for slides per page mode print."
511
460
  msgstr ""
512
461
 
513
- #: ../../lib/rabbit/theme/title-on-image-toolkit/property.rb:3
514
- msgid "Displays title on image"
462
+ #: ../lib/rabbit/command/rabbit.rb:387
463
+ msgid "Set bottom margin for slides per page mode print."
515
464
  msgstr ""
516
465
 
517
- #: ../../lib/rabbit/theme/cozmixng/property.rb:2
518
- msgid "COZMIXNG"
466
+ #: ../lib/rabbit/command/rabbit.rb:392
467
+ msgid "[ALL]"
519
468
  msgstr ""
520
469
 
521
- #: ../../lib/rabbit/theme/cozmixng/property.rb:3
522
- msgid "COZMIXNG theme"
470
+ #: ../lib/rabbit/command/rabbit.rb:393
471
+ msgid "[TOP_BOTTOM],[LEFT_RIGHT]"
523
472
  msgstr ""
524
473
 
525
- #: ../../lib/rabbit/theme/default-preformatted/property.rb:2
526
- msgid "Default Preformatted"
474
+ #: ../lib/rabbit/command/rabbit.rb:394
475
+ msgid "[TOP],[LEFT_RIGHT],[BOTTOM]"
527
476
  msgstr ""
528
477
 
529
- #: ../../lib/rabbit/theme/default-preformatted/property.rb:3
530
- msgid "Displays preformatted text with frame."
478
+ #: ../lib/rabbit/command/rabbit.rb:395
479
+ msgid "[TOP],[RIGHT],[BOTTOM],[LEFT]"
531
480
  msgstr ""
532
481
 
533
- #: ../../lib/rabbit/theme/edge-info-toolkit/property.rb:2
534
- msgid "Edge Info Toolkit"
482
+ #: ../lib/rabbit/command/rabbit.rb:398
483
+ msgid "Set margin for slides per page mode print."
535
484
  msgstr ""
536
485
 
537
- #: ../../lib/rabbit/theme/edge-info-toolkit/property.rb:3
538
- msgid "Displays information with line at the edge of slide."
486
+ #: ../lib/rabbit/command/rabbit.rb:412
487
+ msgid "Set left page margin."
539
488
  msgstr ""
540
489
 
541
- #: ../../lib/rabbit/theme/newline-in-title/property.rb:1
542
- #: ../../lib/rabbit/theme/newline-in-slides/property.rb:1
543
- msgid "Convenience"
490
+ #: ../lib/rabbit/command/rabbit.rb:419
491
+ msgid "Set right page margin."
544
492
  msgstr ""
545
493
 
546
- #: ../../lib/rabbit/theme/newline-in-title/property.rb:2
547
- msgid "Newline in Title"
494
+ #: ../lib/rabbit/command/rabbit.rb:426
495
+ msgid "Set top page margin."
548
496
  msgstr ""
549
497
 
550
- #: ../../lib/rabbit/theme/newline-in-title/property.rb:3
551
- #: ../../lib/rabbit/theme/newline-in-slides/property.rb:3
552
- msgid ""
553
- "Convenience '\n"
554
- "' newline notation."
498
+ #: ../lib/rabbit/command/rabbit.rb:433
499
+ msgid "Set bottom page margin."
555
500
  msgstr ""
556
501
 
557
- #: ../../lib/rabbit/theme/newline-in-title/property.rb:4
558
- msgid ""
559
- "Enable '\n"
560
- "' notation to insert newline in title."
502
+ #: ../lib/rabbit/command/rabbit.rb:440
503
+ msgid "Set page margin."
561
504
  msgstr ""
562
505
 
563
- #: ../../lib/rabbit/theme/tag/property.rb:2
564
- msgid "Tag"
506
+ #: ../lib/rabbit/command/rabbit.rb:452
507
+ msgid "dRuby"
565
508
  msgstr ""
566
509
 
567
- #: ../../lib/rabbit/theme/tag/property.rb:3
568
- msgid "Toolkit to apply custom tag"
510
+ #: ../lib/rabbit/command/rabbit.rb:455
511
+ msgid "Specify whether to use dRuby."
569
512
  msgstr ""
570
513
 
571
- #: ../../lib/rabbit/theme/tag/property.rb:4
572
- msgid "Applies custom tag style."
514
+ #: ../lib/rabbit/command/rabbit.rb:461
515
+ msgid "Specify dRuby URI."
573
516
  msgstr ""
574
517
 
575
- #: ../../lib/rabbit/theme/scroll-effect/property.rb:1
576
- #: ../../lib/rabbit/theme/rotate-zoom-effect/property.rb:1
577
- #: ../../lib/rabbit/theme/mirror-effect/property.rb:1
578
- msgid "Effect"
518
+ #: ../lib/rabbit/command/rabbit.rb:467
519
+ msgid "Specify whether to output dRuby URI."
579
520
  msgstr ""
580
521
 
581
- #: ../../lib/rabbit/theme/scroll-effect/property.rb:2
582
- msgid "Scroll Effect"
522
+ #: ../lib/rabbit/command/rabbit.rb:472
523
+ msgid "SOAP"
583
524
  msgstr ""
584
525
 
585
- #: ../../lib/rabbit/theme/scroll-effect/property.rb:3
586
- msgid "Provide scroll_effect method that scrolls content."
526
+ #: ../lib/rabbit/command/rabbit.rb:475
527
+ msgid "Specify whether to use SOAP."
587
528
  msgstr ""
588
529
 
589
- #: ../../lib/rabbit/theme/default-title-text/property.rb:2
590
- msgid "Default Title Text"
530
+ #: ../lib/rabbit/command/rabbit.rb:481
531
+ msgid "Specify SOAP host as [HOST]."
591
532
  msgstr ""
592
533
 
593
- #: ../../lib/rabbit/theme/default-title-text/property.rb:3
594
- msgid "Sets default title text style up."
534
+ #: ../lib/rabbit/command/rabbit.rb:488
535
+ msgid "Specify SOAP port as [PORT]."
595
536
  msgstr ""
596
537
 
597
- #: ../../lib/rabbit/theme/blue-bar/property.rb:2
598
- msgid "Blue Bar"
538
+ #: ../lib/rabbit/command/rabbit.rb:493
539
+ msgid "XML-RPC"
599
540
  msgstr ""
600
541
 
601
- #: ../../lib/rabbit/theme/blue-bar/property.rb:3
602
- msgid "Blue bar theme"
542
+ #: ../lib/rabbit/command/rabbit.rb:496
543
+ msgid "Specify whether to use XML-RPC."
603
544
  msgstr ""
604
545
 
605
- #: ../../lib/rabbit/theme/default-item-mark-setup/default-item-mark-setup.rb:31
606
- msgid ""
607
- "unknown item mark type: %s\n"
608
- "Rectangle type is used as fallback"
546
+ #: ../lib/rabbit/command/rabbit.rb:502
547
+ msgid "Specify XML-RPC host as [HOST]."
609
548
  msgstr ""
610
549
 
611
- #: ../../lib/rabbit/theme/default-item-mark-setup/default-item-mark-setup.rb:81
612
- msgid ""
613
- "unknown enumeration item mark type: %s\n"
614
- "Numeric type is used as fallback"
550
+ #: ../lib/rabbit/command/rabbit.rb:509
551
+ msgid "Specify XML-RPC port as [PORT]."
615
552
  msgstr ""
616
553
 
617
- #: ../../lib/rabbit/theme/default-item-mark-setup/property.rb:2
618
- msgid "Default Item Mark Setup"
554
+ #: ../lib/rabbit/command/rabbit.rb:514
555
+ msgid "Server"
619
556
  msgstr ""
620
557
 
621
- #: ../../lib/rabbit/theme/default-item-mark-setup/property.rb:3
622
- msgid "Provides methods to set item mark style up."
558
+ #: ../lib/rabbit/command/rabbit.rb:517
559
+ msgid "Specify whether to run as server."
623
560
  msgstr ""
624
561
 
625
- #: ../../lib/rabbit/theme/default-title-slide/property.rb:2
626
- msgid "DefaultTitleSlide"
562
+ #: ../lib/rabbit/command/rabbit.rb:522
563
+ msgid "Public level"
627
564
  msgstr ""
628
565
 
629
- #: ../../lib/rabbit/theme/default-title-slide/property.rb:3
630
- msgid "Toolkit to locate objects in the title slide in a simple way"
566
+ #: ../lib/rabbit/command/rabbit.rb:529
567
+ msgid "Specify public level."
631
568
  msgstr ""
632
569
 
633
- #: ../../lib/rabbit/theme/default-title-slide/property.rb:4
634
- msgid ""
635
- "Locates objects in the title slide simply by centering them and by making "
636
- "configuration for margins around them a little."
570
+ #: ../lib/rabbit/command/rabbit.rb:530
571
+ msgid "Select from the following:"
637
572
  msgstr ""
638
573
 
639
- #: ../../lib/rabbit/theme/lightning-clear-blue/property.rb:2
640
- msgid "Lightning Clear Blue"
574
+ #: ../lib/rabbit/command/rabbit.rb:539 ../lib/rabbit/command/rabbit.rb:564
575
+ #: ../lib/rabbit/command/rabbit.rb:571
576
+ msgid "(%s)"
641
577
  msgstr ""
642
578
 
643
- #: ../../lib/rabbit/theme/lightning-clear-blue/property.rb:3
644
- msgid "Clear blue theme with Lightning Talk theme"
579
+ #: ../lib/rabbit/command/rabbit.rb:544 ../lib/rabbit/theme/stream-comment/property.rb:1
580
+ #: ../lib/rabbit/theme/clutter-comment/property.rb:1 ../lib/rabbit/theme/footer-comment/property.rb:1
581
+ msgid "Comment"
645
582
  msgstr ""
646
583
 
647
- #: ../../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:2
648
- msgid "Ruby-GNOME2 Preformatted"
584
+ #: ../lib/rabbit/command/rabbit.rb:547 ../lib/rabbit/command/rabbit.rb:553
585
+ msgid "Deprecated. Just ignored."
649
586
  msgstr ""
650
587
 
651
- #: ../../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:3
652
- msgid "Displays preformatted text with Ruby-GNOME2 style."
588
+ #: ../lib/rabbit/command/rabbit.rb:548
589
+ msgid "Specify initial comment source."
653
590
  msgstr ""
654
591
 
655
- #: ../../lib/rabbit/theme/title-logo/title-logo.rb:4
656
- #: ../../lib/rabbit/theme/slide-logo/slide-logo.rb:4
657
- msgid "must specify %s!!!"
592
+ #: ../lib/rabbit/command/rabbit.rb:549
593
+ msgid "(default source)"
658
594
  msgstr ""
659
595
 
660
- #: ../../lib/rabbit/theme/title-logo/property.rb:2
661
- msgid "TitleLogo"
596
+ #: ../lib/rabbit/command/rabbit.rb:554
597
+ msgid "Specify comment source encoding."
662
598
  msgstr ""
663
599
 
664
- #: ../../lib/rabbit/theme/title-logo/property.rb:3
665
- msgid "Toolkit to display an image as a logo in the title slide"
600
+ #: ../lib/rabbit/command/rabbit.rb:558
601
+ msgid "Migemo"
666
602
  msgstr ""
667
603
 
668
- #: ../../lib/rabbit/theme/title-logo/property.rb:4
669
- msgid "Displays an image as a logo in the title slide."
604
+ #: ../lib/rabbit/command/rabbit.rb:563
605
+ msgid "Specify search paths for Migemo static dictionary."
670
606
  msgstr ""
671
607
 
672
- #: ../../lib/rabbit/theme/title-logo/property.rb:7
673
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:7
674
- #: ../../lib/rabbit/theme/title-background-color/property.rb:7
675
- #: ../../lib/rabbit/theme/footer-logo/property.rb:7
676
- #: ../../lib/rabbit/theme/slide-logo/property.rb:7
677
- #: ../../lib/rabbit/theme/title-background-image/property.rb:8
678
- #: ../../lib/rabbit/theme/headline-logo/property.rb:7
679
- msgid "(Must be specified.)"
608
+ #: ../lib/rabbit/command/rabbit.rb:570
609
+ msgid "Specify static dictionary name for Migemo."
680
610
  msgstr ""
681
611
 
682
- #: ../../lib/rabbit/theme/title-logo/property.rb:8
683
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:8
684
- #: ../../lib/rabbit/theme/icon/property.rb:22
685
- #: ../../lib/rabbit/theme/footer-logo/property.rb:8
686
- #: ../../lib/rabbit/theme/slide-logo/property.rb:8
687
- #: ../../lib/rabbit/theme/title-background-image/property.rb:9
688
- #: ../../lib/rabbit/theme/headline-logo/property.rb:8
689
- msgid "Image file name."
612
+ #: ../lib/rabbit/command/rabbit.rb:575
613
+ msgid "3D"
690
614
  msgstr ""
691
615
 
692
- #: ../../lib/rabbit/theme/title-logo/property.rb:12
693
- msgid ""
694
- "Position of the logo. The logo will be set at the upper-right corner when "
695
- "'(({:right}))', and at the upper-left corner when '(({:left}))'."
616
+ #: ../lib/rabbit/command/rabbit.rb:578
617
+ msgid "Specify whether to use OpenGL if available."
696
618
  msgstr ""
697
619
 
698
- #: ../../lib/rabbit/theme/title-logo/property.rb:19
699
- #: ../../lib/rabbit/theme/clock/property.rb:17
700
- #: ../../lib/rabbit/theme/slide-number/property.rb:17
701
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:60
702
- #: ../../lib/rabbit/theme/show-frame/property.rb:12
703
- msgid ""
704
- "Whether uninstalling this toolkit or not. This option is useful for cases "
705
- "you do not want to make the toolkit work for certain slides."
620
+ #: ../lib/rabbit/command/rabbit.rb:583
621
+ msgid "Display"
706
622
  msgstr ""
707
623
 
708
- #: ../../lib/rabbit/theme/syntax-highlighting/property.rb:2
709
- msgid "Syntax Highlighting"
624
+ #: ../lib/rabbit/command/rabbit.rb:586
625
+ msgid "Specify whether to keep above window."
710
626
  msgstr ""
711
627
 
712
- #: ../../lib/rabbit/theme/syntax-highlighting/property.rb:3
713
- msgid "Toolkit to apply syntax highlighting tag"
628
+ #: ../lib/rabbit/command/rabbit.rb:591
629
+ msgid "Others"
714
630
  msgstr ""
715
631
 
716
- #: ../../lib/rabbit/theme/syntax-highlighting/property.rb:4
717
- msgid "Applies syntax highlighting tag style."
632
+ #: ../lib/rabbit/command/rabbit.rb:594
633
+ msgid "Show a native window ID of the Rabbit window if available."
718
634
  msgstr ""
719
635
 
720
- #: ../../lib/rabbit/theme/slide-background/property.rb:2
721
- msgid "SlideBackground"
636
+ #: ../lib/rabbit/command/rabbit.rb:595
637
+ msgid "e.g. The ID is the ID of X resource on X window system."
722
638
  msgstr ""
723
639
 
724
- #: ../../lib/rabbit/theme/slide-background/property.rb:3
725
- msgid "Backward compatibility theme for ((<slide-background-image>))"
640
+ #: ../lib/rabbit/command/rabbit.rb:636
641
+ msgid "Choose a Rabbit source file"
726
642
  msgstr ""
727
643
 
728
- #: ../../lib/rabbit/theme/slide-background/property.rb:4
729
- msgid "See ((<slide-background-image>))"
644
+ #: ../lib/rabbit/command/rabbit.rb:752
645
+ msgid "dRuby URI <%s> is in use."
730
646
  msgstr ""
731
647
 
732
- #: ../../lib/rabbit/theme/image/property.rb:2
733
- #: ../../data/rabbit/image/rabbit-images/property.rb:1
734
- #: ../../data/rabbit/image/ruby-images/property.rb:1
735
- #: ../../data/rabbit/image/clear-blue-images/property.rb:1
736
- #: ../../data/rabbit/image/cozmixng-images/property.rb:1
737
- #: ../../data/rabbit/image/dark-gradation-images/property.rb:1
738
- #: ../../data/rabbit/image/debian-images/property.rb:1
739
- msgid "Image"
648
+ #: ../lib/rabbit/command/rabbit.rb:771
649
+ msgid "port <%s> for SOAP is in use."
740
650
  msgstr ""
741
651
 
742
- #: ../../lib/rabbit/theme/image/property.rb:3
743
- msgid "image rendering"
652
+ #: ../lib/rabbit/command/rabbit.rb:792
653
+ msgid "port <%s> for XML-RPC is in use."
744
654
  msgstr ""
745
655
 
746
- #: ../../lib/rabbit/theme/default-foot-text/property.rb:2
747
- msgid "Default Foot Text"
656
+ #: ../lib/rabbit/command/rabbit.rb:853
657
+ msgid "Window ID: %d"
748
658
  msgstr ""
749
659
 
750
- #: ../../lib/rabbit/theme/default-foot-text/property.rb:3
751
- msgid "Displays foot text at the footer of slide."
660
+ #: ../lib/rabbit/command/rabbit.rb:899
661
+ msgid "going to shutdown..."
752
662
  msgstr ""
753
663
 
754
- #: ../../lib/rabbit/theme/default-text/property.rb:2
755
- msgid "Default Text"
664
+ #: ../lib/rabbit/command/rabbit.rb:901
665
+ msgid "DRb.thread done."
756
666
  msgstr ""
757
667
 
758
- #: ../../lib/rabbit/theme/default-text/property.rb:3
759
- msgid "Sets default text style up."
668
+ #: ../lib/rabbit/command/rabbit-theme.rb:64
669
+ msgid "Usage: %s new [options]\\n e.g.: %s new \\\\n --id rubykaigi2012 \\\\n --name \"Kouhei Sutou\" \\\\n --email kou@cozmixng.org \\\\n --rubygems-user kou"
760
670
  msgstr ""
761
671
 
762
- #: ../../lib/rabbit/theme/table/property.rb:2
763
- msgid "Table"
672
+ #: ../lib/rabbit/command/rabbit-theme.rb:76
673
+ msgid "Theme information"
764
674
  msgstr ""
765
675
 
766
- #: ../../lib/rabbit/theme/table/property.rb:3
767
- msgid "table rendering"
676
+ #: ../lib/rabbit/command/rabbit-theme.rb:79
677
+ msgid "Theme ID"
768
678
  msgstr ""
769
679
 
770
- #: ../../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:2
771
- msgid "Ruby-GNOME2 Foot Text"
680
+ #: ../lib/rabbit/command/rabbit-theme.rb:198
681
+ msgid "TODO: THEME TITLE"
772
682
  msgstr ""
773
683
 
774
- #: ../../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:3
775
- msgid "Displays foot text at the footer of slide with Ruby-GNOME2 style."
684
+ #: ../lib/rabbit/command/rabbit-theme.rb:200
685
+ msgid "TODO: THEME DESCRIPTION"
776
686
  msgstr ""
777
687
 
778
- #: ../../lib/rabbit/theme/stream-comment/property.rb:1
779
- #: ../../lib/rabbit/theme/twitter-comment/property.rb:1
780
- #: ../../lib/rabbit/theme/clutter-comment/property.rb:1
781
- #: ../../lib/rabbit/theme/footer-comment/property.rb:1 ../../bin/rabbit:469
782
- msgid "Comment"
688
+ #: ../lib/rabbit/command/rabbit-theme.rb:214
689
+ msgid "For users"
783
690
  msgstr ""
784
691
 
785
- #: ../../lib/rabbit/theme/stream-comment/property.rb:2
786
- msgid "Stream Comment"
692
+ #: ../lib/rabbit/command/rabbit-theme.rb:223 ../lib/rabbit/task/theme.rb:49 ../lib/rabbit/task/theme.rb:86
693
+ msgid "rabbit-theme-benchmark-en.gem"
787
694
  msgstr ""
788
695
 
789
- #: ../../lib/rabbit/theme/stream-comment/property.rb:3
790
- msgid "Stream comments on canvas."
696
+ #: ../lib/rabbit/image/pdf.rb:49
697
+ msgid "%s page isn't exist in PDF"
791
698
  msgstr ""
792
699
 
793
- #: ../../lib/rabbit/theme/color-circle-slide/property.rb:2
794
- msgid "Color Circle Slide"
700
+ #: ../lib/rabbit/html/generator.rb:50
701
+ msgid "Creating a image for the %dth page"
795
702
  msgstr ""
796
703
 
797
- #: ../../lib/rabbit/theme/color-circle-slide/property.rb:3
798
- msgid "Toolkit to set ((<color-circle>)) theme's slide style up."
704
+ #: ../lib/rabbit/html/generator.rb:63
705
+ msgid "can't generate RSS"
799
706
  msgstr ""
800
707
 
801
- #: ../../lib/rabbit/theme/base/property.rb:2
802
- msgid "Base"
708
+ #: ../lib/rabbit/html/generator.rb:391
709
+ msgid "Slide"
803
710
  msgstr ""
804
711
 
805
- #: ../../lib/rabbit/theme/base/property.rb:3
806
- msgid "Define default variables"
712
+ #: ../lib/rabbit/html/generator.rb:393 ../lib/rabbit/element/index-slide.rb:103
713
+ msgid "Index"
807
714
  msgstr ""
808
715
 
809
- #: ../../lib/rabbit/theme/base/property.rb:4
810
- msgid "This theme is always included at the first."
716
+ #: ../lib/rabbit/html/generator.rb:400 ../lib/rabbit/theme/pdf/property.rb:2
717
+ msgid "PDF"
811
718
  msgstr ""
812
719
 
813
- #: ../../lib/rabbit/theme/clear-blue/property.rb:2
814
- msgid "Clear Blue"
720
+ #: ../lib/rabbit/parser.rb:14
721
+ msgid "unsupported format. (supported: %s)"
815
722
  msgstr ""
816
723
 
817
- #: ../../lib/rabbit/theme/clear-blue/property.rb:3
818
- msgid "Clear blue theme"
724
+ #: ../lib/rabbit/action/basic.rb:8
725
+ msgid "Next"
819
726
  msgstr ""
820
727
 
821
- #: ../../lib/rabbit/theme/ranguba/property.rb:2
822
- msgid "Ranguba"
728
+ #: ../lib/rabbit/action/basic.rb:16
729
+ msgid "Previous"
823
730
  msgstr ""
824
731
 
825
- #: ../../lib/rabbit/theme/ranguba/property.rb:3
826
- msgid "Ranguba theme"
732
+ #: ../lib/rabbit/action/basic.rb:24
733
+ msgid "Next slide"
827
734
  msgstr ""
828
735
 
829
- #: ../../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:2
830
- msgid "RubyGNOME2ItemMark"
736
+ #: ../lib/rabbit/action/basic.rb:32
737
+ msgid "Previous slide"
831
738
  msgstr ""
832
739
 
833
- #: ../../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:3
834
- msgid ""
835
- "Toolkit to display list items like ones in the website of the Ruby-GNOME2 "
836
- "Project"
740
+ #: ../lib/rabbit/action/basic.rb:40
741
+ msgid "First slide"
837
742
  msgstr ""
838
743
 
839
- #: ../../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:5
840
- msgid ""
841
- "Displays list items like ones in the website of the Ruby-GNOME2 Project; i."
842
- "e. displays text of the first-level items colored blue and underlined, the "
843
- "second- and third-level items marked with black squares and circles."
744
+ #: ../lib/rabbit/action/basic.rb:48
745
+ msgid "Last slide"
844
746
  msgstr ""
845
747
 
846
- #: ../../lib/rabbit/theme/twitter-comment/property.rb:2
847
- msgid "Twitter Comment"
748
+ #: ../lib/rabbit/action/basic.rb:58
749
+ msgid "Jump to"
848
750
  msgstr ""
849
751
 
850
- #: ../../lib/rabbit/theme/twitter-comment/property.rb:3
851
- #: ../../lib/rabbit/theme/twitter-comment/property.rb:4
852
- msgid "Get comments from Twitter TL."
752
+ #: ../lib/rabbit/action/basic.rb:75
753
+ msgid "Save as image"
853
754
  msgstr ""
854
755
 
855
- #: ../../lib/rabbit/theme/default-block-quote/default-block-quote.rb:111
856
- msgid "[cited from `%s']"
756
+ #: ../lib/rabbit/action/basic.rb:91
757
+ msgid "Iconify"
857
758
  msgstr ""
858
759
 
859
- #: ../../lib/rabbit/theme/default-block-quote/property.rb:2
860
- msgid "Default Block Quote"
760
+ #: ../lib/rabbit/action/basic.rb:102
761
+ msgid "Change theme"
861
762
  msgstr ""
862
763
 
863
- #: ../../lib/rabbit/theme/default-block-quote/property.rb:3
864
- msgid "Displays block quote text with frame."
764
+ #: ../lib/rabbit/action/basic.rb:112
765
+ msgid "Merge theme"
865
766
  msgstr ""
866
767
 
867
- #: ../../lib/rabbit/theme/day-white/property.rb:2
868
- msgid "Day White"
768
+ #: ../lib/rabbit/action/basic.rb:121
769
+ msgid "Reload theme"
869
770
  msgstr ""
870
771
 
871
- #: ../../lib/rabbit/theme/day-white/property.rb:3
872
- msgid "Day White theme"
772
+ #: ../lib/rabbit/action/basic.rb:129
773
+ msgid "Redraw"
873
774
  msgstr ""
874
775
 
875
- #: ../../lib/rabbit/theme/night-black/property.rb:2
876
- msgid "Night Black"
776
+ #: ../lib/rabbit/action/basic.rb:137
777
+ msgid "Clear slide"
877
778
  msgstr ""
878
779
 
879
- #: ../../lib/rabbit/theme/night-black/property.rb:3
880
- msgid "Night Black theme"
780
+ #: ../lib/rabbit/action/basic.rb:150
781
+ msgid "_Quit"
881
782
  msgstr ""
882
783
 
883
- #: ../../lib/rabbit/theme/color-circle-common/property.rb:2
884
- msgid "Color Circle common"
784
+ #: ../lib/rabbit/action/basic.rb:151
785
+ msgid "_Quit with confirmation"
885
786
  msgstr ""
886
787
 
887
- #: ../../lib/rabbit/theme/color-circle-common/property.rb:3
888
- msgid "Provide common methods for Color Circle toolkit."
788
+ #: ../lib/rabbit/action/basic.rb:158
789
+ msgid "Now processing... Do you really quit?"
889
790
  msgstr ""
890
791
 
891
- #: ../../lib/rabbit/theme/default/property.rb:2
892
- msgid "Default"
792
+ #: ../lib/rabbit/action/basic.rb:175
793
+ msgid "Cache all slides"
893
794
  msgstr ""
894
795
 
895
- #: ../../lib/rabbit/theme/default/property.rb:3
896
- msgid "default theme"
796
+ #: ../lib/rabbit/action/basic.rb:182
797
+ msgid "Graffiti"
897
798
  msgstr ""
898
799
 
899
- #: ../../lib/rabbit/theme/emphasize-keyword/property.rb:2
900
- msgid "Emphasize Keyword"
800
+ #: ../lib/rabbit/action/basic.rb:190
801
+ msgid "Clear graffiti"
901
802
  msgstr ""
902
803
 
903
- #: ../../lib/rabbit/theme/emphasize-keyword/property.rb:3
904
- msgid ""
905
- "Provides emphasize_keyword method that markups specified keyword as emphasis "
906
- "text."
804
+ #: ../lib/rabbit/action/basic.rb:198
805
+ msgid "Undo graffiti"
907
806
  msgstr ""
908
807
 
909
- #: ../../lib/rabbit/theme/rabbit/property.rb:3
910
- msgid "Rabbit theme"
808
+ #: ../lib/rabbit/action/basic.rb:206
809
+ msgid "Change graffiti color"
911
810
  msgstr ""
912
811
 
913
- #: ../../lib/rabbit/theme/rabbit-powered-by/property.rb:2
914
- msgid "RabbitPoweredBy"
812
+ #: ../lib/rabbit/action/basic.rb:224
813
+ msgid "Reset adjustment"
915
814
  msgstr ""
916
815
 
917
- #: ../../lib/rabbit/theme/rabbit-powered-by/property.rb:3
918
- msgid "Powered-by-Rabbit ad toolkit"
816
+ #: ../lib/rabbit/action/basic.rb:232
817
+ msgid "Reset timer"
919
818
  msgstr ""
920
819
 
921
- #: ../../lib/rabbit/theme/rabbit-powered-by/property.rb:4
922
- msgid ""
923
- "Displays a text and an image showing the presentation slides are powered by "
924
- "Rabbit and COZMIXNG at the foot of the title slide and of the last slide."
820
+ #: ../lib/rabbit/action/basic.rb:240
821
+ msgid "Expand hole"
925
822
  msgstr ""
926
823
 
927
- #: ../../lib/rabbit/theme/blue-circle/property.rb:2
928
- msgid "Blue Circle"
824
+ #: ../lib/rabbit/action/basic.rb:247
825
+ msgid "Narrow hole"
929
826
  msgstr ""
930
827
 
931
- #: ../../lib/rabbit/theme/blue-circle/property.rb:3
932
- msgid "Blue Circle theme"
828
+ #: ../lib/rabbit/action/basic.rb:255
829
+ msgid "Search slide forward"
933
830
  msgstr ""
934
831
 
935
- #: ../../lib/rabbit/theme/clock/property.rb:2
936
- msgid "TextClock"
832
+ #: ../lib/rabbit/action/basic.rb:263
833
+ msgid "Search slide backward"
937
834
  msgstr ""
938
835
 
939
- #: ../../lib/rabbit/theme/clock/property.rb:3
940
- msgid "Clock toolkit, a text version"
836
+ #: ../lib/rabbit/action/basic.rb:271
837
+ msgid "Search slide forward next"
941
838
  msgstr ""
942
839
 
943
- #: ../../lib/rabbit/theme/clock/property.rb:4
944
- msgid "Displays current time with text."
840
+ #: ../lib/rabbit/action/basic.rb:279
841
+ msgid "Search slide backward next"
945
842
  msgstr ""
946
843
 
947
- #: ../../lib/rabbit/theme/clock/property.rb:13
948
- msgid "Properties for the clock, such as font family."
844
+ #: ../lib/rabbit/action/basic.rb:287
845
+ msgid "Stop slide search"
949
846
  msgstr ""
950
847
 
951
- #: ../../lib/rabbit/theme/ruby-gnome2-icon/property.rb:2
952
- msgid "RubyGNOME2Icon"
848
+ #: ../lib/rabbit/action/basic.rb:301
849
+ msgid "Log Level"
953
850
  msgstr ""
954
851
 
955
- #: ../../lib/rabbit/theme/ruby-gnome2-icon/property.rb:3
956
- msgid "Toolkit to use a pink circle as icons"
852
+ #: ../lib/rabbit/action/toggle.rb:12 ../lib/rabbit/action/radio.rb:27
853
+ msgid "Whiteout"
957
854
  msgstr ""
958
855
 
959
- #: ../../lib/rabbit/theme/ruby-gnome2-icon/property.rb:4
960
- msgid "Uses a pink circle as icons."
856
+ #: ../lib/rabbit/action/toggle.rb:23 ../lib/rabbit/action/radio.rb:32
857
+ msgid "Blackout"
961
858
  msgstr ""
962
859
 
963
- #: ../../lib/rabbit/theme/timer/property.rb:2
964
- msgid "TextTimer"
860
+ #: ../lib/rabbit/action/toggle.rb:30
861
+ msgid "Index mode"
965
862
  msgstr ""
966
863
 
967
- #: ../../lib/rabbit/theme/timer/property.rb:3
968
- msgid "text version timer"
864
+ #: ../lib/rabbit/action/toggle.rb:38
865
+ msgid "Full screen"
969
866
  msgstr ""
970
867
 
971
- #: ../../lib/rabbit/theme/ruby-gnome2-description/property.rb:2
972
- msgid "RubyGNOME2Description"
868
+ #: ../lib/rabbit/action/toggle.rb:50
869
+ msgid "Graffiti mode"
973
870
  msgstr ""
974
871
 
975
- #: ../../lib/rabbit/theme/ruby-gnome2-description/property.rb:3
976
- msgid ""
977
- "Toolkit to display description-list items like ones in the website of the "
978
- "Ruby-GNOME2 Project"
872
+ #: ../lib/rabbit/action/toggle.rb:58
873
+ msgid "Information window"
979
874
  msgstr ""
980
875
 
981
- #: ../../lib/rabbit/theme/ruby-gnome2-description/property.rb:5
982
- msgid ""
983
- "Displays description-list items like ones in the website of the Ruby-GNOME2 "
984
- "Project; i.e. displays their text colored blue."
876
+ #: ../lib/rabbit/action/toggle.rb:65
877
+ msgid "Spotlight"
985
878
  msgstr ""
986
879
 
987
- #: ../../lib/rabbit/theme/pdf-tortoise-and-hare/property.rb:2
988
- msgid "PDF with The Tortoise and The Hare"
880
+ #: ../lib/rabbit/action/toggle.rb:72
881
+ msgid "Magnifier"
989
882
  msgstr ""
990
883
 
991
- #: ../../lib/rabbit/theme/pdf-tortoise-and-hare/property.rb:3
992
- msgid "Theme for PDF with The Tortoise and The Hare"
884
+ #: ../lib/rabbit/action/radio.rb:48 ../lib/rabbit/theme/show-frame/property.rb:1
885
+ msgid "Debug"
993
886
  msgstr ""
994
887
 
995
- #: ../../lib/rabbit/theme/cozmixng-powered-by/property.rb:2
996
- msgid "COZMIXNGPoweredBy"
888
+ #: ../lib/rabbit/action/radio.rb:53
889
+ msgid "Info"
997
890
  msgstr ""
998
891
 
999
- #: ../../lib/rabbit/theme/cozmixng-powered-by/property.rb:3
1000
- msgid "Powered-by-COZMIXNG ad toolkit"
892
+ #: ../lib/rabbit/action/radio.rb:58
893
+ msgid "Warning"
1001
894
  msgstr ""
1002
895
 
1003
- #: ../../lib/rabbit/theme/cozmixng-powered-by/property.rb:4
1004
- msgid ""
1005
- "Displays a text and images showing the presentation slides are powered by "
1006
- "COZMIXNG and Rabbit at the foot of the title slide and of the last slide."
896
+ #: ../lib/rabbit/action/radio.rb:63
897
+ msgid "Error"
1007
898
  msgstr ""
1008
899
 
1009
- #: ../../lib/rabbit/theme/rotate-zoom-effect/property.rb:2
1010
- msgid "Rotate Zoom Effect"
900
+ #: ../lib/rabbit/action/radio.rb:68
901
+ msgid "Fatal"
1011
902
  msgstr ""
1012
903
 
1013
- #: ../../lib/rabbit/theme/rotate-zoom-effect/property.rb:3
1014
- msgid "Provide rotate_zoom_effect method that rotates and zooms content."
904
+ #: ../lib/rabbit/action/radio.rb:73
905
+ msgid "Unknown"
1015
906
  msgstr ""
1016
907
 
1017
- #: ../../lib/rabbit/theme/color-circle-title-text/property.rb:2
1018
- msgid "Color Circle Title text"
908
+ #: ../lib/rabbit/gem-finder.rb:46
909
+ msgid "Installing gem: %s"
1019
910
  msgstr ""
1020
911
 
1021
- #: ../../lib/rabbit/theme/color-circle-title-text/property.rb:3
1022
- msgid "Toolkit to set ((<color-circle>)) theme's title text style up."
912
+ #: ../lib/rabbit/gem-finder.rb:49
913
+ msgid "Installing gem in user install mode: %s"
1023
914
  msgstr ""
1024
915
 
1025
- #: ../../lib/rabbit/theme/lightning-rabbit/property.rb:2
1026
- msgid "LightningRabbit"
916
+ #: ../lib/rabbit/stock.rb:17 ../lib/rabbit/theme/rabbit/property.rb:2
917
+ msgid "Rabbit"
1027
918
  msgstr ""
1028
919
 
1029
- #: ../../lib/rabbit/theme/lightning-rabbit/property.rb:3
1030
- msgid "Rabbit theme with Lightning Talk theme"
920
+ #: ../lib/rabbit/theme-browser/page.rb:96
921
+ msgid "Go back"
1031
922
  msgstr ""
1032
923
 
1033
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:2
1034
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:2
1035
- msgid "Slide Footer Info"
924
+ #: ../lib/rabbit/theme-browser/page.rb:101
925
+ msgid "Go forward"
1036
926
  msgstr ""
1037
927
 
1038
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:3
1039
- msgid "Toolkit to display information at the footer"
928
+ #: ../lib/rabbit/theme-browser/page.rb:112
929
+ msgid "Go up"
1040
930
  msgstr ""
1041
931
 
1042
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:4
1043
- msgid "Displays information with a line at the footer of slides."
932
+ #: ../lib/rabbit/theme-browser/page.rb:119
933
+ msgid "Reload"
1044
934
  msgstr ""
1045
935
 
1046
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:8
1047
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:8
1048
- msgid "Line color."
936
+ #: ../lib/rabbit/theme-browser/document.rb:110
937
+ msgid "Images"
1049
938
  msgstr ""
1050
939
 
1051
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:12
1052
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:12
1053
- msgid "Line width."
940
+ #: ../lib/rabbit/menu.rb:61
941
+ msgid "Jump to the %dth slide"
1054
942
  msgstr ""
1055
943
 
1056
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:15
1057
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:15
1058
- msgid "white <-> black gradation"
944
+ #: ../lib/rabbit/console.rb:114
945
+ msgid "Usage: %s [options]"
1059
946
  msgstr ""
1060
947
 
1061
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:16
1062
- msgid ""
1063
- "Line fill pattern. @slide_footer_info_line_color is ignored if this "
1064
- "parameter is specified."
948
+ #: ../lib/rabbit/console.rb:129
949
+ msgid "Common options"
1065
950
  msgstr ""
1066
951
 
1067
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:21
1068
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:21
1069
- msgid "Text size."
952
+ #: ../lib/rabbit/console.rb:139
953
+ msgid "Load options from FILE."
1070
954
  msgstr ""
1071
955
 
1072
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:25
1073
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:25
1074
- msgid "x-axis margin."
956
+ #: ../lib/rabbit/console.rb:140
957
+ msgid "(none)"
1075
958
  msgstr ""
1076
959
 
1077
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:29
1078
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:29
1079
- msgid "Text color."
960
+ #: ../lib/rabbit/console.rb:149
961
+ msgid "Specify locale dir as [DIR]."
1080
962
  msgstr ""
1081
963
 
1082
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:33
1083
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:33
1084
- msgid "Whether show a text over line or not."
964
+ #: ../lib/rabbit/console.rb:164
965
+ msgid "Specify logger type as [TYPE]."
1085
966
  msgstr ""
1086
967
 
1087
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:37
1088
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:37
1089
- msgid "Base y-axis position to stroke line."
968
+ #: ../lib/rabbit/console.rb:181
969
+ msgid "Specify log level as [LEVEL]."
1090
970
  msgstr ""
1091
971
 
1092
- #: ../../lib/rabbit/theme/slide-footer-info/property.rb:41
1093
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:41
1094
- #: ../../lib/rabbit/theme/footer-logo/property.rb:24
1095
- #: ../../lib/rabbit/theme/slide-logo/property.rb:24
1096
- msgid "Whether uninstall this theme or not."
972
+ #: ../lib/rabbit/console.rb:191
973
+ msgid "Show this message."
1097
974
  msgstr ""
1098
975
 
1099
- #: ../../lib/rabbit/theme/default-description/property.rb:2
1100
- msgid "DefaultDescription"
976
+ #: ../lib/rabbit/console.rb:195
977
+ msgid "Show version."
1101
978
  msgstr ""
1102
979
 
1103
- #: ../../lib/rabbit/theme/default-description/property.rb:3
1104
- msgid "Toolkit to display description-list items with orange underlines."
980
+ #: ../lib/rabbit/theme/slide-show/property.rb:1 ../lib/rabbit/theme/clock/property.rb:1
981
+ #: ../lib/rabbit/theme/timer/property.rb:1 ../lib/rabbit/theme/image-timer/property.rb:1
982
+ msgid "Time"
1105
983
  msgstr ""
1106
984
 
1107
- #: ../../lib/rabbit/theme/default-description/property.rb:5
1108
- msgid "Displays description-list items with orange underlines."
985
+ #: ../lib/rabbit/theme/slide-show/property.rb:2
986
+ msgid "Slide Show"
1109
987
  msgstr ""
1110
988
 
1111
- #: ../../lib/rabbit/theme/ruby-gnome2-headline/property.rb:2
1112
- msgid "RubyGNOME2Headline"
989
+ #: ../lib/rabbit/theme/slide-show/property.rb:3
990
+ msgid "Toolkit to do slide show"
1113
991
  msgstr ""
1114
992
 
1115
- #: ../../lib/rabbit/theme/ruby-gnome2-headline/property.rb:3
1116
- msgid ""
1117
- "Toolkit to display headlines like those in the website of the Ruby-GNOME2 "
1118
- "Project"
993
+ #: ../lib/rabbit/theme/slide-show/property.rb:4
994
+ msgid "Move to the next slide automatically."
1119
995
  msgstr ""
1120
996
 
1121
- #: ../../lib/rabbit/theme/ruby-gnome2-headline/property.rb:5
1122
- msgid ""
1123
- "Displays headlines like ones in the website of the Ruby-GNOME2 Project; i.e. "
1124
- "displays their text colored white and placed in the dark red boxes with pink "
1125
- "frames."
997
+ #: ../lib/rabbit/theme/lightning-simple/property.rb:2
998
+ msgid "LightningTalk-Simple"
1126
999
  msgstr ""
1127
1000
 
1128
- #: ../../lib/rabbit/theme/color-circle-title-slide/property.rb:2
1129
- msgid "Color Circle Title Slide"
1001
+ #: ../lib/rabbit/theme/lightning-simple/property.rb:3
1002
+ msgid "Lightning Talk theme simple version"
1130
1003
  msgstr ""
1131
1004
 
1132
- #: ../../lib/rabbit/theme/color-circle-title-slide/property.rb:3
1133
- msgid "Toolkit to set ((<color-circle>)) theme's title slide style up."
1005
+ #: ../lib/rabbit/theme/auto-slide/auto-slide.rb:1 ../lib/rabbit/theme/applier.rb:604
1006
+ #: ../lib/rabbit/theme/slide-background/slide-background.rb:1
1007
+ msgid "%s is deprecated. Use %s instead."
1134
1008
  msgstr ""
1135
1009
 
1136
- #: ../../lib/rabbit/theme/color-circle-description/property.rb:2
1137
- msgid "Color Circle Description"
1010
+ #: ../lib/rabbit/theme/auto-slide/property.rb:1 ../lib/rabbit/theme/slide-background/property.rb:1
1011
+ msgid "Backward compatibility"
1138
1012
  msgstr ""
1139
1013
 
1140
- #: ../../lib/rabbit/theme/color-circle-description/property.rb:3
1141
- msgid "Toolkit to set ((<color-circle>)) theme's description-list style up."
1014
+ #: ../lib/rabbit/theme/auto-slide/property.rb:2
1015
+ msgid "Auto Slide"
1142
1016
  msgstr ""
1143
1017
 
1144
- #: ../../lib/rabbit/theme/default-icon/property.rb:2
1145
- msgid "DefaultIcon"
1018
+ #: ../lib/rabbit/theme/auto-slide/property.rb:3
1019
+ msgid "Backward compatibility theme for ((<slide-show>))"
1146
1020
  msgstr ""
1147
1021
 
1148
- #: ../../lib/rabbit/theme/default-icon/property.rb:3
1149
- msgid "Toolkit to use pink circle and polygon as icons"
1022
+ #: ../lib/rabbit/theme/auto-slide/property.rb:4
1023
+ msgid "See ((<slide-show>))"
1150
1024
  msgstr ""
1151
1025
 
1152
- #: ../../lib/rabbit/theme/default-icon/property.rb:4
1153
- msgid "Uses pink circle and polygon as icons."
1026
+ #: ../lib/rabbit/theme/title-on-image-toolkit/property.rb:1 ../lib/rabbit/theme/default-preformatted/property.rb:1
1027
+ #: ../lib/rabbit/theme/edge-info-toolkit/property.rb:1 ../lib/rabbit/theme/tag/property.rb:1
1028
+ #: ../lib/rabbit/theme/default-title-text/property.rb:1 ../lib/rabbit/theme/default-item-mark-setup/property.rb:1
1029
+ #: ../lib/rabbit/theme/default-title-slide/property.rb:1 ../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:1
1030
+ #: ../lib/rabbit/theme/title-logo/property.rb:1 ../lib/rabbit/theme/syntax-highlighting/property.rb:1
1031
+ #: ../lib/rabbit/theme/image/property.rb:1 ../lib/rabbit/theme/default-foot-text/property.rb:1
1032
+ #: ../lib/rabbit/theme/default-text/property.rb:1 ../lib/rabbit/theme/table/property.rb:1
1033
+ #: ../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:1 ../lib/rabbit/theme/color-circle-slide/property.rb:1
1034
+ #: ../lib/rabbit/theme/base/property.rb:1 ../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:1
1035
+ #: ../lib/rabbit/theme/default-block-quote/property.rb:1 ../lib/rabbit/theme/color-circle-common/property.rb:1
1036
+ #: ../lib/rabbit/theme/emphasize-keyword/property.rb:1 ../lib/rabbit/theme/rabbit-powered-by/property.rb:1
1037
+ #: ../lib/rabbit/theme/ruby-gnome2-icon/property.rb:1 ../lib/rabbit/theme/ruby-gnome2-description/property.rb:1
1038
+ #: ../lib/rabbit/theme/cozmixng-powered-by/property.rb:1 ../lib/rabbit/theme/color-circle-title-text/property.rb:1
1039
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:1 ../lib/rabbit/theme/default-description/property.rb:1
1040
+ #: ../lib/rabbit/theme/ruby-gnome2-headline/property.rb:1 ../lib/rabbit/theme/color-circle-title-slide/property.rb:1
1041
+ #: ../lib/rabbit/theme/color-circle-description/property.rb:1 ../lib/rabbit/theme/default-icon/property.rb:1
1042
+ #: ../lib/rabbit/theme/color-circle-foot-text/property.rb:1 ../lib/rabbit/theme/default-item-mark/property.rb:1
1043
+ #: ../lib/rabbit/theme/per-slide-background-image/property.rb:1 ../lib/rabbit/theme/color-circle/property.rb:1
1044
+ #: ../lib/rabbit/theme/rabbit-item-mark/property.rb:1 ../lib/rabbit/theme/color-circle-method-list/property.rb:1
1045
+ #: ../lib/rabbit/theme/ruby-gnome2-slide/property.rb:1 ../lib/rabbit/theme/slide-background-image/property.rb:1
1046
+ #: ../lib/rabbit/theme/default-comment/property.rb:1 ../lib/rabbit/theme/slide-number/property.rb:1
1047
+ #: ../lib/rabbit/theme/icon/property.rb:1 ../lib/rabbit/theme/color-circle-block-quote/property.rb:1
1048
+ #: ../lib/rabbit/theme/slide-header-info/property.rb:1 ../lib/rabbit/theme/title-background-color/property.rb:1
1049
+ #: ../lib/rabbit/theme/footer-logo/property.rb:1 ../lib/rabbit/theme/powered-by/property.rb:1
1050
+ #: ../lib/rabbit/theme/rabbit-headline-logo/property.rb:1 ../lib/rabbit/theme/image-slide-number/property.rb:1
1051
+ #: ../lib/rabbit/theme/default-method-list/property.rb:1 ../lib/rabbit/theme/simple-item-mark/property.rb:1
1052
+ #: ../lib/rabbit/theme/rabbit-block-quote/property.rb:1 ../lib/rabbit/theme/slide-logo/property.rb:1
1053
+ #: ../lib/rabbit/theme/title-background-image/property.rb:1 ../lib/rabbit/theme/rabbit-icon/property.rb:1
1054
+ #: ../lib/rabbit/theme/color-circle-text/property.rb:1 ../lib/rabbit/theme/default-slide/property.rb:1
1055
+ #: ../lib/rabbit/theme/color-circle-item-mark/property.rb:1 ../lib/rabbit/theme/title-slide-background-image/property.rb:1
1056
+ #: ../lib/rabbit/theme/lightning-talk-toolkit/property.rb:1 ../lib/rabbit/theme/color-circle-preformatted/property.rb:1
1057
+ #: ../lib/rabbit/theme/rabbit-title-logo/property.rb:1 ../lib/rabbit/theme/title-shadow/property.rb:1
1058
+ #: ../lib/rabbit/theme/per-slide-background-color/property.rb:1 ../lib/rabbit/theme/headline-logo/property.rb:1
1059
+ msgid "Toolkit"
1154
1060
  msgstr ""
1155
1061
 
1156
- #: ../../lib/rabbit/theme/color-circle-foot-text/property.rb:2
1157
- msgid "Color Circle Foot Text"
1062
+ #: ../lib/rabbit/theme/title-on-image-toolkit/property.rb:2
1063
+ msgid "Title on Image Toolkit"
1158
1064
  msgstr ""
1159
1065
 
1160
- #: ../../lib/rabbit/theme/color-circle-foot-text/property.rb:3
1161
- msgid "Toolkit to set ((<color-circle>)) theme's foot text style up."
1066
+ #: ../lib/rabbit/theme/title-on-image-toolkit/property.rb:3
1067
+ msgid "Displays title on image"
1162
1068
  msgstr ""
1163
1069
 
1164
- #: ../../lib/rabbit/theme/default-item-mark/property.rb:2
1165
- msgid "DefaultItemMark"
1070
+ #: ../lib/rabbit/theme/cozmixng/property.rb:2
1071
+ msgid "COZMIXNG"
1166
1072
  msgstr ""
1167
1073
 
1168
- #: ../../lib/rabbit/theme/default-item-mark/property.rb:3
1169
- msgid "Toolkit to display squares as list item marks"
1074
+ #: ../lib/rabbit/theme/cozmixng/property.rb:3
1075
+ msgid "COZMIXNG theme"
1170
1076
  msgstr ""
1171
1077
 
1172
- #: ../../lib/rabbit/theme/default-item-mark/property.rb:4
1173
- msgid "Displays squares at the head of list items."
1078
+ #: ../lib/rabbit/theme/default-preformatted/property.rb:2
1079
+ msgid "Default Preformatted"
1174
1080
  msgstr ""
1175
1081
 
1176
- #: ../../lib/rabbit/theme/lightning-talk/property.rb:2
1177
- msgid "LightningTalk"
1082
+ #: ../lib/rabbit/theme/default-preformatted/property.rb:3
1083
+ msgid "Displays preformatted text with frame."
1178
1084
  msgstr ""
1179
1085
 
1180
- #: ../../lib/rabbit/theme/lightning-talk/property.rb:3
1181
- msgid "Lightning Talk theme"
1086
+ #: ../lib/rabbit/theme/edge-info-toolkit/property.rb:2
1087
+ msgid "Edge Info Toolkit"
1182
1088
  msgstr ""
1183
1089
 
1184
- #: ../../lib/rabbit/theme/per-slide-background-image/property.rb:2
1185
- msgid "PerSlideBackgroundImage"
1090
+ #: ../lib/rabbit/theme/edge-info-toolkit/property.rb:3
1091
+ msgid "Displays information with line at the edge of slide."
1186
1092
  msgstr ""
1187
1093
 
1188
- #: ../../lib/rabbit/theme/per-slide-background-image/property.rb:3
1189
- msgid "Toolkit to display an image as a background of each slide"
1094
+ #: ../lib/rabbit/theme/newline-in-title/property.rb:1 ../lib/rabbit/theme/newline-in-slides/property.rb:1
1095
+ msgid "Convenience"
1190
1096
  msgstr ""
1191
1097
 
1192
- #: ../../lib/rabbit/theme/per-slide-background-image/property.rb:4
1193
- msgid ""
1194
- "Displays an image as a background of each slide.\n"
1195
- "\n"
1196
- "Each image is specified as a slide property:\n"
1197
- " = target slide\n"
1198
- " \n"
1199
- " ...\n"
1200
- " \n"
1201
- " == properties\n"
1202
- " \n"
1203
- " : background-image\n"
1204
- " my-picture.png\n"
1205
- msgstr ""
1206
-
1207
- #: ../../lib/rabbit/theme/newline-in-slides/property.rb:2
1208
- msgid "Newline in Slides"
1098
+ #: ../lib/rabbit/theme/newline-in-title/property.rb:2
1099
+ msgid "Newline in Title"
1209
1100
  msgstr ""
1210
1101
 
1211
- #: ../../lib/rabbit/theme/newline-in-slides/property.rb:4
1212
- msgid ""
1213
- "Enable '\n"
1214
- "' notation to insert newline in all slides."
1102
+ #: ../lib/rabbit/theme/newline-in-title/property.rb:3 ../lib/rabbit/theme/newline-in-slides/property.rb:3
1103
+ msgid "Convenience '\\n' newline notation."
1215
1104
  msgstr ""
1216
1105
 
1217
- #: ../../lib/rabbit/theme/color-circle/property.rb:2
1218
- msgid "Color Circle"
1106
+ #: ../lib/rabbit/theme/newline-in-title/property.rb:4
1107
+ msgid "Enable '\\n' notation to insert newline in title."
1219
1108
  msgstr ""
1220
1109
 
1221
- #: ../../lib/rabbit/theme/color-circle/property.rb:3
1222
- msgid "Toolkit to make a theme that has colored circles"
1110
+ #: ../lib/rabbit/theme/tag/property.rb:2
1111
+ msgid "Tag"
1223
1112
  msgstr ""
1224
1113
 
1225
- #: ../../lib/rabbit/theme/color-circle/property.rb:4
1226
- msgid "There are many colored circles in slides."
1114
+ #: ../lib/rabbit/theme/tag/property.rb:3
1115
+ msgid "Toolkit to apply custom tag"
1227
1116
  msgstr ""
1228
1117
 
1229
- #: ../../lib/rabbit/theme/color-circle/color-circle.rb:16
1230
- msgid "required variables aren't set: %s"
1118
+ #: ../lib/rabbit/theme/tag/property.rb:4
1119
+ msgid "Applies custom tag style."
1231
1120
  msgstr ""
1232
1121
 
1233
- #: ../../lib/rabbit/theme/rabbit-item-mark/property.rb:2
1234
- msgid "RabbitItemMark"
1122
+ #: ../lib/rabbit/theme/scroll-effect/property.rb:1 ../lib/rabbit/theme/rotate-zoom-effect/property.rb:1
1123
+ #: ../lib/rabbit/theme/mirror-effect/property.rb:1
1124
+ msgid "Effect"
1235
1125
  msgstr ""
1236
1126
 
1237
- #: ../../lib/rabbit/theme/rabbit-item-mark/property.rb:3
1238
- msgid "Toolkit to display colorful balls as list item marks"
1127
+ #: ../lib/rabbit/theme/scroll-effect/property.rb:2
1128
+ msgid "Scroll Effect"
1239
1129
  msgstr ""
1240
1130
 
1241
- #: ../../lib/rabbit/theme/rabbit-item-mark/property.rb:4
1242
- msgid "Displays colorful balls at the head of list items."
1131
+ #: ../lib/rabbit/theme/scroll-effect/property.rb:3
1132
+ msgid "Provide scroll_effect method that scrolls content."
1243
1133
  msgstr ""
1244
1134
 
1245
- #: ../../lib/rabbit/theme/color-circle-method-list/property.rb:2
1246
- msgid "Color Circle Method List"
1135
+ #: ../lib/rabbit/theme/default-title-text/property.rb:2
1136
+ msgid "Default Title Text"
1247
1137
  msgstr ""
1248
1138
 
1249
- #: ../../lib/rabbit/theme/color-circle-method-list/property.rb:3
1250
- msgid "Toolkit to set ((<color-circle>)) theme's method-list style up."
1139
+ #: ../lib/rabbit/theme/default-title-text/property.rb:3
1140
+ msgid "Sets default title text style up."
1251
1141
  msgstr ""
1252
1142
 
1253
- #: ../../lib/rabbit/theme/ruby-gnome2-slide/property.rb:2
1254
- msgid "Ruby-GNOME2 Slide"
1143
+ #: ../lib/rabbit/theme/blue-bar/property.rb:2
1144
+ msgid "Blue Bar"
1255
1145
  msgstr ""
1256
1146
 
1257
- #: ../../lib/rabbit/theme/ruby-gnome2-slide/property.rb:3
1258
- msgid "Displays slides with Ruby-GNOME2 style."
1147
+ #: ../lib/rabbit/theme/blue-bar/property.rb:3
1148
+ msgid "Blue bar theme"
1259
1149
  msgstr ""
1260
1150
 
1261
- #: ../../lib/rabbit/theme/clutter-comment/property.rb:2
1262
- msgid "Clutter Comment"
1151
+ #: ../lib/rabbit/theme/default-item-mark-setup/default-item-mark-setup.rb:31
1152
+ msgid "unknown item mark type: %s\\nRectangle type is used as fallback"
1263
1153
  msgstr ""
1264
1154
 
1265
- #: ../../lib/rabbit/theme/clutter-comment/property.rb:3
1266
- msgid "Show comment as a rolling Clutter actor."
1155
+ #: ../lib/rabbit/theme/default-item-mark-setup/default-item-mark-setup.rb:81
1156
+ msgid "unknown enumeration item mark type: %s\\nNumeric type is used as fallback"
1267
1157
  msgstr ""
1268
1158
 
1269
- #: ../../lib/rabbit/theme/mirror-effect/property.rb:2
1270
- msgid "Mirror Effect"
1159
+ #: ../lib/rabbit/theme/default-item-mark-setup/property.rb:2
1160
+ msgid "Default Item Mark Setup"
1271
1161
  msgstr ""
1272
1162
 
1273
- #: ../../lib/rabbit/theme/mirror-effect/property.rb:3
1274
- msgid "Provide mirror_effect method that flips content."
1163
+ #: ../lib/rabbit/theme/default-item-mark-setup/property.rb:3
1164
+ msgid "Provides methods to set item mark style up."
1275
1165
  msgstr ""
1276
1166
 
1277
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:2
1278
- msgid "SlideBackgroundImage"
1167
+ #: ../lib/rabbit/theme/default-title-slide/property.rb:2
1168
+ msgid "DefaultTitleSlide"
1279
1169
  msgstr ""
1280
1170
 
1281
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:3
1282
- msgid "Toolkit to display an image as a background of slides"
1171
+ #: ../lib/rabbit/theme/default-title-slide/property.rb:3
1172
+ msgid "Toolkit to locate objects in the title slide in a simple way"
1283
1173
  msgstr ""
1284
1174
 
1285
- #: ../../lib/rabbit/theme/slide-background-image/property.rb:4
1286
- msgid "Displays an image as a background of slides."
1175
+ #: ../lib/rabbit/theme/default-title-slide/property.rb:4
1176
+ msgid "Locates objects in the title slide simply by centering them and by making configuration for margins around them a little."
1287
1177
  msgstr ""
1288
1178
 
1289
- #: ../../lib/rabbit/theme/entry.rb:88
1290
- msgid "Etc"
1179
+ #: ../lib/rabbit/theme/lightning-clear-blue/property.rb:2
1180
+ msgid "Lightning Clear Blue"
1291
1181
  msgstr ""
1292
1182
 
1293
- #: ../../lib/rabbit/theme/debian/property.rb:2
1294
- msgid "Debian Theme"
1183
+ #: ../lib/rabbit/theme/lightning-clear-blue/property.rb:3
1184
+ msgid "Clear blue theme with Lightning Talk theme"
1295
1185
  msgstr ""
1296
1186
 
1297
- #: ../../lib/rabbit/theme/debian/property.rb:3
1298
- msgid "Debian GNU/Linux Theme"
1187
+ #: ../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:2
1188
+ msgid "Ruby-GNOME2 Preformatted"
1299
1189
  msgstr ""
1300
1190
 
1301
- #: ../../lib/rabbit/theme/slide-number/property.rb:2
1302
- msgid "TextSlideNumber"
1191
+ #: ../lib/rabbit/theme/ruby-gnome2-preformatted/property.rb:3
1192
+ msgid "Displays preformatted text with Ruby-GNOME2 style."
1303
1193
  msgstr ""
1304
1194
 
1305
- #: ../../lib/rabbit/theme/slide-number/property.rb:3
1306
- msgid "Toolkit to display slide numbers, a text version"
1195
+ #: ../lib/rabbit/theme/title-logo/title-logo.rb:4 ../lib/rabbit/theme/slide-logo/slide-logo.rb:4
1196
+ msgid "must specify %s!!!"
1307
1197
  msgstr ""
1308
1198
 
1309
- #: ../../lib/rabbit/theme/slide-number/property.rb:4
1310
- msgid "Displays slide numbers with text at the bottom of the slides."
1199
+ #: ../lib/rabbit/theme/title-logo/property.rb:2
1200
+ msgid "TitleLogo"
1311
1201
  msgstr ""
1312
1202
 
1313
- #: ../../lib/rabbit/theme/slide-number/property.rb:12
1314
- msgid "Properties of the slide numbers, such as font family."
1203
+ #: ../lib/rabbit/theme/title-logo/property.rb:3
1204
+ msgid "Toolkit to display an image as a logo in the title slide"
1315
1205
  msgstr ""
1316
1206
 
1317
- #: ../../lib/rabbit/theme/icon/property.rb:2
1318
- msgid "Icon"
1207
+ #: ../lib/rabbit/theme/title-logo/property.rb:4
1208
+ msgid "Displays an image as a logo in the title slide."
1319
1209
  msgstr ""
1320
1210
 
1321
- #: ../../lib/rabbit/theme/icon/property.rb:3
1322
- msgid "Toolkit to specify an image or images as icons"
1211
+ #: ../lib/rabbit/theme/title-logo/property.rb:7 ../lib/rabbit/theme/slide-background-image/property.rb:7
1212
+ #: ../lib/rabbit/theme/title-background-color/property.rb:7 ../lib/rabbit/theme/footer-logo/property.rb:7
1213
+ #: ../lib/rabbit/theme/slide-logo/property.rb:7 ../lib/rabbit/theme/title-background-image/property.rb:8
1214
+ #: ../lib/rabbit/theme/title-slide-background-image/property.rb:7 ../lib/rabbit/theme/headline-logo/property.rb:7
1215
+ msgid "(Must be specified.)"
1323
1216
  msgstr ""
1324
1217
 
1325
- #: ../../lib/rabbit/theme/icon/property.rb:4
1326
- msgid ""
1327
- "Specifies an image or images as icons of the window, which will be used by "
1328
- "some window managers and desktop environments, for example when the window "
1329
- "is minimized (or 'iconified'), in the window frame, or when windows are "
1330
- "switched. The specified image or images are automatically scaled to the icon "
1331
- "sizes case by case. When several images are specified and they have "
1332
- "different sizes, an image with the most similar size to that of icon among "
1333
- "them is chosen and scaled in order to improve the quality of image finally "
1334
- "displayed."
1335
- msgstr ""
1336
-
1337
- #: ../../lib/rabbit/theme/icon/property.rb:18
1338
- #: ../../lib/rabbit/theme/powered-by/property.rb:18
1339
- msgid "List of image file names."
1218
+ #: ../lib/rabbit/theme/title-logo/property.rb:8 ../lib/rabbit/theme/slide-background-image/property.rb:8
1219
+ #: ../lib/rabbit/theme/icon/property.rb:22 ../lib/rabbit/theme/footer-logo/property.rb:8
1220
+ #: ../lib/rabbit/theme/slide-logo/property.rb:8 ../lib/rabbit/theme/title-background-image/property.rb:9
1221
+ #: ../lib/rabbit/theme/title-slide-background-image/property.rb:8 ../lib/rabbit/theme/headline-logo/property.rb:8
1222
+ msgid "Image file name."
1340
1223
  msgstr ""
1341
1224
 
1342
- #: ../../lib/rabbit/theme/color-circle-block-quote/property.rb:2
1343
- msgid "Color Circle block quote"
1225
+ #: ../lib/rabbit/theme/title-logo/property.rb:12
1226
+ msgid "Position of the logo. The logo will be set at the upper-right corner when '(({:right}))', and at the upper-left corner when '(({:left}))'."
1344
1227
  msgstr ""
1345
1228
 
1346
- #: ../../lib/rabbit/theme/color-circle-block-quote/property.rb:3
1347
- msgid "Toolkit to display itemization in quotation"
1229
+ #: ../lib/rabbit/theme/title-logo/property.rb:19 ../lib/rabbit/theme/clock/property.rb:17
1230
+ #: ../lib/rabbit/theme/slide-number/property.rb:17 ../lib/rabbit/theme/image-slide-number/property.rb:60
1231
+ #: ../lib/rabbit/theme/show-frame/property.rb:12
1232
+ msgid "Whether uninstalling this toolkit or not. This option is useful for cases you do not want to make the toolkit work for certain slides."
1348
1233
  msgstr ""
1349
1234
 
1350
- #: ../../lib/rabbit/theme/color-circle-block-quote/property.rb:4
1351
- msgid "Support itemization in quotation."
1235
+ #: ../lib/rabbit/theme/syntax-highlighting/property.rb:2
1236
+ msgid "Syntax Highlighting"
1352
1237
  msgstr ""
1353
1238
 
1354
- #: ../../lib/rabbit/theme/red-frame/property.rb:2
1355
- msgid "RedFrame"
1239
+ #: ../lib/rabbit/theme/syntax-highlighting/property.rb:3
1240
+ msgid "Toolkit for syntax highlighting"
1356
1241
  msgstr ""
1357
1242
 
1358
- #: ../../lib/rabbit/theme/red-frame/property.rb:3
1359
- msgid "Red frame theme"
1243
+ #: ../lib/rabbit/theme/syntax-highlighting/property.rb:4
1244
+ msgid "Applies syntax highlighting style."
1360
1245
  msgstr ""
1361
1246
 
1362
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:3
1363
- msgid "Toolkit to display information at the header"
1247
+ #: ../lib/rabbit/theme/slide-background/property.rb:2
1248
+ msgid "SlideBackground"
1364
1249
  msgstr ""
1365
1250
 
1366
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:4
1367
- msgid "Displays information with a line at the header of slides."
1251
+ #: ../lib/rabbit/theme/slide-background/property.rb:3
1252
+ msgid "Backward compatibility theme for ((<slide-background-image>))"
1368
1253
  msgstr ""
1369
1254
 
1370
- #: ../../lib/rabbit/theme/slide-header-info/property.rb:16
1371
- msgid ""
1372
- "Line fill pattern. @slide_header_info_line_color is ignored if this "
1373
- "parameter is specified."
1255
+ #: ../lib/rabbit/theme/slide-background/property.rb:4
1256
+ msgid "See ((<slide-background-image>))"
1374
1257
  msgstr ""
1375
1258
 
1376
- #: ../../lib/rabbit/theme/title-background-color/property.rb:2
1377
- msgid "TitleBackgroundColor"
1259
+ #: ../lib/rabbit/theme/image/property.rb:2 ../data/rabbit/image/rabbit-images/property.rb:1
1260
+ #: ../data/rabbit/image/ruby-images/property.rb:1 ../data/rabbit/image/clear-blue-images/property.rb:1
1261
+ #: ../data/rabbit/image/cozmixng-images/property.rb:1 ../data/rabbit/image/dark-gradation-images/property.rb:1
1262
+ #: ../data/rabbit/image/rubykaigi2011-images/property.rb:1 ../data/rabbit/image/nari-images/property.rb:1
1263
+ #: ../data/rabbit/image/debian-images/property.rb:1
1264
+ msgid "Image"
1378
1265
  msgstr ""
1379
1266
 
1380
- #: ../../lib/rabbit/theme/title-background-color/property.rb:3
1381
- msgid "Toolkit to color a background of the title slide"
1267
+ #: ../lib/rabbit/theme/image/property.rb:3
1268
+ msgid "image rendering"
1382
1269
  msgstr ""
1383
1270
 
1384
- #: ../../lib/rabbit/theme/title-background-color/property.rb:4
1385
- msgid "Color a background of the title slide."
1271
+ #: ../lib/rabbit/theme/default-foot-text/property.rb:2
1272
+ msgid "Default Foot Text"
1386
1273
  msgstr ""
1387
1274
 
1388
- #: ../../lib/rabbit/theme/title-background-color/property.rb:8
1389
- msgid "Background color."
1275
+ #: ../lib/rabbit/theme/default-foot-text/property.rb:3
1276
+ msgid "Displays foot text at the footer of slide."
1390
1277
  msgstr ""
1391
1278
 
1392
- #: ../../lib/rabbit/theme/footer-logo/property.rb:2
1393
- msgid "Footer Logo"
1279
+ #: ../lib/rabbit/theme/default-text/property.rb:2
1280
+ msgid "Default Text"
1394
1281
  msgstr ""
1395
1282
 
1396
- #: ../../lib/rabbit/theme/footer-logo/property.rb:3
1397
- msgid "Toolkit to display an image as logo at the footer"
1283
+ #: ../lib/rabbit/theme/default-text/property.rb:3
1284
+ msgid "Sets default text style up."
1398
1285
  msgstr ""
1399
1286
 
1400
- #: ../../lib/rabbit/theme/footer-logo/property.rb:4
1401
- msgid "Displays an image as a logo at the footer of slides."
1287
+ #: ../lib/rabbit/theme/table/property.rb:2
1288
+ msgid "Table"
1402
1289
  msgstr ""
1403
1290
 
1404
- #: ../../lib/rabbit/theme/footer-logo/property.rb:12
1405
- msgid "Whether keep ratio of an image or not."
1291
+ #: ../lib/rabbit/theme/table/property.rb:3
1292
+ msgid "table rendering"
1406
1293
  msgstr ""
1407
1294
 
1408
- #: ../../lib/rabbit/theme/footer-logo/property.rb:16
1409
- msgid "Right margin of an image."
1295
+ #: ../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:2
1296
+ msgid "Ruby-GNOME2 Foot Text"
1410
1297
  msgstr ""
1411
1298
 
1412
- #: ../../lib/rabbit/theme/footer-logo/property.rb:20
1413
- msgid "Bottom margin of an image."
1299
+ #: ../lib/rabbit/theme/ruby-gnome2-foot-text/property.rb:3
1300
+ msgid "Displays foot text at the footer of slide with Ruby-GNOME2 style."
1414
1301
  msgstr ""
1415
1302
 
1416
- #: ../../lib/rabbit/theme/centering-rabbit/property.rb:2
1417
- msgid "Centering Rabbit"
1303
+ #: ../lib/rabbit/theme/enishi-green/property.rb:2
1304
+ msgid "Enishi Green"
1418
1305
  msgstr ""
1419
1306
 
1420
- #: ../../lib/rabbit/theme/centering-rabbit/property.rb:3
1421
- msgid "Rabbit theme with text centering."
1307
+ #: ../lib/rabbit/theme/enishi-green/property.rb:3
1308
+ msgid "EnishTech green based theme"
1422
1309
  msgstr ""
1423
1310
 
1424
- #: ../../lib/rabbit/theme/powered-by/property.rb:2
1425
- msgid "PoweredBy"
1311
+ #: ../lib/rabbit/theme/stream-comment/property.rb:2
1312
+ msgid "Stream Comment"
1426
1313
  msgstr ""
1427
1314
 
1428
- #: ../../lib/rabbit/theme/powered-by/property.rb:3
1429
- msgid "Powered-by ad toolkit"
1315
+ #: ../lib/rabbit/theme/stream-comment/property.rb:3
1316
+ msgid "Stream comments on canvas."
1430
1317
  msgstr ""
1431
1318
 
1432
- #: ../../lib/rabbit/theme/powered-by/property.rb:4
1433
- msgid ""
1434
- "Displays programs the presentation slides are powered by (or displays some "
1435
- "other ads) at the foot of the title slide and of the last slide. Images and/"
1436
- "or a text are available as ads."
1319
+ #: ../lib/rabbit/theme/color-circle-slide/property.rb:2
1320
+ msgid "Color Circle Slide"
1437
1321
  msgstr ""
1438
1322
 
1439
- #: ../../lib/rabbit/theme/powered-by/property.rb:14
1440
- msgid "Properties of the ad text, such as font family."
1323
+ #: ../lib/rabbit/theme/color-circle-slide/property.rb:3
1324
+ msgid "Toolkit to set ((<color-circle>)) theme's slide style up."
1441
1325
  msgstr ""
1442
1326
 
1443
- #: ../../lib/rabbit/theme/powered-by/property.rb:22
1444
- msgid "Ad text."
1327
+ #: ../lib/rabbit/theme/base/property.rb:2
1328
+ msgid "Base"
1445
1329
  msgstr ""
1446
1330
 
1447
- #: ../../lib/rabbit/theme/rabbit-headline-logo/property.rb:2
1448
- msgid "RabbitHeadlineLogo"
1331
+ #: ../lib/rabbit/theme/base/property.rb:3
1332
+ msgid "Define default variables"
1449
1333
  msgstr ""
1450
1334
 
1451
- #: ../../lib/rabbit/theme/rabbit-headline-logo/property.rb:3
1452
- msgid "Toolkit to display Lavie as a logo at the headlines"
1335
+ #: ../lib/rabbit/theme/base/property.rb:4
1336
+ msgid "This theme is always included at the first."
1453
1337
  msgstr ""
1454
1338
 
1455
- #: ../../lib/rabbit/theme/rabbit-headline-logo/property.rb:4
1456
- msgid "Displays Lavie as a logo at the headlines of slides."
1339
+ #: ../lib/rabbit/theme/clear-blue/property.rb:2
1340
+ msgid "Clear Blue"
1457
1341
  msgstr ""
1458
1342
 
1459
- #: ../../lib/rabbit/theme/image-viewer/property.rb:2
1460
- msgid "Image viewer"
1343
+ #: ../lib/rabbit/theme/clear-blue/property.rb:3
1344
+ msgid "Clear blue theme"
1461
1345
  msgstr ""
1462
1346
 
1463
- #: ../../lib/rabbit/theme/image-viewer/property.rb:3
1464
- msgid "Theme for image viewer mode"
1347
+ #: ../lib/rabbit/theme/ranguba/property.rb:2
1348
+ msgid "Ranguba"
1465
1349
  msgstr ""
1466
1350
 
1467
- #: ../../lib/rabbit/theme/dark-gradation/property.rb:2
1468
- msgid "Dark Gradation"
1351
+ #: ../lib/rabbit/theme/ranguba/property.rb:3
1352
+ msgid "Ranguba theme"
1469
1353
  msgstr ""
1470
1354
 
1471
- #: ../../lib/rabbit/theme/dark-gradation/property.rb:3
1472
- msgid "Dark Gradation background theme"
1355
+ #: ../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:2
1356
+ msgid "RubyGNOME2ItemMark"
1473
1357
  msgstr ""
1474
1358
 
1475
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:2
1476
- msgid "ImageSlideNumber"
1359
+ #: ../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:3
1360
+ msgid "Toolkit to display list items like ones in the website of the Ruby-GNOME2 Project"
1477
1361
  msgstr ""
1478
1362
 
1479
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:3
1480
- msgid "Toolkit to display slide numbers, an image version"
1363
+ #: ../lib/rabbit/theme/ruby-gnome2-item-mark/property.rb:5
1364
+ msgid "Displays list items like ones in the website of the Ruby-GNOME2 Project; i.e. displays text of the first-level items colored blue and underlined, the second- and third-level items marked with black squares and circles."
1481
1365
  msgstr ""
1482
1366
 
1483
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:4
1484
- msgid ""
1485
- "Displays the progress of presentation with position of an image. This is "
1486
- "useful both for speakers and for listeners to know elapsed slide numbers and "
1487
- "slide numbers left. By default, an image of a hare, which is a family of "
1488
- "rabbit, jumps along the bottom of slides between two flags.\n"
1489
- "\n"
1490
- "Using together with another theme, ((<image-timer>)), you can make a hare "
1491
- "and a tortoise race like the fable of the hare and the tortoise. When doing "
1492
- "so, however, note that you should make your presentation not so slowly that "
1493
- "the hare will lose to the tortoise."
1494
- msgstr ""
1495
-
1496
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:22
1497
- msgid ""
1498
- "File name of an image that moves. An image of a hare in the ((<rabbit-"
1499
- "images>)) theme is used by default."
1367
+ #: ../lib/rabbit/theme/default-block-quote/default-block-quote.rb:111
1368
+ msgid "[cited from `%s']"
1500
1369
  msgstr ""
1501
1370
 
1502
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:28
1503
- msgid ""
1504
- "Whether drawing start and goal flags with text or not. When (({true})), "
1505
- "flags are drawn with text with a form of (({@image_slide_number_flag_type})) "
1506
- "and on which slide numbers are also drawn with color ((|"
1507
- "@image_slide_number_text_color|)). Otherwise, image files specified with ((|"
1508
- "@image_slide_number_start_image|)) and ((|@image_slide_number_goal_image|)) "
1509
- "are used as flags."
1371
+ #: ../lib/rabbit/theme/default-block-quote/property.rb:2
1372
+ msgid "Default Block Quote"
1510
1373
  msgstr ""
1511
1374
 
1512
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:41
1513
- msgid "Color of numbers displayed on the start and goal flags."
1375
+ #: ../lib/rabbit/theme/default-block-quote/property.rb:3
1376
+ msgid "Displays block quote text with frame."
1514
1377
  msgstr ""
1515
1378
 
1516
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:46
1517
- msgid ""
1518
- "Form of the start and goal flags. Avaiable forms are (({'triangle'})) and "
1519
- "(({'rectangle'}))."
1379
+ #: ../lib/rabbit/theme/day-white/property.rb:2
1380
+ msgid "Day White"
1520
1381
  msgstr ""
1521
1382
 
1522
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:52
1523
- msgid "File name of an image used as the start flag."
1383
+ #: ../lib/rabbit/theme/day-white/property.rb:3
1384
+ msgid "Day White theme"
1524
1385
  msgstr ""
1525
1386
 
1526
- #: ../../lib/rabbit/theme/image-slide-number/property.rb:56
1527
- msgid "File name of an image used as the goal flag."
1387
+ #: ../lib/rabbit/theme/night-black/property.rb:2
1388
+ msgid "Night Black"
1528
1389
  msgstr ""
1529
1390
 
1530
- #: ../../lib/rabbit/theme/default-method-list/property.rb:2
1531
- msgid "Default Method List"
1391
+ #: ../lib/rabbit/theme/night-black/property.rb:3
1392
+ msgid "Night Black theme"
1532
1393
  msgstr ""
1533
1394
 
1534
- #: ../../lib/rabbit/theme/default-method-list/property.rb:3
1535
- msgid "Displays method description with indent."
1395
+ #: ../lib/rabbit/theme/color-circle-common/property.rb:2
1396
+ msgid "Color Circle common"
1536
1397
  msgstr ""
1537
1398
 
1538
- #: ../../lib/rabbit/theme/simple-item-mark/property.rb:2
1539
- msgid "SimpleItemMark"
1399
+ #: ../lib/rabbit/theme/color-circle-common/property.rb:3
1400
+ msgid "Provide common methods for Color Circle toolkit."
1540
1401
  msgstr ""
1541
1402
 
1542
- #: ../../lib/rabbit/theme/simple-item-mark/property.rb:3
1543
- msgid "Toolkit to display simple black circles as list item marks"
1403
+ #: ../lib/rabbit/theme/default/property.rb:2
1404
+ msgid "Default"
1544
1405
  msgstr ""
1545
1406
 
1546
- #: ../../lib/rabbit/theme/simple-item-mark/property.rb:4
1547
- msgid "Displays simple black circles at the head of list items."
1407
+ #: ../lib/rabbit/theme/default/property.rb:3
1408
+ msgid "default theme"
1548
1409
  msgstr ""
1549
1410
 
1550
- #: ../../lib/rabbit/theme/rabbit-block-quote/property.rb:2
1551
- msgid "Rabbit Block Quote"
1411
+ #: ../lib/rabbit/theme/emphasize-keyword/property.rb:2
1412
+ msgid "Emphasize Keyword"
1552
1413
  msgstr ""
1553
1414
 
1554
- #: ../../lib/rabbit/theme/rabbit-block-quote/property.rb:3
1555
- msgid "Displays quotation block with quote mark in frame."
1415
+ #: ../lib/rabbit/theme/emphasize-keyword/property.rb:3
1416
+ msgid "Provides emphasize_keyword method that markups specified keyword as emphasis text."
1556
1417
  msgstr ""
1557
1418
 
1558
- #: ../../lib/rabbit/theme/green-circle/property.rb:2
1559
- msgid "Green Circle"
1419
+ #: ../lib/rabbit/theme/rabbit/property.rb:3
1420
+ msgid "Rabbit theme"
1560
1421
  msgstr ""
1561
1422
 
1562
- #: ../../lib/rabbit/theme/green-circle/property.rb:3
1563
- msgid "Green Circle theme"
1423
+ #: ../lib/rabbit/theme/rabbit-powered-by/property.rb:2
1424
+ msgid "RabbitPoweredBy"
1564
1425
  msgstr ""
1565
1426
 
1566
- #: ../../lib/rabbit/theme/slide-logo/property.rb:2
1567
- msgid "Slide Logo"
1427
+ #: ../lib/rabbit/theme/rabbit-powered-by/property.rb:3
1428
+ msgid "Powered-by-Rabbit ad toolkit"
1568
1429
  msgstr ""
1569
1430
 
1570
- #: ../../lib/rabbit/theme/slide-logo/property.rb:3
1571
- msgid "Toolkit to display an image as logo at the top"
1431
+ #: ../lib/rabbit/theme/rabbit-powered-by/property.rb:4
1432
+ msgid "Displays a text and an image showing the presentation slides are powered by Rabbit and COZMIXNG at the foot of the title slide and of the last slide."
1572
1433
  msgstr ""
1573
1434
 
1574
- #: ../../lib/rabbit/theme/slide-logo/property.rb:4
1575
- msgid "Displays an image as a logo at the top of all slides."
1435
+ #: ../lib/rabbit/theme/blue-circle/property.rb:2
1436
+ msgid "Blue Circle"
1576
1437
  msgstr ""
1577
1438
 
1578
- #: ../../lib/rabbit/theme/slide-logo/property.rb:12
1579
- msgid "Image position. :right or :left."
1439
+ #: ../lib/rabbit/theme/blue-circle/property.rb:3
1440
+ msgid "Blue Circle theme"
1580
1441
  msgstr ""
1581
1442
 
1582
- #: ../../lib/rabbit/theme/slide-logo/property.rb:16
1583
- msgid "Image width."
1443
+ #: ../lib/rabbit/theme/clock/property.rb:2
1444
+ msgid "TextClock"
1584
1445
  msgstr ""
1585
1446
 
1586
- #: ../../lib/rabbit/theme/slide-logo/property.rb:20
1587
- msgid "Image height."
1447
+ #: ../lib/rabbit/theme/clock/property.rb:3
1448
+ msgid "Clock toolkit, a text version"
1588
1449
  msgstr ""
1589
1450
 
1590
- #: ../../lib/rabbit/theme/title-background-image/property.rb:2
1591
- msgid "TitleBackgroundImage"
1451
+ #: ../lib/rabbit/theme/clock/property.rb:4
1452
+ msgid "Displays current time with text."
1592
1453
  msgstr ""
1593
1454
 
1594
- #: ../../lib/rabbit/theme/title-background-image/property.rb:3
1595
- msgid "Toolkit to display an image as a background of the title slide"
1455
+ #: ../lib/rabbit/theme/clock/property.rb:13
1456
+ msgid "Properties for the clock, such as font family."
1596
1457
  msgstr ""
1597
1458
 
1598
- #: ../../lib/rabbit/theme/title-background-image/property.rb:5
1599
- msgid "Displays an image as a background of the title slide."
1459
+ #: ../lib/rabbit/theme/ruby-gnome2-icon/property.rb:2
1460
+ msgid "RubyGNOME2Icon"
1600
1461
  msgstr ""
1601
1462
 
1602
- #: ../../lib/rabbit/theme/ruby-gnome2/property.rb:2
1603
- msgid "Ruby-GNOME2"
1463
+ #: ../lib/rabbit/theme/ruby-gnome2-icon/property.rb:3
1464
+ msgid "Toolkit to use a pink circle as icons"
1604
1465
  msgstr ""
1605
1466
 
1606
- #: ../../lib/rabbit/theme/ruby-gnome2/property.rb:3
1607
- msgid "Ruby-GNOME2 theme"
1467
+ #: ../lib/rabbit/theme/ruby-gnome2-icon/property.rb:4
1468
+ msgid "Uses a pink circle as icons."
1608
1469
  msgstr ""
1609
1470
 
1610
- #: ../../lib/rabbit/theme/rabbit-icon/property.rb:2
1611
- msgid "RabbitIcon"
1471
+ #: ../lib/rabbit/theme/timer/property.rb:2
1472
+ msgid "TextTimer"
1612
1473
  msgstr ""
1613
1474
 
1614
- #: ../../lib/rabbit/theme/rabbit-icon/property.rb:3
1615
- msgid "Toolkit to use Lavie as icons"
1475
+ #: ../lib/rabbit/theme/timer/property.rb:3
1476
+ msgid "text version timer"
1616
1477
  msgstr ""
1617
1478
 
1618
- #: ../../lib/rabbit/theme/rabbit-icon/property.rb:4
1619
- msgid "Uses Lavie as icons."
1479
+ #: ../lib/rabbit/theme/ruby-gnome2-description/property.rb:2
1480
+ msgid "RubyGNOME2Description"
1620
1481
  msgstr ""
1621
1482
 
1622
- #: ../../lib/rabbit/theme/color-circle-text/property.rb:2
1623
- msgid "Color Circle Text"
1483
+ #: ../lib/rabbit/theme/ruby-gnome2-description/property.rb:3
1484
+ msgid "Toolkit to display description-list items like ones in the website of the Ruby-GNOME2 Project"
1624
1485
  msgstr ""
1625
1486
 
1626
- #: ../../lib/rabbit/theme/color-circle-text/property.rb:3
1627
- msgid "Toolkit to set ((<color-circle>)) theme's text style up."
1487
+ #: ../lib/rabbit/theme/ruby-gnome2-description/property.rb:5
1488
+ msgid "Displays description-list items like ones in the website of the Ruby-GNOME2 Project; i.e. displays their text colored blue."
1628
1489
  msgstr ""
1629
1490
 
1630
- #: ../../lib/rabbit/theme/default-slide/property.rb:2
1631
- msgid "Default Slide"
1491
+ #: ../lib/rabbit/theme/cozmixng-powered-by/property.rb:2
1492
+ msgid "COZMIXNGPoweredBy"
1632
1493
  msgstr ""
1633
1494
 
1634
- #: ../../lib/rabbit/theme/default-slide/property.rb:3
1635
- msgid "Displays headline with line."
1495
+ #: ../lib/rabbit/theme/cozmixng-powered-by/property.rb:3
1496
+ msgid "Powered-by-COZMIXNG ad toolkit"
1636
1497
  msgstr ""
1637
1498
 
1638
- #: ../../lib/rabbit/theme/color-circle-item-mark/property.rb:2
1639
- msgid "Color Circle Item Mark"
1499
+ #: ../lib/rabbit/theme/cozmixng-powered-by/property.rb:4
1500
+ msgid "Displays a text and images showing the presentation slides are powered by COZMIXNG and Rabbit at the foot of the title slide and of the last slide."
1640
1501
  msgstr ""
1641
1502
 
1642
- #: ../../lib/rabbit/theme/color-circle-item-mark/property.rb:3
1643
- msgid "Toolkit to set ((<color-circle>)) theme's item marks style up."
1503
+ #: ../lib/rabbit/theme/rotate-zoom-effect/property.rb:2
1504
+ msgid "Rotate Zoom Effect"
1644
1505
  msgstr ""
1645
1506
 
1646
- #: ../../lib/rabbit/theme/lightning-monochrome/property.rb:2
1647
- msgid "LightningTalk-Monochrome"
1507
+ #: ../lib/rabbit/theme/rotate-zoom-effect/property.rb:3
1508
+ msgid "Provide rotate_zoom_effect method that rotates and zooms content."
1648
1509
  msgstr ""
1649
1510
 
1650
- #: ../../lib/rabbit/theme/lightning-monochrome/property.rb:3
1651
- msgid "Lightning Talk theme monochrome version"
1511
+ #: ../lib/rabbit/theme/color-circle-title-text/property.rb:2
1512
+ msgid "Color Circle Title text"
1652
1513
  msgstr ""
1653
1514
 
1654
- #: ../../lib/rabbit/theme/lightning-talk-toolkit/property.rb:2
1655
- msgid "LightningTalk-Toolkit"
1515
+ #: ../lib/rabbit/theme/color-circle-title-text/property.rb:3
1516
+ msgid "Toolkit to set ((<color-circle>)) theme's title text style up."
1656
1517
  msgstr ""
1657
1518
 
1658
- #: ../../lib/rabbit/theme/lightning-talk-toolkit/property.rb:3
1659
- msgid "Displays slides for lightning talk"
1519
+ #: ../lib/rabbit/theme/lightning-rabbit/property.rb:2
1520
+ msgid "LightningRabbit"
1660
1521
  msgstr ""
1661
1522
 
1662
- #: ../../lib/rabbit/theme/color-circle-preformatted/property.rb:2
1663
- msgid "Color Circle Preformatted"
1523
+ #: ../lib/rabbit/theme/lightning-rabbit/property.rb:3
1524
+ msgid "Rabbit theme with Lightning Talk theme"
1664
1525
  msgstr ""
1665
1526
 
1666
- #: ../../lib/rabbit/theme/color-circle-preformatted/property.rb:3
1667
- msgid "Toolkit to set ((<color-circle>)) theme's preformatted text style up."
1527
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:2 ../lib/rabbit/theme/slide-header-info/property.rb:2
1528
+ msgid "Slide Footer Info"
1668
1529
  msgstr ""
1669
1530
 
1670
- #: ../../lib/rabbit/theme/rabbit-title-logo/property.rb:2
1671
- msgid "RabbitTitleLogo"
1531
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:3
1532
+ msgid "Toolkit to display information at the footer"
1672
1533
  msgstr ""
1673
1534
 
1674
- #: ../../lib/rabbit/theme/rabbit-title-logo/property.rb:3
1675
- msgid "Toolkit to display Lavie as a logo in the title slide"
1535
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:4
1536
+ msgid "Displays information with a line at the footer of slides."
1676
1537
  msgstr ""
1677
1538
 
1678
- #: ../../lib/rabbit/theme/rabbit-title-logo/property.rb:4
1679
- msgid "Displays Lavie as a logo in the title slide."
1539
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:8 ../lib/rabbit/theme/slide-header-info/property.rb:8
1540
+ msgid "Line color."
1680
1541
  msgstr ""
1681
1542
 
1682
- #: ../../lib/rabbit/theme/image-timer/property.rb:2
1683
- msgid "ImageTimer"
1543
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:12 ../lib/rabbit/theme/slide-header-info/property.rb:12
1544
+ msgid "Line width."
1684
1545
  msgstr ""
1685
1546
 
1686
- #: ../../lib/rabbit/theme/image-timer/property.rb:3
1687
- msgid "Timer toolkit, an image version"
1547
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:15 ../lib/rabbit/theme/slide-header-info/property.rb:15
1548
+ msgid "white <-> black gradation"
1688
1549
  msgstr ""
1689
1550
 
1690
- #: ../../lib/rabbit/theme/image-timer/property.rb:4
1691
- msgid ""
1692
- "Displays the progress of time with position of an image. This is useful both "
1693
- "for speakers and for listeners to know elapsed time and time left. By "
1694
- "default, a tortoise image walks along the bottom of slides slowly step by "
1695
- "step.\n"
1696
- "\n"
1697
- "Using together with another theme, ((<image-slide-number>)), you can make a "
1698
- "hare and a tortoise race like the fable of the hare and the tortoise. When "
1699
- "doing so, however, note that you should make your presentation not so slowly "
1700
- "that the hare will lose to the tortoise."
1701
- msgstr ""
1702
-
1703
- #: ../../lib/rabbit/theme/image-timer/property.rb:21
1704
- msgid "Limit time by second."
1551
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:16
1552
+ msgid "Line fill pattern. @slide_footer_info_line_color is ignored if this parameter is specified."
1705
1553
  msgstr ""
1706
1554
 
1707
- #: ../../lib/rabbit/theme/image-timer/property.rb:25
1708
- msgid "Whether updating image position automatically or not."
1555
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:21 ../lib/rabbit/theme/slide-header-info/property.rb:21
1556
+ msgid "Text size."
1709
1557
  msgstr ""
1710
1558
 
1711
- #: ../../lib/rabbit/theme/image-timer/property.rb:30
1712
- msgid "Whether scrolling automatically or not."
1559
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:25 ../lib/rabbit/theme/slide-header-info/property.rb:25
1560
+ msgid "x-axis margin."
1713
1561
  msgstr ""
1714
1562
 
1715
- #: ../../lib/rabbit/theme/image-timer/property.rb:34
1716
- msgid "Direction of automatic scrolling."
1563
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:29 ../lib/rabbit/theme/slide-header-info/property.rb:29
1564
+ msgid "Text color."
1717
1565
  msgstr ""
1718
1566
 
1719
- #: ../../lib/rabbit/theme/image-timer/property.rb:38
1720
- msgid ""
1721
- "File name of an image that moves. A tortoise image in the ((<rabbit-"
1722
- "images>)) theme is used by default."
1567
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:33 ../lib/rabbit/theme/slide-header-info/property.rb:33
1568
+ msgid "Whether show a text over line or not."
1723
1569
  msgstr ""
1724
1570
 
1725
- #: ../../lib/rabbit/theme/image-timer/property.rb:44
1726
- msgid "Time interval between automatic update."
1571
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:37 ../lib/rabbit/theme/slide-header-info/property.rb:37
1572
+ msgid "Base y-axis position to stroke line."
1727
1573
  msgstr ""
1728
1574
 
1729
- #: ../../lib/rabbit/theme/title-shadow/property.rb:2
1730
- msgid "TitleShadow"
1575
+ #: ../lib/rabbit/theme/slide-footer-info/property.rb:41 ../lib/rabbit/theme/slide-header-info/property.rb:41
1576
+ #: ../lib/rabbit/theme/footer-logo/property.rb:24 ../lib/rabbit/theme/slide-logo/property.rb:24
1577
+ msgid "Whether uninstall this theme or not."
1731
1578
  msgstr ""
1732
1579
 
1733
- #: ../../lib/rabbit/theme/title-shadow/property.rb:3
1734
- msgid "Toolkit to display shadows behind the title"
1580
+ #: ../lib/rabbit/theme/default-description/property.rb:2
1581
+ msgid "DefaultDescription"
1735
1582
  msgstr ""
1736
1583
 
1737
- #: ../../lib/rabbit/theme/title-shadow/property.rb:4
1738
- msgid "Displays shadows behind the title string in the title slide."
1584
+ #: ../lib/rabbit/theme/default-description/property.rb:3
1585
+ msgid "Toolkit to display description-list items with orange underlines."
1739
1586
  msgstr ""
1740
1587
 
1741
- #: ../../lib/rabbit/theme/title-shadow/property.rb:9
1742
- msgid "Color of shadow."
1588
+ #: ../lib/rabbit/theme/default-description/property.rb:5
1589
+ msgid "Displays description-list items with orange underlines."
1743
1590
  msgstr ""
1744
1591
 
1745
- #: ../../lib/rabbit/theme/per-slide-background-color/property.rb:2
1746
- msgid "PerSlideBackgroundColor"
1592
+ #: ../lib/rabbit/theme/ruby-gnome2-headline/property.rb:2
1593
+ msgid "RubyGNOME2Headline"
1747
1594
  msgstr ""
1748
1595
 
1749
- #: ../../lib/rabbit/theme/per-slide-background-color/property.rb:3
1750
- msgid "Toolkit to set background color of each slide"
1596
+ #: ../lib/rabbit/theme/ruby-gnome2-headline/property.rb:3
1597
+ msgid "Toolkit to display headlines like those in the website of the Ruby-GNOME2 Project"
1751
1598
  msgstr ""
1752
1599
 
1753
- #: ../../lib/rabbit/theme/per-slide-background-color/property.rb:4
1754
- msgid ""
1755
- "Set background color of each slide.\n"
1756
- "\n"
1757
- "Each color is specified as a slide property:\n"
1758
- " = target slide\n"
1759
- " \n"
1760
- " ...\n"
1761
- " \n"
1762
- " == properties\n"
1763
- " \n"
1764
- " : background-color\n"
1765
- " black\n"
1766
- msgstr ""
1767
-
1768
- #: ../../lib/rabbit/theme/show-frame/property.rb:2
1769
- msgid "ShowFrame"
1600
+ #: ../lib/rabbit/theme/ruby-gnome2-headline/property.rb:5
1601
+ msgid "Displays headlines like ones in the website of the Ruby-GNOME2 Project; i.e. displays their text colored white and placed in the dark red boxes with pink frames."
1770
1602
  msgstr ""
1771
1603
 
1772
- #: ../../lib/rabbit/theme/show-frame/property.rb:3
1773
- msgid "Debug toolkit to show element frames"
1604
+ #: ../lib/rabbit/theme/color-circle-title-slide/property.rb:2
1605
+ msgid "Color Circle Title Slide"
1774
1606
  msgstr ""
1775
1607
 
1776
- #: ../../lib/rabbit/theme/show-frame/property.rb:4
1777
- msgid "Show element frames useful for debug."
1608
+ #: ../lib/rabbit/theme/color-circle-title-slide/property.rb:3
1609
+ msgid "Toolkit to set ((<color-circle>)) theme's title slide style up."
1778
1610
  msgstr ""
1779
1611
 
1780
- #: ../../lib/rabbit/theme/show-frame/property.rb:8
1781
- msgid "Frame color."
1612
+ #: ../lib/rabbit/theme/color-circle-description/property.rb:2
1613
+ msgid "Color Circle Description"
1782
1614
  msgstr ""
1783
1615
 
1784
- #: ../../lib/rabbit/theme/pdf/property.rb:3
1785
- msgid "Theme for PDF"
1616
+ #: ../lib/rabbit/theme/color-circle-description/property.rb:3
1617
+ msgid "Toolkit to set ((<color-circle>)) theme's description-list style up."
1786
1618
  msgstr ""
1787
1619
 
1788
- #: ../../lib/rabbit/theme/footer-comment/property.rb:2
1789
- msgid "Footer Comment"
1620
+ #: ../lib/rabbit/theme/default-icon/property.rb:2
1621
+ msgid "DefaultIcon"
1790
1622
  msgstr ""
1791
1623
 
1792
- #: ../../lib/rabbit/theme/footer-comment/property.rb:3
1793
- msgid "Show comment on the footer."
1624
+ #: ../lib/rabbit/theme/default-icon/property.rb:3
1625
+ msgid "Toolkit to use pink circle and polygon as icons"
1794
1626
  msgstr ""
1795
1627
 
1796
- #: ../../lib/rabbit/theme/headline-logo/property.rb:2
1797
- msgid "HeadlineLogo"
1628
+ #: ../lib/rabbit/theme/default-icon/property.rb:4
1629
+ msgid "Uses pink circle and polygon as icons."
1798
1630
  msgstr ""
1799
1631
 
1800
- #: ../../lib/rabbit/theme/headline-logo/property.rb:3
1801
- msgid "Toolkit to display an image as a logo at the headlines"
1632
+ #: ../lib/rabbit/theme/color-circle-foot-text/property.rb:2
1633
+ msgid "Color Circle Foot Text"
1802
1634
  msgstr ""
1803
1635
 
1804
- #: ../../lib/rabbit/theme/headline-logo/property.rb:4
1805
- msgid "Displays an image as a logo at the headlines of slides."
1636
+ #: ../lib/rabbit/theme/color-circle-foot-text/property.rb:3
1637
+ msgid "Toolkit to set ((<color-circle>)) theme's foot text style up."
1806
1638
  msgstr ""
1807
1639
 
1808
- #: ../../lib/rabbit/renderer/print/cairo.rb:122
1809
- msgid "can't find printer for %s"
1640
+ #: ../lib/rabbit/theme/default-item-mark/property.rb:2
1641
+ msgid "DefaultItemMark"
1810
1642
  msgstr ""
1811
1643
 
1812
- #: ../../lib/rabbit/renderer/base.rb:386
1813
- msgid "%s does not support: %s"
1644
+ #: ../lib/rabbit/theme/default-item-mark/property.rb:3
1645
+ msgid "Toolkit to display squares as list item marks"
1814
1646
  msgstr ""
1815
1647
 
1816
- #: ../../lib/rabbit/rabbit.rb:50
1817
- msgid "no such file: %s"
1648
+ #: ../lib/rabbit/theme/default-item-mark/property.rb:4
1649
+ msgid "Displays squares at the head of list items."
1818
1650
  msgstr ""
1819
1651
 
1820
- #: ../../lib/rabbit/rabbit.rb:60
1821
- msgid ""
1822
- "can't handle %s because the following command can't be run successfully: %s"
1652
+ #: ../lib/rabbit/theme/lightning-talk/property.rb:2
1653
+ msgid "LightningTalk"
1823
1654
  msgstr ""
1824
1655
 
1825
- #: ../../lib/rabbit/rabbit.rb:70
1826
- msgid "tried gs commands: %s"
1656
+ #: ../lib/rabbit/theme/lightning-talk/property.rb:3
1657
+ msgid "Lightning Talk theme"
1827
1658
  msgstr ""
1828
1659
 
1829
- #: ../../lib/rabbit/rabbit.rb:78
1830
- msgid "tried dia commands: %s"
1660
+ #: ../lib/rabbit/theme/per-slide-background-image/property.rb:2
1661
+ msgid "PerSlideBackgroundImage"
1831
1662
  msgstr ""
1832
1663
 
1833
- #: ../../lib/rabbit/rabbit.rb:86
1834
- msgid "tried gimp commands: %s"
1664
+ #: ../lib/rabbit/theme/per-slide-background-image/property.rb:3
1665
+ msgid "Toolkit to display an image as a background of each slide"
1835
1666
  msgstr ""
1836
1667
 
1837
- #: ../../lib/rabbit/rabbit.rb:114
1838
- msgid "Unknown property: %s"
1668
+ #: ../lib/rabbit/theme/per-slide-background-image/property.rb:4
1669
+ msgid "Displays an image as a background of each slide.\\n\\nEach image is specified as a slide property:\\n = target slide\\n \\n ...\\n \\n == properties\\n \\n : background-image\\n my-picture.png\\n"
1839
1670
  msgstr ""
1840
1671
 
1841
- #: ../../lib/rabbit/rabbit.rb:122
1842
- msgid "can't allocate color: %s"
1672
+ #: ../lib/rabbit/theme/newline-in-slides/property.rb:2
1673
+ msgid "Newline in Slides"
1843
1674
  msgstr ""
1844
1675
 
1845
- #: ../../lib/rabbit/rabbit.rb:133
1846
- msgid "not exist: %s"
1676
+ #: ../lib/rabbit/theme/newline-in-slides/property.rb:4
1677
+ msgid "Enable '\\n' notation to insert newline in all slides."
1847
1678
  msgstr ""
1848
1679
 
1849
- #: ../../lib/rabbit/rabbit.rb:141
1850
- msgid "not a file: %s"
1680
+ #: ../lib/rabbit/theme/color-circle/property.rb:2
1681
+ msgid "Color Circle"
1851
1682
  msgstr ""
1852
1683
 
1853
- #: ../../lib/rabbit/rabbit.rb:149
1854
- msgid "can not be read: %s"
1684
+ #: ../lib/rabbit/theme/color-circle/property.rb:3
1685
+ msgid "Toolkit to make a theme that has colored circles"
1855
1686
  msgstr ""
1856
1687
 
1857
- #: ../../lib/rabbit/rabbit.rb:157
1858
- msgid "immutable source type: %s"
1688
+ #: ../lib/rabbit/theme/color-circle/property.rb:4
1689
+ msgid "There are many colored circles in slides."
1859
1690
  msgstr ""
1860
1691
 
1861
- #: ../../lib/rabbit/rabbit.rb:176
1862
- msgid "not available interface: %s"
1692
+ #: ../lib/rabbit/theme/color-circle/color-circle.rb:16
1693
+ msgid "required variables aren't set: %s"
1863
1694
  msgstr ""
1864
1695
 
1865
- #: ../../lib/rabbit/rabbit.rb:184
1866
- msgid "can't find HTML template: %s"
1696
+ #: ../lib/rabbit/theme/rabbit-item-mark/property.rb:2
1697
+ msgid "RabbitItemMark"
1867
1698
  msgstr ""
1868
1699
 
1869
- #: ../../lib/rabbit/rabbit.rb:192
1870
- msgid "can't find theme RD template: %s"
1700
+ #: ../lib/rabbit/theme/rabbit-item-mark/property.rb:3
1701
+ msgid "Toolkit to display colorful balls as list item marks"
1871
1702
  msgstr ""
1872
1703
 
1873
- #: ../../lib/rabbit/rabbit.rb:200
1874
- msgid "invalid motion: %s"
1704
+ #: ../lib/rabbit/theme/rabbit-item-mark/property.rb:4
1705
+ msgid "Displays colorful balls at the head of list items."
1875
1706
  msgstr ""
1876
1707
 
1877
- #: ../../lib/rabbit/rabbit.rb:215
1878
- msgid ""
1879
- "invalid value of size property \"%{prop_name}\" of image \"%{filename}\": "
1880
- "%{value}"
1708
+ #: ../lib/rabbit/theme/color-circle-method-list/property.rb:2
1709
+ msgid "Color Circle Method List"
1881
1710
  msgstr ""
1882
1711
 
1883
- #: ../../lib/rabbit/rabbit.rb:236
1884
- msgid "unknown cursor type: %s"
1712
+ #: ../lib/rabbit/theme/color-circle-method-list/property.rb:3
1713
+ msgid "Toolkit to set ((<color-circle>)) theme's method-list style up."
1885
1714
  msgstr ""
1886
1715
 
1887
- #: ../../lib/rabbit/rabbit.rb:242
1888
- msgid "print isn't supported"
1716
+ #: ../lib/rabbit/theme/ruby-gnome2-slide/property.rb:2
1717
+ msgid "Ruby-GNOME2 Slide"
1889
1718
  msgstr ""
1890
1719
 
1891
- #: ../../lib/rabbit/source/memory.rb:9
1892
- msgid "[FILENAME_OR_NOT]"
1720
+ #: ../lib/rabbit/theme/ruby-gnome2-slide/property.rb:3
1721
+ msgid "Displays slides with Ruby-GNOME2 style."
1893
1722
  msgstr ""
1894
1723
 
1895
- #: ../../lib/rabbit/source/hiki.rb:13
1896
- msgid "[HIKI_CGI_URI] and [PAGE_NAME]"
1724
+ #: ../lib/rabbit/theme/clutter-comment/property.rb:2
1725
+ msgid "Clutter Comment"
1897
1726
  msgstr ""
1898
1727
 
1899
- #: ../../lib/rabbit/source/file.rb:9
1900
- msgid "[FILENAME]"
1728
+ #: ../lib/rabbit/theme/clutter-comment/property.rb:3
1729
+ msgid "Show comment as a rolling Clutter actor."
1901
1730
  msgstr ""
1902
1731
 
1903
- #: ../../lib/rabbit/source/rwiki.rb:12
1904
- msgid "[RWIKI_SOAP_IF_URI] and [PAGE_NAME]"
1732
+ #: ../lib/rabbit/theme/mirror-effect/property.rb:2
1733
+ msgid "Mirror Effect"
1905
1734
  msgstr ""
1906
1735
 
1907
- #: ../../lib/rabbit/source/uri.rb:25
1908
- msgid "URI"
1736
+ #: ../lib/rabbit/theme/mirror-effect/property.rb:3
1737
+ msgid "Provide mirror_effect method that flips content."
1909
1738
  msgstr ""
1910
1739
 
1911
- #: ../../lib/rabbit/source/argf.rb:10
1912
- msgid "none (get from STDIN) or [FILE_NAMES]"
1740
+ #: ../lib/rabbit/theme/slide-background-image/property.rb:2
1741
+ msgid "SlideBackgroundImage"
1913
1742
  msgstr ""
1914
1743
 
1915
- #: ../../lib/rabbit/source/slide-share.rb:14
1916
- msgid "[USER] and [TITLE]"
1744
+ #: ../lib/rabbit/theme/slide-background-image/property.rb:3
1745
+ msgid "Toolkit to display an image as a background of slides"
1917
1746
  msgstr ""
1918
1747
 
1919
- #: ../../lib/rabbit/canvas.rb:608
1920
- msgid "Unknown action: %s"
1748
+ #: ../lib/rabbit/theme/slide-background-image/property.rb:4
1749
+ msgid "Displays an image as a background of slides."
1921
1750
  msgstr ""
1922
1751
 
1923
- #: ../../lib/rabbit/canvas.rb:679
1924
- msgid "Processing..."
1752
+ #: ../lib/rabbit/theme/entry.rb:107
1753
+ msgid "Etc"
1925
1754
  msgstr ""
1926
1755
 
1927
- #: ../../lib/rabbit/parser/wiki/output.rb:88
1928
- msgid "horizontal rule is unsupported"
1756
+ #: ../lib/rabbit/theme/default-comment/property.rb:2
1757
+ msgid "DefaultComment"
1929
1758
  msgstr ""
1930
1759
 
1931
- #: ../../lib/rabbit/parser/wiki/output.rb:338
1932
- msgid "unsupported list type: %s"
1760
+ #: ../lib/rabbit/theme/default-comment/property.rb:3
1761
+ msgid "Toolkit to set up default comment theme."
1933
1762
  msgstr ""
1934
1763
 
1935
- #: ../../lib/rabbit/parser/wiki/output.rb:433
1936
- msgid "multiple {{image, 'XXX.png', :align => :right}} isn't supported."
1764
+ #: ../lib/rabbit/theme/default-comment/property.rb:4
1765
+ msgid "Sets up default comment theme."
1937
1766
  msgstr ""
1938
1767
 
1939
- #: ../../lib/rabbit/parser/ext/enscript.rb:32
1940
- msgid "enscript: unsupported language: %s"
1768
+ #: ../lib/rabbit/theme/debian/property.rb:2
1769
+ msgid "Debian Theme"
1941
1770
  msgstr ""
1942
1771
 
1943
- #: ../../lib/rabbit/parser/ext/enscript.rb:107
1944
- msgid "enscript: unsupported element name: %s"
1772
+ #: ../lib/rabbit/theme/debian/property.rb:3
1773
+ msgid "Debian GNU/Linux Theme"
1945
1774
  msgstr ""
1946
1775
 
1947
- #: ../../lib/rabbit/parser/ext/aafigure.rb:22
1948
- msgid "tried aafigure command: %s"
1776
+ #: ../lib/rabbit/theme/slide-number/property.rb:2
1777
+ msgid "TextSlideNumber"
1949
1778
  msgstr ""
1950
1779
 
1951
- #: ../../lib/rabbit/parser/ext/emacs.rb:89
1952
- msgid "emacs: unsupported element name: %s"
1780
+ #: ../lib/rabbit/theme/slide-number/property.rb:3
1781
+ msgid "Toolkit to display slide numbers, a text version"
1953
1782
  msgstr ""
1954
1783
 
1955
- #: ../../lib/rabbit/parser/ext/tex.rb:51
1956
- msgid "tried mimeTeX commands: %s"
1784
+ #: ../lib/rabbit/theme/slide-number/property.rb:4
1785
+ msgid "Displays slide numbers with text at the bottom of the slides."
1957
1786
  msgstr ""
1958
1787
 
1959
- #: ../../lib/rabbit/parser/ext/blockdiag.rb:26
1960
- msgid "tried blockdiag command: %s"
1788
+ #: ../lib/rabbit/theme/slide-number/property.rb:12
1789
+ msgid "Properties of the slide numbers, such as font family."
1961
1790
  msgstr ""
1962
1791
 
1963
- #: ../../lib/rabbit/parser/rd/ext/block-verbatim.rb:46
1964
- msgid "multiple 'align = right' isn't supported."
1792
+ #: ../lib/rabbit/theme/icon/property.rb:2
1793
+ msgid "Icon"
1965
1794
  msgstr ""
1966
1795
 
1967
- #: ../../lib/rabbit/parser/rd/ext/block-verbatim.rb:131
1968
- msgid "RTtool isn't available"
1796
+ #: ../lib/rabbit/theme/icon/property.rb:3
1797
+ msgid "Toolkit to specify an image or images as icons"
1969
1798
  msgstr ""
1970
1799
 
1971
- #: ../../lib/rabbit/parser/rd/visitor.rb:49
1972
- msgid "[BUG] [%s] %s extension isn't available."
1800
+ #: ../lib/rabbit/theme/icon/property.rb:4
1801
+ msgid "Specifies an image or images as icons of the window, which will be used by some window managers and desktop environments, for example when the window is minimized (or 'iconified'), in the window frame, or when windows are switched. The specified image or images are automatically scaled to the icon sizes case by case. When several images are specified and they have different sizes, an image with the most similar size to that of icon among them is chosen and scaled in order to improve the quality of image finally displayed."
1973
1802
  msgstr ""
1974
1803
 
1975
- #: ../../lib/rabbit/graffiti/config-dialog.rb:48
1976
- msgid "Line width:"
1804
+ #: ../lib/rabbit/theme/icon/property.rb:18 ../lib/rabbit/theme/powered-by/property.rb:18
1805
+ msgid "List of image file names."
1977
1806
  msgstr ""
1978
1807
 
1979
- #: ../../bin/rabbit:73 ../../bin/rabbit-theme-manager:27
1980
- msgid "Add [PATH] to load path."
1808
+ #: ../lib/rabbit/theme/color-circle-block-quote/property.rb:2
1809
+ msgid "Color Circle block quote"
1981
1810
  msgstr ""
1982
1811
 
1983
- #: ../../bin/rabbit:78
1984
- msgid "Use [THEME] as theme."
1812
+ #: ../lib/rabbit/theme/color-circle-block-quote/property.rb:3
1813
+ msgid "Toolkit to display itemization in quotation"
1985
1814
  msgstr ""
1986
1815
 
1987
- #: ../../bin/rabbit:92
1988
- msgid ""
1989
- "When select %s\n"
1990
- "specify %s\n"
1991
- "as [SOURCE_INFOS]."
1816
+ #: ../lib/rabbit/theme/color-circle-block-quote/property.rb:4
1817
+ msgid "Support itemization in quotation."
1992
1818
  msgstr ""
1993
1819
 
1994
- #: ../../bin/rabbit:99
1995
- msgid "Specify source type as [TYPE]."
1820
+ #: ../lib/rabbit/theme/red-frame/property.rb:2
1821
+ msgid "RedFrame"
1996
1822
  msgstr ""
1997
1823
 
1998
- #: ../../bin/rabbit:101
1999
- msgid "Note: case insensitive."
1824
+ #: ../lib/rabbit/theme/red-frame/property.rb:3
1825
+ msgid "Red frame theme"
1826
+ msgstr ""
1827
+
1828
+ #: ../lib/rabbit/theme/slide-header-info/property.rb:3
1829
+ msgid "Toolkit to display information at the header"
1830
+ msgstr ""
1831
+
1832
+ #: ../lib/rabbit/theme/slide-header-info/property.rb:4
1833
+ msgid "Displays information with a line at the header of slides."
1834
+ msgstr ""
1835
+
1836
+ #: ../lib/rabbit/theme/slide-header-info/property.rb:16
1837
+ msgid "Line fill pattern. @slide_header_info_line_color is ignored if this parameter is specified."
1838
+ msgstr ""
1839
+
1840
+ #: ../lib/rabbit/theme/nari/property.rb:2
1841
+ msgid "Nari"
1842
+ msgstr ""
1843
+
1844
+ #: ../lib/rabbit/theme/nari/property.rb:3
1845
+ msgid "Nari's theme"
1846
+ msgstr ""
1847
+
1848
+ #: ../lib/rabbit/theme/document.erb:3
1849
+ msgid "Name"
1850
+ msgstr ""
1851
+
1852
+ #: ../lib/rabbit/theme/document.erb:6
1853
+ msgid "Category"
1854
+ msgstr ""
1855
+
1856
+ #: ../lib/rabbit/theme/document.erb:10
1857
+ msgid "Abstract"
1858
+ msgstr ""
1859
+
1860
+ #: ../lib/rabbit/theme/document.erb:15
1861
+ msgid "Description"
1862
+ msgstr ""
1863
+
1864
+ #: ../lib/rabbit/theme/document.erb:21
1865
+ msgid "Dependency themes"
1866
+ msgstr ""
1867
+
1868
+ #: ../lib/rabbit/theme/document.erb:28
1869
+ msgid "Parameters"
1870
+ msgstr ""
1871
+
1872
+ #: ../lib/rabbit/theme/document.erb:31
1873
+ msgid "Default: "
1874
+ msgstr ""
1875
+
1876
+ #: ../lib/rabbit/theme/title-background-color/property.rb:2
1877
+ msgid "TitleBackgroundColor"
1878
+ msgstr ""
1879
+
1880
+ #: ../lib/rabbit/theme/title-background-color/property.rb:3
1881
+ msgid "Toolkit to color a background of the title slide"
1882
+ msgstr ""
1883
+
1884
+ #: ../lib/rabbit/theme/title-background-color/property.rb:4
1885
+ msgid "Color a background of the title slide."
1886
+ msgstr ""
1887
+
1888
+ #: ../lib/rabbit/theme/title-background-color/property.rb:8
1889
+ msgid "Background color."
1890
+ msgstr ""
1891
+
1892
+ #: ../lib/rabbit/theme/footer-logo/property.rb:2
1893
+ msgid "Footer Logo"
1894
+ msgstr ""
1895
+
1896
+ #: ../lib/rabbit/theme/footer-logo/property.rb:3
1897
+ msgid "Toolkit to display an image as logo at the footer"
1898
+ msgstr ""
1899
+
1900
+ #: ../lib/rabbit/theme/footer-logo/property.rb:4
1901
+ msgid "Displays an image as a logo at the footer of slides."
1902
+ msgstr ""
1903
+
1904
+ #: ../lib/rabbit/theme/footer-logo/property.rb:12
1905
+ msgid "Whether keep ratio of an image or not."
1906
+ msgstr ""
1907
+
1908
+ #: ../lib/rabbit/theme/footer-logo/property.rb:16
1909
+ msgid "Right margin of an image."
1910
+ msgstr ""
1911
+
1912
+ #: ../lib/rabbit/theme/footer-logo/property.rb:20
1913
+ msgid "Bottom margin of an image."
1914
+ msgstr ""
1915
+
1916
+ #: ../lib/rabbit/theme/centering-rabbit/property.rb:2
1917
+ msgid "Centering Rabbit"
1918
+ msgstr ""
1919
+
1920
+ #: ../lib/rabbit/theme/centering-rabbit/property.rb:3
1921
+ msgid "Rabbit theme with text centering."
1922
+ msgstr ""
1923
+
1924
+ #: ../lib/rabbit/theme/powered-by/property.rb:2
1925
+ msgid "PoweredBy"
1926
+ msgstr ""
1927
+
1928
+ #: ../lib/rabbit/theme/powered-by/property.rb:3
1929
+ msgid "Powered-by ad toolkit"
1930
+ msgstr ""
1931
+
1932
+ #: ../lib/rabbit/theme/powered-by/property.rb:4
1933
+ msgid "Displays programs the presentation slides are powered by (or displays some other ads) at the foot of the title slide and of the last slide. Images and/or a text are available as ads."
1934
+ msgstr ""
1935
+
1936
+ #: ../lib/rabbit/theme/powered-by/property.rb:14
1937
+ msgid "Properties of the ad text, such as font family."
1938
+ msgstr ""
1939
+
1940
+ #: ../lib/rabbit/theme/powered-by/property.rb:22
1941
+ msgid "Ad text."
1942
+ msgstr ""
1943
+
1944
+ #: ../lib/rabbit/theme/rabbit-headline-logo/property.rb:2
1945
+ msgid "RabbitHeadlineLogo"
1946
+ msgstr ""
1947
+
1948
+ #: ../lib/rabbit/theme/rabbit-headline-logo/property.rb:3
1949
+ msgid "Toolkit to display Lavie as a logo at the headlines"
1950
+ msgstr ""
1951
+
1952
+ #: ../lib/rabbit/theme/rabbit-headline-logo/property.rb:4
1953
+ msgid "Displays Lavie as a logo at the headlines of slides."
1954
+ msgstr ""
1955
+
1956
+ #: ../lib/rabbit/theme/image-viewer/property.rb:2
1957
+ msgid "Image viewer"
1958
+ msgstr ""
1959
+
1960
+ #: ../lib/rabbit/theme/image-viewer/property.rb:3
1961
+ msgid "Theme for image viewer mode"
1962
+ msgstr ""
1963
+
1964
+ #: ../lib/rabbit/theme/dark-gradation/property.rb:2
1965
+ msgid "Dark Gradation"
1966
+ msgstr ""
1967
+
1968
+ #: ../lib/rabbit/theme/dark-gradation/property.rb:3
1969
+ msgid "Dark Gradation background theme"
1970
+ msgstr ""
1971
+
1972
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:2
1973
+ msgid "ImageSlideNumber"
1974
+ msgstr ""
1975
+
1976
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:3
1977
+ msgid "Toolkit to display slide numbers, an image version"
1978
+ msgstr ""
1979
+
1980
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:4
1981
+ msgid "Displays the progress of presentation with position of an image. This is useful both for speakers and for listeners to know elapsed slide numbers and slide numbers left. By default, an image of a hare, which is a family of rabbit, jumps along the bottom of slides between two flags.\\n\\nUsing together with another theme, ((<image-timer>)), you can make a hare and a tortoise race like the fable of the hare and the tortoise. When doing so, however, note that you should make your presentation not so slowly that the hare will lose to the tortoise."
1982
+ msgstr ""
1983
+
1984
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:22
1985
+ msgid "File name of an image that moves. An image of a hare in the ((<rabbit-images>)) theme is used by default."
1986
+ msgstr ""
1987
+
1988
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:28
1989
+ msgid "Whether drawing start and goal flags with text or not. When (({true})), flags are drawn with text with a form of (({@image_slide_number_flag_type})) and on which slide numbers are also drawn with color ((|@image_slide_number_text_color|)). Otherwise, image files specified with ((|@image_slide_number_start_image|)) and ((|@image_slide_number_goal_image|)) are used as flags."
1990
+ msgstr ""
1991
+
1992
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:41
1993
+ msgid "Color of numbers displayed on the start and goal flags."
1994
+ msgstr ""
1995
+
1996
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:46
1997
+ msgid "Form of the start and goal flags. Avaiable forms are (({'triangle'})) and (({'rectangle'}))."
1998
+ msgstr ""
1999
+
2000
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:52
2001
+ msgid "File name of an image used as the start flag."
2002
+ msgstr ""
2003
+
2004
+ #: ../lib/rabbit/theme/image-slide-number/property.rb:56
2005
+ msgid "File name of an image used as the goal flag."
2006
+ msgstr ""
2007
+
2008
+ #: ../lib/rabbit/theme/default-method-list/property.rb:2
2009
+ msgid "Default Method List"
2010
+ msgstr ""
2011
+
2012
+ #: ../lib/rabbit/theme/default-method-list/property.rb:3
2013
+ msgid "Displays method description with indent."
2014
+ msgstr ""
2015
+
2016
+ #: ../lib/rabbit/theme/simple-item-mark/property.rb:2
2017
+ msgid "SimpleItemMark"
2018
+ msgstr ""
2019
+
2020
+ #: ../lib/rabbit/theme/simple-item-mark/property.rb:3
2021
+ msgid "Toolkit to display simple black circles as list item marks"
2022
+ msgstr ""
2023
+
2024
+ #: ../lib/rabbit/theme/simple-item-mark/property.rb:4
2025
+ msgid "Displays simple black circles at the head of list items."
2026
+ msgstr ""
2027
+
2028
+ #: ../lib/rabbit/theme/rabbit-block-quote/property.rb:2
2029
+ msgid "Rabbit Block Quote"
2030
+ msgstr ""
2031
+
2032
+ #: ../lib/rabbit/theme/rabbit-block-quote/property.rb:3
2033
+ msgid "Displays quotation block with quote mark in frame."
2034
+ msgstr ""
2035
+
2036
+ #: ../lib/rabbit/theme/green-circle/property.rb:2
2037
+ msgid "Green Circle"
2038
+ msgstr ""
2039
+
2040
+ #: ../lib/rabbit/theme/green-circle/property.rb:3
2041
+ msgid "Green Circle theme"
2042
+ msgstr ""
2043
+
2044
+ #: ../lib/rabbit/theme/slide-logo/property.rb:2
2045
+ msgid "Slide Logo"
2046
+ msgstr ""
2047
+
2048
+ #: ../lib/rabbit/theme/slide-logo/property.rb:3
2049
+ msgid "Toolkit to display an image as logo at the top"
2050
+ msgstr ""
2051
+
2052
+ #: ../lib/rabbit/theme/slide-logo/property.rb:4
2053
+ msgid "Displays an image as a logo at the top of all slides."
2054
+ msgstr ""
2055
+
2056
+ #: ../lib/rabbit/theme/slide-logo/property.rb:12
2057
+ msgid "Image position. :right or :left."
2058
+ msgstr ""
2059
+
2060
+ #: ../lib/rabbit/theme/slide-logo/property.rb:16
2061
+ msgid "Image width."
2062
+ msgstr ""
2063
+
2064
+ #: ../lib/rabbit/theme/slide-logo/property.rb:20
2065
+ msgid "Image height."
2066
+ msgstr ""
2067
+
2068
+ #: ../lib/rabbit/theme/rubykaigi2011/property.rb:2
2069
+ msgid "RubyKaigi2011"
2070
+ msgstr ""
2071
+
2072
+ #: ../lib/rabbit/theme/rubykaigi2011/property.rb:3
2073
+ msgid "RubyKaigi2011 theme"
2074
+ msgstr ""
2075
+
2076
+ #: ../lib/rabbit/theme/title-background-image/property.rb:2
2077
+ msgid "TitleBackgroundImage"
2078
+ msgstr ""
2079
+
2080
+ #: ../lib/rabbit/theme/title-background-image/property.rb:3 ../lib/rabbit/theme/title-slide-background-image/property.rb:3
2081
+ msgid "Toolkit to display an image as a background of the title slide"
2082
+ msgstr ""
2083
+
2084
+ #: ../lib/rabbit/theme/title-background-image/property.rb:5 ../lib/rabbit/theme/title-slide-background-image/property.rb:4
2085
+ msgid "Displays an image as a background of the title slide."
2086
+ msgstr ""
2087
+
2088
+ #: ../lib/rabbit/theme/ruby-gnome2/property.rb:2
2089
+ msgid "Ruby-GNOME2"
2090
+ msgstr ""
2091
+
2092
+ #: ../lib/rabbit/theme/ruby-gnome2/property.rb:3
2093
+ msgid "Ruby-GNOME2 theme"
2094
+ msgstr ""
2095
+
2096
+ #: ../lib/rabbit/theme/rabbit-icon/property.rb:2
2097
+ msgid "RabbitIcon"
2098
+ msgstr ""
2099
+
2100
+ #: ../lib/rabbit/theme/rabbit-icon/property.rb:3
2101
+ msgid "Toolkit to use Lavie as icons"
2102
+ msgstr ""
2103
+
2104
+ #: ../lib/rabbit/theme/rabbit-icon/property.rb:4
2105
+ msgid "Uses Lavie as icons."
2106
+ msgstr ""
2107
+
2108
+ #: ../lib/rabbit/theme/color-circle-text/property.rb:2
2109
+ msgid "Color Circle Text"
2110
+ msgstr ""
2111
+
2112
+ #: ../lib/rabbit/theme/color-circle-text/property.rb:3
2113
+ msgid "Toolkit to set ((<color-circle>)) theme's text style up."
2114
+ msgstr ""
2115
+
2116
+ #: ../lib/rabbit/theme/default-slide/property.rb:2
2117
+ msgid "Default Slide"
2118
+ msgstr ""
2119
+
2120
+ #: ../lib/rabbit/theme/default-slide/property.rb:3
2121
+ msgid "Displays headline with line."
2122
+ msgstr ""
2123
+
2124
+ #: ../lib/rabbit/theme/color-circle-item-mark/property.rb:2
2125
+ msgid "Color Circle Item Mark"
2126
+ msgstr ""
2127
+
2128
+ #: ../lib/rabbit/theme/color-circle-item-mark/property.rb:3
2129
+ msgid "Toolkit to set ((<color-circle>)) theme's item marks style up."
2130
+ msgstr ""
2131
+
2132
+ #: ../lib/rabbit/theme/title-slide-background-image/property.rb:2
2133
+ msgid "TitleSlideBackgroundImage"
2000
2134
  msgstr ""
2001
2135
 
2002
- #: ../../bin/rabbit:115
2003
- msgid "Specify source encoding as [ENCODING]."
2136
+ #: ../lib/rabbit/theme/lightning-monochrome/property.rb:2
2137
+ msgid "LightningTalk-Monochrome"
2004
2138
  msgstr ""
2005
2139
 
2006
- #: ../../bin/rabbit:121
2007
- msgid "Specify base URI or path of source as [BASE]."
2140
+ #: ../lib/rabbit/theme/lightning-monochrome/property.rb:3
2141
+ msgid "Lightning Talk theme monochrome version"
2008
2142
  msgstr ""
2009
2143
 
2010
- #: ../../bin/rabbit:127
2011
- msgid "Initial state"
2144
+ #: ../lib/rabbit/theme/lightning-talk-toolkit/property.rb:2
2145
+ msgid "LightningTalk-Toolkit"
2012
2146
  msgstr ""
2013
2147
 
2014
- #: ../../bin/rabbit:130
2015
- msgid "Toggle full screen mode."
2148
+ #: ../lib/rabbit/theme/lightning-talk-toolkit/property.rb:3
2149
+ msgid "Displays slides for lightning talk"
2016
2150
  msgstr ""
2017
2151
 
2018
- #: ../../bin/rabbit:136
2019
- msgid "Toggle index mode."
2152
+ #: ../lib/rabbit/theme/color-circle-preformatted/property.rb:2
2153
+ msgid "Color Circle Preformatted"
2020
2154
  msgstr ""
2021
2155
 
2022
- #: ../../bin/rabbit:142
2023
- msgid "Size"
2156
+ #: ../lib/rabbit/theme/color-circle-preformatted/property.rb:3
2157
+ msgid "Toolkit to set ((<color-circle>)) theme's preformatted text style up."
2024
2158
  msgstr ""
2025
2159
 
2026
- #: ../../bin/rabbit:145
2027
- msgid "Set window geometry [GEOMETRY]."
2160
+ #: ../lib/rabbit/theme/rabbit-title-logo/property.rb:2
2161
+ msgid "RabbitTitleLogo"
2028
2162
  msgstr ""
2029
2163
 
2030
- #: ../../bin/rabbit:146
2031
- msgid "Format: WIDTHxHEIGHT+X+Y"
2164
+ #: ../lib/rabbit/theme/rabbit-title-logo/property.rb:3
2165
+ msgid "Toolkit to display Lavie as a logo in the title slide"
2032
2166
  msgstr ""
2033
2167
 
2034
- #: ../../bin/rabbit:153 ../../bin/rabbit-theme-manager:43
2035
- msgid "Set window width to [WIDTH]."
2168
+ #: ../lib/rabbit/theme/rabbit-title-logo/property.rb:4
2169
+ msgid "Displays Lavie as a logo in the title slide."
2036
2170
  msgstr ""
2037
2171
 
2038
- #: ../../bin/rabbit:160 ../../bin/rabbit-theme-manager:50
2039
- msgid "Set window height to [HEIGHT]."
2172
+ #: ../lib/rabbit/theme/image-timer/property.rb:2
2173
+ msgid "ImageTimer"
2040
2174
  msgstr ""
2041
2175
 
2042
- #: ../../bin/rabbit:165 ../../bin/rabbit-theme-manager:55
2043
- msgid ""
2044
- "Set window width and height to\n"
2045
- "[WIDTH] and [HEIGHT]."
2176
+ #: ../lib/rabbit/theme/image-timer/property.rb:3
2177
+ msgid "Timer toolkit, an image version"
2046
2178
  msgstr ""
2047
2179
 
2048
- #: ../../bin/rabbit:177
2049
- msgid "Save"
2180
+ #: ../lib/rabbit/theme/image-timer/property.rb:4
2181
+ msgid "Displays the progress of time with position of an image. This is useful both for speakers and for listeners to know elapsed time and time left. By default, a tortoise image walks along the bottom of slides slowly step by step.\\n\\nUsing together with another theme, ((<image-slide-number>)), you can make a hare and a tortoise race like the fable of the hare and the tortoise. When doing so, however, note that you should make your presentation not so slowly that the hare will lose to the tortoise."
2050
2182
  msgstr ""
2051
2183
 
2052
- #: ../../bin/rabbit:180
2053
- msgid "Save as image and exit."
2184
+ #: ../lib/rabbit/theme/image-timer/property.rb:21
2185
+ msgid "Limit time by second."
2054
2186
  msgstr ""
2055
2187
 
2056
- #: ../../bin/rabbit:185
2057
- msgid "Specify saved image type as [TYPE]."
2188
+ #: ../lib/rabbit/theme/image-timer/property.rb:25
2189
+ msgid "Whether updating image position automatically or not."
2058
2190
  msgstr ""
2059
2191
 
2060
- #: ../../bin/rabbit:192
2061
- msgid "Specify saved image base name as [BASE_NAME]."
2192
+ #: ../lib/rabbit/theme/image-timer/property.rb:30
2193
+ msgid "Whether scrolling automatically or not."
2062
2194
  msgstr ""
2063
2195
 
2064
- #: ../../bin/rabbit:193 ../../bin/rabbit:231
2065
- msgid "Title of slide"
2196
+ #: ../lib/rabbit/theme/image-timer/property.rb:34
2197
+ msgid "Direction of automatic scrolling."
2066
2198
  msgstr ""
2067
2199
 
2068
- #: ../../bin/rabbit:198
2069
- msgid "Output HTML for viewing saved images."
2200
+ #: ../lib/rabbit/theme/image-timer/property.rb:38
2201
+ msgid "File name of an image that moves. A tortoise image in the ((<rabbit-images>)) theme is used by default."
2070
2202
  msgstr ""
2071
2203
 
2072
- #: ../../bin/rabbit:204
2073
- msgid "Output index HTML for navigating slides."
2204
+ #: ../lib/rabbit/theme/image-timer/property.rb:44
2205
+ msgid "Time interval between automatic update."
2074
2206
  msgstr ""
2075
2207
 
2076
- #: ../../bin/rabbit:210
2077
- msgid "Specify base URI of RSS as [URI]."
2208
+ #: ../lib/rabbit/theme/title-shadow/property.rb:2
2209
+ msgid "TitleShadow"
2078
2210
  msgstr ""
2079
2211
 
2080
- #: ../../bin/rabbit:211
2081
- msgid "RSS is generated only when HTML is output."
2212
+ #: ../lib/rabbit/theme/title-shadow/property.rb:3
2213
+ msgid "Toolkit to display shadows behind the title"
2082
2214
  msgstr ""
2083
2215
 
2084
- #: ../../bin/rabbit:217
2085
- msgid "Specify source filenam as [FILENAME]."
2216
+ #: ../lib/rabbit/theme/title-shadow/property.rb:4
2217
+ msgid "Displays shadows behind the title string in the title slide."
2086
2218
  msgstr ""
2087
2219
 
2088
- #: ../../bin/rabbit:225
2089
- msgid "Print and exit."
2220
+ #: ../lib/rabbit/theme/title-shadow/property.rb:9
2221
+ msgid "Color of shadow."
2090
2222
  msgstr ""
2091
2223
 
2092
- #: ../../bin/rabbit:230
2093
- msgid "Specify printed out filename as [FILENAME]."
2224
+ #: ../lib/rabbit/theme/per-slide-background-color/property.rb:2
2225
+ msgid "PerSlideBackgroundColor"
2094
2226
  msgstr ""
2095
2227
 
2096
- #: ../../bin/rabbit:237
2097
- msgid "Set slides per page."
2228
+ #: ../lib/rabbit/theme/per-slide-background-color/property.rb:3
2229
+ msgid "Toolkit to set background color of each slide"
2098
2230
  msgstr ""
2099
2231
 
2100
- #: ../../bin/rabbit:243
2101
- msgid "Draw scaled image."
2232
+ #: ../lib/rabbit/theme/per-slide-background-color/property.rb:4
2233
+ msgid "Set background color of each slide.\\n\\nEach color is specified as a slide property:\\n = target slide\\n \\n ...\\n \\n == properties\\n \\n : background-color\\n black\\n"
2102
2234
  msgstr ""
2103
2235
 
2104
- #: ../../bin/rabbit:244
2105
- msgid "Better look for displaying but lesser look for printing."
2236
+ #: ../lib/rabbit/theme/show-frame/property.rb:2
2237
+ msgid "ShowFrame"
2106
2238
  msgstr ""
2107
2239
 
2108
- #: ../../bin/rabbit:249
2109
- msgid "Paper"
2240
+ #: ../lib/rabbit/theme/show-frame/property.rb:3
2241
+ msgid "Debug toolkit to show element frames"
2110
2242
  msgstr ""
2111
2243
 
2112
- #: ../../bin/rabbit:253
2113
- msgid "Set paper width to [WIDTH] Pt."
2244
+ #: ../lib/rabbit/theme/show-frame/property.rb:4
2245
+ msgid "Show element frames useful for debug."
2114
2246
  msgstr ""
2115
2247
 
2116
- #: ../../bin/rabbit:254
2117
- msgid "(landscape A4 width)"
2248
+ #: ../lib/rabbit/theme/show-frame/property.rb:8
2249
+ msgid "Frame color."
2118
2250
  msgstr ""
2119
2251
 
2120
- #: ../../bin/rabbit:260
2121
- msgid "Set paper height to [HEIGHT] Pt."
2252
+ #: ../lib/rabbit/theme/pdf/property.rb:3
2253
+ msgid "Theme for PDF"
2122
2254
  msgstr ""
2123
2255
 
2124
- #: ../../bin/rabbit:261
2125
- msgid "(landscape A4 height)"
2256
+ #: ../lib/rabbit/theme/footer-comment/property.rb:2
2257
+ msgid "Footer Comment"
2126
2258
  msgstr ""
2127
2259
 
2128
- #: ../../bin/rabbit:265
2129
- msgid ""
2130
- "Set paper width and height to\n"
2131
- "[WIDTH] Pt and [HEIGHT] Pt."
2260
+ #: ../lib/rabbit/theme/footer-comment/property.rb:3
2261
+ msgid "Show comment on the footer."
2132
2262
  msgstr ""
2133
2263
 
2134
- #: ../../bin/rabbit:267
2135
- msgid "(landscape A4 size)"
2264
+ #: ../lib/rabbit/theme/headline-logo/property.rb:2
2265
+ msgid "HeadlineLogo"
2136
2266
  msgstr ""
2137
2267
 
2138
- #: ../../bin/rabbit:277
2139
- msgid "Margin"
2268
+ #: ../lib/rabbit/theme/headline-logo/property.rb:3
2269
+ msgid "Toolkit to display an image as a logo at the headlines"
2140
2270
  msgstr ""
2141
2271
 
2142
- #: ../../bin/rabbit:281
2143
- msgid "Set left margin for slides per page mode print."
2272
+ #: ../lib/rabbit/theme/headline-logo/property.rb:4
2273
+ msgid "Displays an image as a logo at the headlines of slides."
2144
2274
  msgstr ""
2145
2275
 
2146
- #: ../../bin/rabbit:288
2147
- msgid "Set right margin for slides per page mode print."
2276
+ #: ../lib/rabbit/author-configuration.rb:51
2277
+ msgid "Failed to read author configuration: %s: %s"
2148
2278
  msgstr ""
2149
2279
 
2150
- #: ../../bin/rabbit:295
2151
- msgid "Set top margin for slides per page mode print."
2280
+ #: ../lib/rabbit/author-configuration.rb:69
2281
+ msgid "Failed to write author configuration: %s: %s"
2152
2282
  msgstr ""
2153
2283
 
2154
- #: ../../bin/rabbit:302
2155
- msgid "Set bottom margin for slides per page mode print."
2284
+ #: ../lib/rabbit/path-manipulatable.rb:28
2285
+ msgid "Creating directory: %s"
2156
2286
  msgstr ""
2157
2287
 
2158
- #: ../../bin/rabbit:307
2159
- msgid "[ALL]"
2288
+ #: ../lib/rabbit/path-manipulatable.rb:36
2289
+ msgid "Creating file: %s"
2160
2290
  msgstr ""
2161
2291
 
2162
- #: ../../bin/rabbit:308
2163
- msgid "[TOP_BOTTOM],[LEFT_RIGHT]"
2292
+ #: ../lib/rabbit/renderer/print/cairo.rb:122
2293
+ msgid "can't find printer for %s"
2164
2294
  msgstr ""
2165
2295
 
2166
- #: ../../bin/rabbit:309
2167
- msgid "[TOP],[LEFT_RIGHT],[BOTTOM]"
2296
+ #: ../lib/rabbit/renderer/base.rb:385
2297
+ msgid "%s does not support: %s"
2168
2298
  msgstr ""
2169
2299
 
2170
- #: ../../bin/rabbit:310
2171
- msgid "[TOP],[RIGHT],[BOTTOM],[LEFT]"
2300
+ #: ../lib/rabbit/task/slide.rb:54
2301
+ msgid "To run rabbit, create '%{options_file}'!"
2172
2302
  msgstr ""
2173
2303
 
2174
- #: ../../bin/rabbit:313
2175
- msgid "Set margin for slides per page mode print."
2304
+ #: ../lib/rabbit/task/slide.rb:58
2305
+ msgid "Show slide"
2176
2306
  msgstr ""
2177
2307
 
2178
- #: ../../bin/rabbit:327
2179
- msgid "Set left page margin."
2308
+ #: ../lib/rabbit/task/slide.rb:63 ../lib/rabbit/task/theme.rb:52
2309
+ msgid "Create gem: %{gem_path}"
2180
2310
  msgstr ""
2181
2311
 
2182
- #: ../../bin/rabbit:334
2183
- msgid "Set right page margin."
2312
+ #: ../lib/rabbit/task/slide.rb:73 ../lib/rabbit/task/theme.rb:62
2313
+ msgid "Write %{item} in %{where}: %{content}"
2184
2314
  msgstr ""
2185
2315
 
2186
- #: ../../bin/rabbit:341
2187
- msgid "Set top page margin."
2316
+ #: ../lib/rabbit/task/slide.rb:98 ../lib/rabbit/task/theme.rb:89
2317
+ msgid "Generate PDF: %{pdf_path}"
2188
2318
  msgstr ""
2189
2319
 
2190
- #: ../../bin/rabbit:348
2191
- msgid "Set bottom page margin."
2320
+ #: ../lib/rabbit/task/slide.rb:101
2321
+ msgid "Publish the slide to all available targets"
2192
2322
  msgstr ""
2193
2323
 
2194
- #: ../../bin/rabbit:355
2195
- msgid "Set page margin."
2324
+ #: ../lib/rabbit/task/slide.rb:107 ../lib/rabbit/task/slide.rb:115 ../lib/rabbit/task/slide.rb:136
2325
+ msgid "Publish the slide to %s"
2196
2326
  msgstr ""
2197
2327
 
2198
- #: ../../bin/rabbit:367
2199
- msgid "dRuby"
2328
+ #: ../lib/rabbit/task/slide.rb:127
2329
+ msgid "Uploaded successfully!"
2200
2330
  msgstr ""
2201
2331
 
2202
- #: ../../bin/rabbit:370
2203
- msgid "Specify whether to use dRuby."
2332
+ #: ../lib/rabbit/task/slide.rb:128
2333
+ msgid "See %s"
2204
2334
  msgstr ""
2205
2335
 
2206
- #: ../../bin/rabbit:376
2207
- msgid "Specify dRuby URI."
2336
+ #: ../lib/rabbit/task/theme.rb:47
2337
+ msgid "Show theme benchmark slide with this theme"
2208
2338
  msgstr ""
2209
2339
 
2210
- #: ../../bin/rabbit:382
2211
- msgid "Specify whether to output dRuby URI."
2340
+ #: ../lib/rabbit/task/theme.rb:92
2341
+ msgid "Publish the theme to all available targets"
2212
2342
  msgstr ""
2213
2343
 
2214
- #: ../../bin/rabbit:387
2215
- msgid "SOAP"
2344
+ #: ../lib/rabbit/task/theme.rb:98
2345
+ msgid "Publish the theme to %s"
2216
2346
  msgstr ""
2217
2347
 
2218
- #: ../../bin/rabbit:390
2219
- msgid "Specify whether to use SOAP."
2348
+ #: ../lib/rabbit/rabbit.rb:60
2349
+ msgid "no such file: %s"
2220
2350
  msgstr ""
2221
2351
 
2222
- #: ../../bin/rabbit:396
2223
- msgid "Specify SOAP host as [HOST]."
2352
+ #: ../lib/rabbit/rabbit.rb:70
2353
+ msgid "can't handle %s because the following command can't be run successfully: %s"
2224
2354
  msgstr ""
2225
2355
 
2226
- #: ../../bin/rabbit:404
2227
- msgid "Specify SOAP port as [PORT]."
2356
+ #: ../lib/rabbit/rabbit.rb:80
2357
+ msgid "tried gs commands: %s"
2228
2358
  msgstr ""
2229
2359
 
2230
- #: ../../bin/rabbit:413
2231
- msgid "XML-RPC"
2360
+ #: ../lib/rabbit/rabbit.rb:88
2361
+ msgid "tried dia commands: %s"
2232
2362
  msgstr ""
2233
2363
 
2234
- #: ../../bin/rabbit:416
2235
- msgid "Specify whether to use XML-RPC."
2364
+ #: ../lib/rabbit/rabbit.rb:96
2365
+ msgid "tried gimp commands: %s"
2236
2366
  msgstr ""
2237
2367
 
2238
- #: ../../bin/rabbit:422
2239
- msgid "Specify XML-RPC host as [HOST]."
2368
+ #: ../lib/rabbit/rabbit.rb:124
2369
+ msgid "Unknown property: %s"
2240
2370
  msgstr ""
2241
2371
 
2242
- #: ../../bin/rabbit:430
2243
- msgid "Specify XML-RPC port as [PORT]."
2372
+ #: ../lib/rabbit/rabbit.rb:132
2373
+ msgid "can't allocate color: %s"
2244
2374
  msgstr ""
2245
2375
 
2246
- #: ../../bin/rabbit:439
2247
- msgid "Server"
2376
+ #: ../lib/rabbit/rabbit.rb:143
2377
+ msgid "not exist: %s"
2248
2378
  msgstr ""
2249
2379
 
2250
- #: ../../bin/rabbit:442
2251
- msgid "Specify whether to run as server."
2380
+ #: ../lib/rabbit/rabbit.rb:151
2381
+ msgid "not a file: %s"
2252
2382
  msgstr ""
2253
2383
 
2254
- #: ../../bin/rabbit:447
2255
- msgid "Public level"
2384
+ #: ../lib/rabbit/rabbit.rb:159
2385
+ msgid "can not be read: %s"
2256
2386
  msgstr ""
2257
2387
 
2258
- #: ../../bin/rabbit:454
2259
- msgid "Specify public level."
2388
+ #: ../lib/rabbit/rabbit.rb:167
2389
+ msgid "immutable source type: %s"
2260
2390
  msgstr ""
2261
2391
 
2262
- #: ../../bin/rabbit:455
2263
- msgid "Select from the following:"
2392
+ #: ../lib/rabbit/rabbit.rb:186
2393
+ msgid "not available interface: %s"
2264
2394
  msgstr ""
2265
2395
 
2266
- #: ../../bin/rabbit:472 ../../bin/rabbit:478
2267
- msgid "Deprecated. Just ignored."
2396
+ #: ../lib/rabbit/rabbit.rb:194
2397
+ msgid "can't find HTML template: %s"
2268
2398
  msgstr ""
2269
2399
 
2270
- #: ../../bin/rabbit:473
2271
- msgid "Specify initial comment source."
2400
+ #: ../lib/rabbit/rabbit.rb:202
2401
+ msgid "can't find theme RD template: %s"
2272
2402
  msgstr ""
2273
2403
 
2274
- #: ../../bin/rabbit:474
2275
- msgid "(default source)"
2404
+ #: ../lib/rabbit/rabbit.rb:210
2405
+ msgid "invalid motion: %s"
2276
2406
  msgstr ""
2277
2407
 
2278
- #: ../../bin/rabbit:479
2279
- msgid "Specify comment source encoding."
2408
+ #: ../lib/rabbit/rabbit.rb:225
2409
+ msgid "invalid value of size property \"%{prop_name}\" of image \"%{filename}\": %{value}"
2280
2410
  msgstr ""
2281
2411
 
2282
- #: ../../bin/rabbit:483
2283
- msgid "Migemo"
2412
+ #: ../lib/rabbit/rabbit.rb:246
2413
+ msgid "unknown cursor type: %s"
2284
2414
  msgstr ""
2285
2415
 
2286
- #: ../../bin/rabbit:488
2287
- msgid "Specify search paths for Migemo static dictionary."
2416
+ #: ../lib/rabbit/rabbit.rb:252
2417
+ msgid "print isn't supported"
2288
2418
  msgstr ""
2289
2419
 
2290
- #: ../../bin/rabbit:495
2291
- msgid "Specify static dictionary name for Migemo."
2420
+ #: ../lib/rabbit/source/memory.rb:9
2421
+ msgid "[FILENAME_OR_NOT]"
2292
2422
  msgstr ""
2293
2423
 
2294
- #: ../../bin/rabbit:500
2295
- msgid "3D"
2424
+ #: ../lib/rabbit/source/hiki.rb:13
2425
+ msgid "[HIKI_CGI_URI] and [PAGE_NAME]"
2296
2426
  msgstr ""
2297
2427
 
2298
- #: ../../bin/rabbit:503
2299
- msgid "Specify whether to use OpenGL if available."
2428
+ #: ../lib/rabbit/source/file.rb:9
2429
+ msgid "[FILENAME]"
2300
2430
  msgstr ""
2301
2431
 
2302
- #: ../../bin/rabbit:508
2303
- msgid "Display"
2432
+ #: ../lib/rabbit/source/uri.rb:25
2433
+ msgid "URI"
2304
2434
  msgstr ""
2305
2435
 
2306
- #: ../../bin/rabbit:511
2307
- msgid "Specify whether to keep above window."
2436
+ #: ../lib/rabbit/source/argf.rb:10
2437
+ msgid "none (get from STDIN) or [FILE_NAMES]"
2308
2438
  msgstr ""
2309
2439
 
2310
- #: ../../bin/rabbit:516
2311
- msgid "Others"
2440
+ #: ../lib/rabbit/source/slide-share.rb:14
2441
+ msgid "[USER] and [TITLE]"
2312
2442
  msgstr ""
2313
2443
 
2314
- #: ../../bin/rabbit:519
2315
- msgid "Show a native window ID of the Rabbit window if available."
2444
+ #: ../lib/rabbit/canvas.rb:607
2445
+ msgid "Unknown action: %s"
2316
2446
  msgstr ""
2317
2447
 
2318
- #: ../../bin/rabbit:520
2319
- msgid "e.g. The ID is the ID of X resource on X window system."
2448
+ #: ../lib/rabbit/canvas.rb:675
2449
+ msgid "Processing..."
2320
2450
  msgstr ""
2321
2451
 
2322
- #: ../../bin/rabbit:539
2323
- msgid "Choose a Rabbit source file"
2452
+ #: ../lib/rabbit/parser/wiki/output.rb:88
2453
+ msgid "horizontal rule is unsupported"
2324
2454
  msgstr ""
2325
2455
 
2326
- #: ../../bin/rabbit:658
2327
- msgid "dRuby URI <%s> is in use."
2456
+ #: ../lib/rabbit/parser/wiki/output.rb:338
2457
+ msgid "unsupported list type: %s"
2328
2458
  msgstr ""
2329
2459
 
2330
- #: ../../bin/rabbit:677
2331
- msgid "port <%s> for SOAP is in use."
2460
+ #: ../lib/rabbit/parser/wiki/output.rb:437
2461
+ msgid "multiple {{image, 'XXX.png', :align => :right}} isn't supported."
2332
2462
  msgstr ""
2333
2463
 
2334
- #: ../../bin/rabbit:698
2335
- msgid "port <%s> for XML-RPC is in use."
2464
+ #: ../lib/rabbit/parser/ext/enscript.rb:30
2465
+ msgid "enscript: unsupported language: %s"
2336
2466
  msgstr ""
2337
2467
 
2338
- #: ../../bin/rabbit:759
2339
- msgid "Window ID: %d"
2468
+ #: ../lib/rabbit/parser/ext/enscript.rb:112
2469
+ msgid "enscript: unsupported element name: %s"
2340
2470
  msgstr ""
2341
2471
 
2342
- #: ../../bin/rabbit:805
2343
- msgid "going to shutdown..."
2472
+ #: ../lib/rabbit/parser/ext/aafigure.rb:24
2473
+ msgid "tried aafigure command: %s"
2344
2474
  msgstr ""
2345
2475
 
2346
- #: ../../bin/rabbit:807
2347
- msgid "DRb.thread done."
2476
+ #: ../lib/rabbit/parser/ext/emacs.rb:94
2477
+ msgid "emacs: unsupported element name: %s"
2348
2478
  msgstr ""
2349
2479
 
2350
- #: ../../bin/rabbit-command:17 ../../bin/rabbit-command:25
2351
- #: ../../bin/rabrick:24 ../../bin/rabrick:32
2352
- msgid "Specify Rabbit's dRuby URI as [URI]."
2480
+ #: ../lib/rabbit/parser/ext/tex.rb:53
2481
+ msgid "tried mimeTeX commands: %s"
2353
2482
  msgstr ""
2354
2483
 
2355
- #: ../../bin/rabbit-command:23 ../../bin/rabrick:30
2356
- msgid "Deprecated."
2484
+ #: ../lib/rabbit/parser/ext/blockdiag.rb:28
2485
+ msgid "tried blockdiag command: %s"
2357
2486
  msgstr ""
2358
2487
 
2359
- #: ../../bin/rabbit-command:24 ../../bin/rabrick:31
2360
- msgid "Use --rabbit-uri instead."
2488
+ #: ../lib/rabbit/parser/markdown/converter.rb:132
2489
+ msgid "multiple ![alt]{image} in a paragraph isn't supported."
2361
2490
  msgstr ""
2362
2491
 
2363
- #: ../../bin/rabbit-command:31
2364
- msgid "Move commands"
2492
+ #: ../lib/rabbit/parser/markdown/converter.rb:225
2493
+ msgid "multiple ![]('XXX.png'){:align='right'} isn't supported."
2365
2494
  msgstr ""
2366
2495
 
2367
- #: ../../bin/rabbit-command:33
2368
- msgid "Move to previous"
2496
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:46
2497
+ msgid "multiple 'align = right' isn't supported."
2369
2498
  msgstr ""
2370
2499
 
2371
- #: ../../bin/rabbit-command:37
2372
- msgid "Move to next"
2500
+ #: ../lib/rabbit/parser/rd/ext/block-verbatim.rb:131
2501
+ msgid "RTtool isn't available"
2373
2502
  msgstr ""
2374
2503
 
2375
- #: ../../bin/rabbit-command:41
2376
- msgid "Move to the previous slide"
2504
+ #: ../lib/rabbit/parser/rd/visitor.rb:49
2505
+ msgid "[BUG] [%s] %s extension isn't available."
2377
2506
  msgstr ""
2378
2507
 
2379
- #: ../../bin/rabbit-command:45
2380
- msgid "Move to the next slide"
2508
+ #: ../lib/rabbit/graffiti/config-dialog.rb:48
2509
+ msgid "Line width:"
2381
2510
  msgstr ""
2382
2511
 
2383
- #: ../../bin/rabbit-command:49
2384
- msgid "Move to the first slide"
2512
+ #: ../data/rabbit/image/rabbit-images/property.rb:2
2513
+ msgid "RabbitImage"
2385
2514
  msgstr ""
2386
2515
 
2387
- #: ../../bin/rabbit-command:53
2388
- msgid "Move to the last slide"
2516
+ #: ../data/rabbit/image/rabbit-images/property.rb:3
2517
+ msgid "Images related to Rabbit"
2389
2518
  msgstr ""
2390
2519
 
2391
- #: ../../bin/rabbit-command:57
2392
- msgid "Move to the Nth slide"
2520
+ #: ../data/rabbit/image/rabbit-images/property.rb:4
2521
+ msgid "Provides images related to Rabbit."
2393
2522
  msgstr ""
2394
2523
 
2395
- #: ../../bin/rabbit-command:61
2396
- msgid "Get commands"
2524
+ #: ../data/rabbit/image/ruby-images/property.rb:2
2525
+ msgid "RubyImage"
2397
2526
  msgstr ""
2398
2527
 
2399
- #: ../../bin/rabbit-command:63
2400
- msgid "Show source"
2528
+ #: ../data/rabbit/image/ruby-images/property.rb:3
2529
+ msgid "Images related to Ruby"
2401
2530
  msgstr ""
2402
2531
 
2403
- #: ../../bin/rabbit-command:67
2404
- msgid "Show the current slide source as RD"
2532
+ #: ../data/rabbit/image/ruby-images/property.rb:4
2533
+ msgid "Provides images related to Ruby."
2405
2534
  msgstr ""
2406
2535
 
2407
- #: ../../bin/rabbit-command:71
2408
- msgid "Control commands"
2536
+ #: ../data/rabbit/image/clear-blue-images/property.rb:2
2537
+ msgid "Clear Blue Image"
2409
2538
  msgstr ""
2410
2539
 
2411
- #: ../../bin/rabbit-command:73
2412
- msgid "Toggle fullscreen"
2540
+ #: ../data/rabbit/image/clear-blue-images/property.rb:3
2541
+ msgid "Images related to ((<clear-blue>)) theme"
2413
2542
  msgstr ""
2414
2543
 
2415
- #: ../../bin/rabbit-command:77
2416
- msgid "Toggle index mode"
2544
+ #: ../data/rabbit/image/clear-blue-images/property.rb:4
2545
+ msgid "Provides images related to ((<clear-blue>)) theme."
2417
2546
  msgstr ""
2418
2547
 
2419
- #: ../../bin/rabbit-command:81
2420
- msgid "Toggle whiteout"
2548
+ #: ../data/rabbit/image/cozmixng-images/property.rb:2
2549
+ msgid "COZMIXNGImage"
2421
2550
  msgstr ""
2422
2551
 
2423
- #: ../../bin/rabbit-command:85
2424
- msgid "Toggle blackout"
2552
+ #: ../data/rabbit/image/cozmixng-images/property.rb:3
2553
+ msgid "Images related to COZMIXNG"
2425
2554
  msgstr ""
2426
2555
 
2427
- #: ../../bin/rabbit-command:89
2428
- msgid "Quit"
2556
+ #: ../data/rabbit/image/cozmixng-images/property.rb:4
2557
+ msgid "Provides images related to COZMIXNG."
2429
2558
  msgstr ""
2430
2559
 
2431
- #: ../../bin/rabbit-command:99 ../../bin/rabrick:71
2432
- msgid "--druby-uri is deprecated. Use --rabbit-uri instead."
2560
+ #: ../data/rabbit/image/dark-gradation-images/property.rb:2
2561
+ msgid "Dark Gradation background Image"
2433
2562
  msgstr ""
2434
2563
 
2435
- #: ../../bin/rabrick:40
2436
- msgid "Specify WEBrick port as [PORT]."
2564
+ #: ../data/rabbit/image/dark-gradation-images/property.rb:3
2565
+ msgid "Images related to dark gradation"
2437
2566
  msgstr ""
2438
2567
 
2439
- #: ../../bin/rabrick:46
2440
- msgid "Specify whether service discovery with bonjour enable or not."
2568
+ #: ../data/rabbit/image/dark-gradation-images/property.rb:4
2569
+ msgid "Provides images related to Dark Gradation theme"
2441
2570
  msgstr ""
2442
2571
 
2443
- #: ../../bin/rabrick:52
2444
- msgid "Specify whether debug mode or not."
2572
+ #: ../data/rabbit/image/rubykaigi2011-images/property.rb:2
2573
+ msgid "RubyKaigi2011Image"
2445
2574
  msgstr ""
2446
2575
 
2447
- #: ../../bin/rabrick:87
2448
- msgid "reloading ERB templates..."
2576
+ #: ../data/rabbit/image/rubykaigi2011-images/property.rb:3
2577
+ msgid "Images related to RubyKaigi2011"
2449
2578
  msgstr ""
2450
2579
 
2451
- #: ../../bin/rabbit-theme-manager:15
2452
- msgid "en"
2580
+ #: ../data/rabbit/image/rubykaigi2011-images/property.rb:4
2581
+ msgid "Provides images related to RubyKaigi2011."
2453
2582
  msgstr ""
2454
2583
 
2455
- #: ../../bin/rabbit-theme-manager:15
2456
- msgid "ja"
2584
+ #: ../data/rabbit/image/nari-images/property.rb:2
2585
+ msgid "Nari Image"
2457
2586
  msgstr ""
2458
2587
 
2459
- #: ../../bin/rabbit-theme-manager:15
2460
- msgid "fr"
2588
+ #: ../data/rabbit/image/nari-images/property.rb:3
2589
+ msgid "Images related to ((<nari>)) theme"
2461
2590
  msgstr ""
2462
2591
 
2463
- #: ../../bin/rabbit-theme-manager:22
2464
- msgid "[COMMAND] is one of them: [%s]"
2592
+ #: ../data/rabbit/image/nari-images/property.rb:4
2593
+ msgid "Provides images related to ((<nari>)) theme."
2465
2594
  msgstr ""
2466
2595
 
2467
- #: ../../bin/rabbit-theme-manager:34
2468
- msgid "Show [THEME] when startup."
2596
+ #: ../data/rabbit/image/debian-images/property.rb:2
2597
+ msgid "DebianImage"
2469
2598
  msgstr ""
2470
2599
 
2471
- #: ../../bin/rabbit-theme-manager:69
2472
- msgid "Specify theme document directory as [DIR]."
2600
+ #: ../data/rabbit/image/debian-images/property.rb:3
2601
+ msgid "Images related to Debian"
2473
2602
  msgstr ""
2474
2603
 
2475
- #: ../../bin/rabbit-theme-manager:76
2476
- msgid "Specify target locales as [LOC1,LOC2,...]."
2604
+ #: ../data/rabbit/image/debian-images/property.rb:4
2605
+ msgid "Provides images related to Debian"
2477
2606
  msgstr ""
2478
2607
 
2479
- #: ../../bin/rabbit-theme-manager:91
2480
- msgid "Generating documents for locale <%s>..."
2608
+ #: ../bin/rabbit-command:18
2609
+ msgid "Specify Rabbit's dRuby URI as [URI]."
2481
2610
  msgstr ""
2482
2611
 
2483
- #: ../../bin/rabbit-theme-manager:124
2484
- msgid "Unknown command: %s"
2612
+ #: ../bin/rabbit-command:23
2613
+ msgid "Move commands"
2485
2614
  msgstr ""
2486
2615
 
2487
- #: ../../bin/rabbit-theme-manager:125
2488
- msgid "Available commands: %s"
2616
+ #: ../bin/rabbit-command:25
2617
+ msgid "Move to previous"
2489
2618
  msgstr ""
2490
2619
 
2491
- #: ../../data/rabbit/image/rabbit-images/property.rb:2
2492
- msgid "RabbitImage"
2620
+ #: ../bin/rabbit-command:29
2621
+ msgid "Move to next"
2493
2622
  msgstr ""
2494
2623
 
2495
- #: ../../data/rabbit/image/rabbit-images/property.rb:3
2496
- msgid "Images related to Rabbit"
2624
+ #: ../bin/rabbit-command:33
2625
+ msgid "Move to the previous slide"
2497
2626
  msgstr ""
2498
2627
 
2499
- #: ../../data/rabbit/image/rabbit-images/property.rb:4
2500
- msgid "Provides images related to Rabbit."
2628
+ #: ../bin/rabbit-command:37
2629
+ msgid "Move to the next slide"
2501
2630
  msgstr ""
2502
2631
 
2503
- #: ../../data/rabbit/image/ruby-images/property.rb:2
2504
- msgid "RubyImage"
2632
+ #: ../bin/rabbit-command:41
2633
+ msgid "Move to the first slide"
2505
2634
  msgstr ""
2506
2635
 
2507
- #: ../../data/rabbit/image/ruby-images/property.rb:3
2508
- msgid "Images related to Ruby"
2636
+ #: ../bin/rabbit-command:45
2637
+ msgid "Move to the last slide"
2509
2638
  msgstr ""
2510
2639
 
2511
- #: ../../data/rabbit/image/ruby-images/property.rb:4
2512
- msgid "Provides images related to Ruby."
2640
+ #: ../bin/rabbit-command:49
2641
+ msgid "Move to the Nth slide"
2513
2642
  msgstr ""
2514
2643
 
2515
- #: ../../data/rabbit/image/clear-blue-images/property.rb:2
2516
- msgid "Clear Blue Image"
2644
+ #: ../bin/rabbit-command:53
2645
+ msgid "Get commands"
2517
2646
  msgstr ""
2518
2647
 
2519
- #: ../../data/rabbit/image/clear-blue-images/property.rb:3
2520
- msgid "Images related to ((<clear-blue>)) theme"
2648
+ #: ../bin/rabbit-command:55
2649
+ msgid "Show source"
2521
2650
  msgstr ""
2522
2651
 
2523
- #: ../../data/rabbit/image/clear-blue-images/property.rb:4
2524
- msgid "Provides images related to ((<clear-blue>)) theme."
2652
+ #: ../bin/rabbit-command:59
2653
+ msgid "Show the current slide source as RD"
2525
2654
  msgstr ""
2526
2655
 
2527
- #: ../../data/rabbit/image/cozmixng-images/property.rb:2
2528
- msgid "COZMIXNGImage"
2656
+ #: ../bin/rabbit-command:63
2657
+ msgid "Control commands"
2529
2658
  msgstr ""
2530
2659
 
2531
- #: ../../data/rabbit/image/cozmixng-images/property.rb:3
2532
- msgid "Images related to COZMIXNG"
2660
+ #: ../bin/rabbit-command:65
2661
+ msgid "Toggle fullscreen"
2533
2662
  msgstr ""
2534
2663
 
2535
- #: ../../data/rabbit/image/cozmixng-images/property.rb:4
2536
- msgid "Provides images related to COZMIXNG."
2664
+ #: ../bin/rabbit-command:69
2665
+ msgid "Toggle index mode"
2537
2666
  msgstr ""
2538
2667
 
2539
- #: ../../data/rabbit/image/dark-gradation-images/property.rb:2
2540
- msgid "Dark Gradation background Image"
2668
+ #: ../bin/rabbit-command:73
2669
+ msgid "Toggle whiteout"
2541
2670
  msgstr ""
2542
2671
 
2543
- #: ../../data/rabbit/image/dark-gradation-images/property.rb:3
2544
- msgid "Images related to dark gradation"
2672
+ #: ../bin/rabbit-command:77
2673
+ msgid "Toggle blackout"
2545
2674
  msgstr ""
2546
2675
 
2547
- #: ../../data/rabbit/image/dark-gradation-images/property.rb:4
2548
- msgid "Provides images related to Dark Gradation theme"
2676
+ #: ../bin/rabbit-command:81
2677
+ msgid "Quit"
2549
2678
  msgstr ""
2550
2679
 
2551
- #: ../../data/rabbit/image/debian-images/property.rb:2
2552
- msgid "DebianImage"
2680
+ #: ../bin/rabbit-theme-manager:15
2681
+ msgid "en"
2553
2682
  msgstr ""
2554
2683
 
2555
- #: ../../data/rabbit/image/debian-images/property.rb:3
2556
- msgid "Images related to Debian"
2684
+ #: ../bin/rabbit-theme-manager:15
2685
+ msgid "ja"
2557
2686
  msgstr ""
2558
2687
 
2559
- #: ../../data/rabbit/image/debian-images/property.rb:4
2560
- msgid "Provides images related to Debian"
2688
+ #: ../bin/rabbit-theme-manager:15
2689
+ msgid "fr"
2561
2690
  msgstr ""
2562
2691
 
2563
- #: ../../lib/rabbit/theme/document.erb:3
2564
- msgid "Name"
2692
+ #: ../bin/rabbit-theme-manager:22
2693
+ msgid "[COMMAND] is one of them: [%s]"
2565
2694
  msgstr ""
2566
2695
 
2567
- #: ../../lib/rabbit/theme/document.erb:6
2568
- msgid "Category"
2696
+ #: ../bin/rabbit-theme-manager:34
2697
+ msgid "Show [THEME] when startup."
2569
2698
  msgstr ""
2570
2699
 
2571
- #: ../../lib/rabbit/theme/document.erb:10
2572
- msgid "Abstract"
2700
+ #: ../bin/rabbit-theme-manager:69
2701
+ msgid "Specify theme document directory as [DIR]."
2573
2702
  msgstr ""
2574
2703
 
2575
- #: ../../lib/rabbit/theme/document.erb:15
2576
- msgid "Description"
2704
+ #: ../bin/rabbit-theme-manager:76
2705
+ msgid "Specify target locales as [LOC1,LOC2,...]."
2577
2706
  msgstr ""
2578
2707
 
2579
- #: ../../lib/rabbit/theme/document.erb:21
2580
- msgid "Dependency themes"
2708
+ #: ../bin/rabbit-theme-manager:91
2709
+ msgid "Generating documents for locale <%s>..."
2581
2710
  msgstr ""
2582
2711
 
2583
- #: ../../lib/rabbit/theme/document.erb:28
2584
- msgid "Parameters"
2712
+ #: ../bin/rabbit-theme-manager:124
2713
+ msgid "Unknown command: %s"
2585
2714
  msgstr ""
2586
2715
 
2587
- #: ../../lib/rabbit/theme/document.erb:31
2588
- msgid "Default: "
2716
+ #: ../bin/rabbit-theme-manager:125
2717
+ msgid "Available commands: %s"
2589
2718
  msgstr ""