rabbit 2.0.6 → 2.0.7

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