showoff 0.17.2 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +37 -0
- data/bin/showoff +3 -0
- data/lib/showoff.rb +164 -43
- data/lib/showoff/version.rb +1 -1
- data/lib/showoff_utils.rb +26 -14
- data/locales/README.md +25 -0
- data/locales/de.yml +160 -0
- data/locales/en.yml +160 -0
- data/locales/es.yml +160 -0
- data/locales/fr.yml +160 -0
- data/locales/ja.yml +167 -0
- data/locales/nl.yml +160 -0
- data/locales/pt.yml +160 -0
- data/public/css/presenter.css +14 -1
- data/public/css/showoff.css +54 -4
- data/public/js/presenter.js +122 -49
- data/public/js/showoff.js +157 -25
- data/public/js/simpleStrings-0.0.1.js +96 -0
- data/views/404.erb +1 -1
- data/views/download.erb +2 -2
- data/views/header.erb +7 -2
- data/views/help.erb +16 -16
- data/views/index.erb +40 -26
- data/views/presenter.erb +86 -68
- data/views/stats.erb +7 -7
- metadata +39 -2
data/lib/showoff/version.rb
CHANGED
data/lib/showoff_utils.rb
CHANGED
@@ -391,24 +391,28 @@ class ShowOffUtils
|
|
391
391
|
[code,lines,width]
|
392
392
|
end
|
393
393
|
|
394
|
-
def self.showoff_sections(dir, logger = nil)
|
394
|
+
def self.showoff_sections(dir, data = nil, logger = nil)
|
395
395
|
unless logger
|
396
396
|
logger = Logger.new(STDOUT)
|
397
397
|
logger.level = Logger::WARN
|
398
398
|
end
|
399
399
|
|
400
|
-
index = File.join(dir, ShowOffUtils.presentation_config_file)
|
401
400
|
begin
|
402
|
-
data
|
401
|
+
unless data
|
402
|
+
index = File.join(dir, ShowOffUtils.presentation_config_file)
|
403
|
+
data = JSON.parse(File.read(index)) rescue ["."] # default boring showoff.json
|
404
|
+
end
|
405
|
+
|
403
406
|
logger.debug data
|
404
407
|
if data.is_a?(Hash)
|
405
|
-
|
408
|
+
# dup so we don't overwrite the original data structutre and make it impossible to re-localize
|
409
|
+
sections = data['sections'].dup
|
406
410
|
else
|
407
|
-
sections = data
|
411
|
+
sections = data.dup
|
408
412
|
end
|
409
413
|
|
410
414
|
if sections.is_a? Array
|
411
|
-
sections = showoff_legacy_sections(sections)
|
415
|
+
sections = showoff_legacy_sections(dir, sections)
|
412
416
|
elsif sections.is_a? Hash
|
413
417
|
raise "Named sections are unsupported on Ruby versions less than 1.9." if RUBY_VERSION.start_with? '1.8'
|
414
418
|
sections.each do |key, value|
|
@@ -437,7 +441,7 @@ class ShowOffUtils
|
|
437
441
|
sections
|
438
442
|
end
|
439
443
|
|
440
|
-
def self.showoff_legacy_sections(data)
|
444
|
+
def self.showoff_legacy_sections(dir, data)
|
441
445
|
# each entry in sections can be:
|
442
446
|
# - "filename.md"
|
443
447
|
# - { "section": "filename.md" }
|
@@ -465,28 +469,36 @@ class ShowOffUtils
|
|
465
469
|
end
|
466
470
|
end
|
467
471
|
end
|
468
|
-
|
469
472
|
section
|
470
|
-
end.flatten.compact.each do |
|
473
|
+
end.flatten.compact.each do |entry|
|
471
474
|
# We do this in two passes simply because most of it was already done
|
472
475
|
# and I don't want to waste time on legacy functionality.
|
476
|
+
|
477
|
+
# Normalize to a proper path from presentation root
|
478
|
+
filename = File.expand_path(entry).sub(/^#{dir}\//, '')
|
479
|
+
# and then strip out the locale directory, if there is one
|
480
|
+
filename.sub!(/^(locales\/[\w-]+\/)/, '')
|
481
|
+
locale = $1
|
482
|
+
|
473
483
|
if File.directory? filename
|
474
|
-
path =
|
484
|
+
path = entry
|
475
485
|
sections[path] ||= []
|
476
486
|
Dir.glob("#{filename}/**/*.md").sort.each do |slidefile|
|
477
|
-
|
487
|
+
fullpath = locale.nil? ? slidefile : "#{locale}/#{slidefile}"
|
488
|
+
sections[path] << fullpath
|
478
489
|
end
|
479
490
|
else
|
480
|
-
path = File.dirname(
|
491
|
+
path = File.dirname(entry)
|
481
492
|
sections[path] ||= []
|
482
493
|
sections[path] << filename
|
483
494
|
end
|
484
495
|
end
|
496
|
+
|
485
497
|
sections
|
486
498
|
end
|
487
499
|
|
488
|
-
def self.showoff_slide_files(dir, logger = nil)
|
489
|
-
data = showoff_sections(dir, logger)
|
500
|
+
def self.showoff_slide_files(dir, data = nil, logger = nil)
|
501
|
+
data = showoff_sections(dir, data, logger)
|
490
502
|
data.map { |key, value| value }.flatten
|
491
503
|
end
|
492
504
|
|
data/locales/README.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Creating a strings file for a new translation
|
2
|
+
|
3
|
+
Thanks for helping translate. It's a big job. Your part should be fairly
|
4
|
+
simple though. All you'll need to do is generate a new strings file, or
|
5
|
+
update an existing one.
|
6
|
+
|
7
|
+
## Generating a new strings file
|
8
|
+
|
9
|
+
1. Copy `en.yml` to a new file in the `locales` directory named after the language.
|
10
|
+
* Use the two-letter [ISO_639-1](https://en.wikipedia.org/wiki/ISO_639-1) code.
|
11
|
+
* The extension *must be* `.yml`; for example `de.yml`.
|
12
|
+
1. Change the toplevel key from `:en` to the language code as a symbol.
|
13
|
+
* For example, `:de` or `:es`.
|
14
|
+
1. Translate each value without changing the file structure.
|
15
|
+
* Quotes around the string are not necessary unless it contains a special character, such as `:`
|
16
|
+
1. Submit a PR with your new language!
|
17
|
+
|
18
|
+
## Using the GitHub web UI
|
19
|
+
|
20
|
+
It might be easiest to just do this in the GitHub UI if you don't already have
|
21
|
+
your own fork & clone of the project.
|
22
|
+
|
23
|
+
Copying a file isn't very straightforward in the web UI. Instead, you'll need to
|
24
|
+
copy the file contents to your clipboard, then create a new file and paste it back
|
25
|
+
in. Nevertheless, once the file's created, it's quite easy to update this way.
|
data/locales/de.yml
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
de:
|
2
|
+
name: Showoff Präsentation
|
3
|
+
menu:
|
4
|
+
title: Showoff Menü
|
5
|
+
table_of_contents: Inhaltsverzeichnis
|
6
|
+
downloads: Downloads
|
7
|
+
feedback: Senden...
|
8
|
+
pace:
|
9
|
+
label: Der Präsentierende soll...
|
10
|
+
slower: Langsamer werden
|
11
|
+
faster: Schneller werden
|
12
|
+
question:
|
13
|
+
label: XFrage stellen
|
14
|
+
placeholder: Frage stellen...
|
15
|
+
feedback:
|
16
|
+
label: Feedback senden
|
17
|
+
description: Diese Folie ist...
|
18
|
+
worst: Schrecklich
|
19
|
+
best: Großartig
|
20
|
+
why: Warum...?
|
21
|
+
send: Senden
|
22
|
+
edit: Aktuelle Folie ändern
|
23
|
+
clear_annotations: Anmerkungen entfernen
|
24
|
+
language: Inhalt Sprache
|
25
|
+
close: Schließen
|
26
|
+
help: Drücke das <code>?</code> für Hilfe.
|
27
|
+
anonymous: Alle Feedbacks sind anonym.
|
28
|
+
navigation:
|
29
|
+
next: Nächste Folie
|
30
|
+
previous: Vorherige Folie
|
31
|
+
loading: laden der Präsentation...
|
32
|
+
activity_complete: Aktivität vollständig
|
33
|
+
follow:
|
34
|
+
label: "Folge dem Präsentierer:"
|
35
|
+
refresh: "Soll der Inhalt der Folie aktualisiert werden?\n\n(Verwende `RELOAD` wenn die gesamte Präsentation neu geladen werden soll)"
|
36
|
+
reload: Soll Showoff neu geladen werden?
|
37
|
+
preshow:
|
38
|
+
prompt: Beginn in Minuten?
|
39
|
+
resume: "Fortsetzen in Minuten:"
|
40
|
+
|
41
|
+
downloads:
|
42
|
+
title: Datei Downloads
|
43
|
+
|
44
|
+
help:
|
45
|
+
title: Hilfe
|
46
|
+
next: Zur nächsten Folie.
|
47
|
+
prev: Zur vorherigen Folie.
|
48
|
+
contents: Anzeigen des Inhaltsverzeichnisses.
|
49
|
+
follow: Mitverfolgen ein/aussschalten.
|
50
|
+
help: Anzeigen der Hilfe.
|
51
|
+
refresh: Inhalte neu laden.
|
52
|
+
reload: Showoff vollstämdig neu laden.
|
53
|
+
blank: Bildschirm leeren.
|
54
|
+
footer: Fußzeite eun/ausschalten.
|
55
|
+
notes: Hinweise ein/ausschalten.
|
56
|
+
clear: Ergebnisse löschen.
|
57
|
+
pause: Pausieren der Präsentation.
|
58
|
+
preshow: Anzeigen der Präsentation <tt>preshow</tt> mit einem Timer.
|
59
|
+
execute: Ausführen des ersten sichtbaren Blocks.
|
60
|
+
debug: Anzeigen von Debug Informationen.
|
61
|
+
close: Schließen.
|
62
|
+
|
63
|
+
stats:
|
64
|
+
title: Ansischtsstatistiken.
|
65
|
+
stray: der Teilnehmer sehen eine andere Folie.
|
66
|
+
idle: der Teilnehmer sind inaktiv.
|
67
|
+
current: Aktuelle Folien.
|
68
|
+
elapsed: Zeit pro Folie.
|
69
|
+
nodata: Keine Daten zum Anzeigen vorhanden.
|
70
|
+
allcurrent: Alle Teilnehmer sehen die Folie des Präsentierenden.
|
71
|
+
|
72
|
+
forms:
|
73
|
+
display: Anzeige der Ergebnisse
|
74
|
+
save: Speichern
|
75
|
+
|
76
|
+
presenter:
|
77
|
+
topbar:
|
78
|
+
annotations: Anmerkungen
|
79
|
+
edit: Folie bearbeiten
|
80
|
+
report: Fehler mit Folie melden
|
81
|
+
stats: Ansichtsstatistiken
|
82
|
+
downloads: Downloads
|
83
|
+
display: Anzeigefenster
|
84
|
+
print: Folien drucken
|
85
|
+
settings: Einstellungen
|
86
|
+
newpage: Im neuen Fenster öffnen...
|
87
|
+
tooltip:
|
88
|
+
annotations: Aktivieren des Anmerkungssystems.
|
89
|
+
edit: Bearbeiten der Folie in einem neuen Fenster.
|
90
|
+
report: Einen Fehler der aktuellen Folie melden.
|
91
|
+
stats: Anschauen, welche Folien von den Teilnehmern betrachtet wurden.
|
92
|
+
downloads: Öffnen des Download Bereiches im Menü oder in einem neuen Fenster.
|
93
|
+
display: Aktivieren des Präsentationsfenster; dieses sollte über den Projektor gezeigt werden.
|
94
|
+
print: Folien in einem neuen Fenster drucken.
|
95
|
+
settings: Öffnen der Einstellungen.
|
96
|
+
preview:
|
97
|
+
next: Nächste Folie
|
98
|
+
previous: Vorherige Folie
|
99
|
+
mobile:
|
100
|
+
update: Aktualisierung
|
101
|
+
notes:
|
102
|
+
label: Showoff Notizen
|
103
|
+
personal: Persönliche Notizen
|
104
|
+
timer:
|
105
|
+
label: "Timer:"
|
106
|
+
start: Start
|
107
|
+
pause: Pause
|
108
|
+
resume: Fortsetzen
|
109
|
+
cancel: Abbrechen
|
110
|
+
unit: Minuten
|
111
|
+
pace:
|
112
|
+
faster: Langsamer!
|
113
|
+
slower: Schneller!
|
114
|
+
questions: Frage von Teilnehmern
|
115
|
+
annotation:
|
116
|
+
tools: Werkzeuge
|
117
|
+
lines: Linien
|
118
|
+
shapes: Formen
|
119
|
+
status:
|
120
|
+
label: "Folien:"
|
121
|
+
settings:
|
122
|
+
label: Einstellungen
|
123
|
+
close: Schließen
|
124
|
+
follower:
|
125
|
+
label: Aktualisierung Schüler Folien
|
126
|
+
tooltip: Benachrichtigung üder Änderung versenden
|
127
|
+
description: Wenn dies aktiviert ist, bekommt der Showoff Server Informaitonen über Aktualisierungen. Deaktivieren, um versehentlicher Aktualiserungen zu verhindern.
|
128
|
+
remote:
|
129
|
+
label: Remote aktivieren
|
130
|
+
tooltip: Aktiviert das Update durch einen weiteren Präsentierer.
|
131
|
+
description: Wenn dies aktiviert ist, dann kann man die Präsentationvon einem anderen Geräterfolgen (üblicherweise ein Mobiles Endegerät).
|
132
|
+
layout:
|
133
|
+
label: Anordnung
|
134
|
+
default: Default Ansicht
|
135
|
+
thumbs: Anzeigen von Miniaturansichten der nächsten und vorherigen Folie.
|
136
|
+
beside: Anzeigen der nächsten Folie als Großansicht n der Präsentierer Ansicht.
|
137
|
+
floating: Öffnen der nächsten Folie in einem neuen Fenster.
|
138
|
+
confirmation: Die Sicherheitseinstellungen des Browsers machen es erforderlich, dass das Öffnen eines neuen Fensters bestätigt wird.
|
139
|
+
open: Fenster öffnen
|
140
|
+
cancel: Abbrechen
|
141
|
+
reset:
|
142
|
+
label: Löschen der Showoff Einstellungen.
|
143
|
+
tooltip: Zurücksetzen der Showfoff Einstellungen auf die Standardwerte.
|
144
|
+
language:
|
145
|
+
label: Inhalt Sprache
|
146
|
+
tooltip: Wählen Sie aus den verfügbaren Übersetzungen aus oder wählen Sie basierend auf Ihren Browsereinstellungen.
|
147
|
+
description: Diese Präsentation ist in verschiedenen Sprachen verfügbar. Wählen Sie die Sprache, die Sie anzeigen möchten, oder lassen Sie sie bei <tt>automatisch</tt>, um Ihre Browsereinstellungen zu verwenden.
|
148
|
+
print:
|
149
|
+
label: Wählen Sie die Art der gedruckten Notizen aus
|
150
|
+
description: Wählen Sie den Inhalt aus, den Sie unter den Folien anzeigen möchten.
|
151
|
+
none: Notizen nicht enthalten
|
152
|
+
notes: Präsentierende Notizen
|
153
|
+
handouts: Publikum Handzettel
|
154
|
+
|
155
|
+
language:
|
156
|
+
auto: Automatisch
|
157
|
+
disable: Deaktivieren Sie Übersetzungen
|
158
|
+
|
159
|
+
error:
|
160
|
+
file_not_found: Datei nicht gefunden!
|
data/locales/en.yml
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
en:
|
2
|
+
name: Showoff Presentation
|
3
|
+
menu:
|
4
|
+
title: Showoff Menu
|
5
|
+
table_of_contents: Table of Contents
|
6
|
+
downloads: Downloads
|
7
|
+
feedback: Sending...
|
8
|
+
pace:
|
9
|
+
label: The presenter should...
|
10
|
+
slower: Slow Down
|
11
|
+
faster: Speed Up
|
12
|
+
question:
|
13
|
+
label: Ask a Question
|
14
|
+
placeholder: Ask a question...
|
15
|
+
feedback:
|
16
|
+
label: Send Feedback
|
17
|
+
description: This slide is...
|
18
|
+
worst: Terrible
|
19
|
+
best: Awesome
|
20
|
+
why: Why...?
|
21
|
+
send: Send
|
22
|
+
edit: Edit Current Slide
|
23
|
+
clear_annotations: Clear Annotations
|
24
|
+
language: Content Language
|
25
|
+
close: Close
|
26
|
+
help: Press <code>?</code> for help.
|
27
|
+
anonymous: All features are anonymous.
|
28
|
+
navigation:
|
29
|
+
next: Next
|
30
|
+
previous: Previous
|
31
|
+
loading: loading presentation...
|
32
|
+
activity_complete: Activity complete
|
33
|
+
follow:
|
34
|
+
label: "Follow Mode:"
|
35
|
+
refresh: "Are you sure you want to refresh the slide content?\n\n(Use `RELOAD` to fully reload the entire UI)"
|
36
|
+
reload: Are you sure you want to reload Showoff?
|
37
|
+
preshow:
|
38
|
+
prompt: Minutes from now to start?
|
39
|
+
resume: "Resuming in:"
|
40
|
+
|
41
|
+
downloads:
|
42
|
+
title: File Downloads
|
43
|
+
|
44
|
+
help:
|
45
|
+
title: Help
|
46
|
+
next: Move to the next slide.
|
47
|
+
prev: Move to the previous slide.
|
48
|
+
contents: Show the table of contents menu.
|
49
|
+
follow: Toggle follow mode.
|
50
|
+
help: Show this help dialog.
|
51
|
+
refresh: Refresh slide content.
|
52
|
+
reload: Completely reload Showoff.
|
53
|
+
blank: Blank the screen.
|
54
|
+
footer: Toggle the display footer.
|
55
|
+
notes: Toggle notes display.
|
56
|
+
clear: Clear code execution results.
|
57
|
+
pause: Pause the presentation.
|
58
|
+
preshow: Display slideshow of <tt>preshow</tt> images on a timer.
|
59
|
+
execute: Execute the first visible code block.
|
60
|
+
debug: Show debugging information.
|
61
|
+
close: Close
|
62
|
+
|
63
|
+
stats:
|
64
|
+
title: Viewing Statistics
|
65
|
+
stray: of your audience is not viewing the same slide you are.
|
66
|
+
idle: of your audience is idle.
|
67
|
+
current: Slides currently being viewed
|
68
|
+
elapsed: Elapsed time spent on each slide
|
69
|
+
nodata: No data to display.
|
70
|
+
allcurrent: All audience members are viewing the presenter's slide.
|
71
|
+
|
72
|
+
forms:
|
73
|
+
display: Display Results
|
74
|
+
save: Save
|
75
|
+
|
76
|
+
presenter:
|
77
|
+
topbar:
|
78
|
+
annotations: Annotations
|
79
|
+
edit: Edit Slide
|
80
|
+
report: Report Issue With Slide
|
81
|
+
stats: Viewing Statistics
|
82
|
+
downloads: Downloads
|
83
|
+
display: Display Window
|
84
|
+
print: Print Slides
|
85
|
+
settings: Settings
|
86
|
+
newpage: Open in a new page...
|
87
|
+
tooltip:
|
88
|
+
annotations: Enable the annotations subsystem.
|
89
|
+
edit: Edit current slide in new window.
|
90
|
+
report: Report an issue with the current slide.
|
91
|
+
stats: See the slides your audience is interacting with.
|
92
|
+
downloads: Open the file downloads in a menu or new page.
|
93
|
+
display: Enable the Display Window; you should put this on the projector.
|
94
|
+
print: Print slides using a new window.
|
95
|
+
settings: Open the Settings dialog.
|
96
|
+
preview:
|
97
|
+
next: Next
|
98
|
+
previous: Previous
|
99
|
+
mobile:
|
100
|
+
update: Update
|
101
|
+
notes:
|
102
|
+
label: Showoff Notes
|
103
|
+
personal: Personal Notes
|
104
|
+
timer:
|
105
|
+
label: "Timer:"
|
106
|
+
start: Start
|
107
|
+
pause: Pause
|
108
|
+
resume: Resume
|
109
|
+
cancel: Cancel
|
110
|
+
unit: minutes
|
111
|
+
pace:
|
112
|
+
faster: Speed Up!
|
113
|
+
slower: Slow Down!
|
114
|
+
questions: Audience Questions
|
115
|
+
annotation:
|
116
|
+
tools: Tools
|
117
|
+
lines: Lines
|
118
|
+
shapes: Shapes
|
119
|
+
status:
|
120
|
+
label: "Slides:"
|
121
|
+
settings:
|
122
|
+
label: Settings
|
123
|
+
close: Close
|
124
|
+
follower:
|
125
|
+
label: Update Follower
|
126
|
+
tooltip: Send slide change notifications.
|
127
|
+
description: When this is enabled, the Showoff server will track your slide changes. Disable it to observe the presentation without inadvertently causing slide changes.
|
128
|
+
remote:
|
129
|
+
label: Enable Remote
|
130
|
+
tooltip: Enables tracking of other presenters.
|
131
|
+
description: When this is enabled, you can load the presenter in another browser (typically on your mobile phone) to control the presentation.
|
132
|
+
layout:
|
133
|
+
label: Layout
|
134
|
+
default: Default Layout
|
135
|
+
thumbs: Display thumbnail previews of the next and previous slides.
|
136
|
+
beside: Display the next slide as a large preview in the main presenter view.
|
137
|
+
floating: Open the next slide as a floating window.
|
138
|
+
confirmation: Browser security requires confirmation before opening a new window.
|
139
|
+
open: Open Window
|
140
|
+
cancel: cancel
|
141
|
+
reset:
|
142
|
+
label: Clear Showoff settings.
|
143
|
+
tooltip: Reset Showoff UI settings to default values.
|
144
|
+
language:
|
145
|
+
label: Content Language
|
146
|
+
tooltip: Select from available translations, or autoselect based on your browser settings.
|
147
|
+
description: This presentation is available in different languages. Choose the language you would like to view or leave it at <tt>automatic</tt> to use your browser settings.
|
148
|
+
print:
|
149
|
+
label: Choose type of printed notes
|
150
|
+
description: Select the content you'd like to show under the slides.
|
151
|
+
none: Don't include notes
|
152
|
+
notes: Presenter Notes
|
153
|
+
handouts: Audience Handouts
|
154
|
+
|
155
|
+
language:
|
156
|
+
auto: Automatic
|
157
|
+
disable: Disable Translations
|
158
|
+
|
159
|
+
error:
|
160
|
+
file_not_found: File Not Found!
|
data/locales/es.yml
ADDED
@@ -0,0 +1,160 @@
|
|
1
|
+
es:
|
2
|
+
name: Presentación en Showoff
|
3
|
+
menu:
|
4
|
+
title: Menú de Showoff
|
5
|
+
table_of_contents: Tabla de Contenidos
|
6
|
+
downloads: Descargas
|
7
|
+
feedback: Enviando...
|
8
|
+
pace:
|
9
|
+
label: El Presentador Debería...
|
10
|
+
slower: Ir Más Despacio
|
11
|
+
faster: Ir Más Rápido
|
12
|
+
question:
|
13
|
+
label: Hacer una Pregunta
|
14
|
+
placeholder: Hacer una pregunta...
|
15
|
+
feedback:
|
16
|
+
label: Enviar Sugerencias
|
17
|
+
description: Esta Diapositiva es...
|
18
|
+
worst: Terrible
|
19
|
+
best: Genial
|
20
|
+
why: Por Qué...?
|
21
|
+
send: Enviar
|
22
|
+
edit: Editar Esta Diapositiva
|
23
|
+
clear_annotations: Limpiar Notas
|
24
|
+
language: Idioma del contenido
|
25
|
+
close: Cerrar
|
26
|
+
help: Presionar <code>?</code> para ver ayuda.
|
27
|
+
anonymous: Todas las funciones son anónimas.
|
28
|
+
navigation:
|
29
|
+
next: Siguiente
|
30
|
+
previous: Anterior
|
31
|
+
loading: cargando presentación...
|
32
|
+
activity_complete: Actividad completa
|
33
|
+
follow:
|
34
|
+
label: "Modo de Seguimiento:"
|
35
|
+
refresh: "Está seguro que desea refrescar el contenido de la diapositiva?\n\n(Use `RELOAD` para refrescar la interfaz entera)"
|
36
|
+
reload: Está seguro que desea refrescar Showoff?
|
37
|
+
preshow:
|
38
|
+
prompt: Minutos desde ahora al comienzo?
|
39
|
+
resume: "Continuando en:"
|
40
|
+
|
41
|
+
downloads:
|
42
|
+
title: Descarga de Archivos
|
43
|
+
|
44
|
+
help:
|
45
|
+
title: Ayuda
|
46
|
+
next: Mover a la siguiente diapositiva.
|
47
|
+
prev: Mover a la diapositiva anterior.
|
48
|
+
contents: Mostrar el menú de la tabla de contenidos.
|
49
|
+
follow: Habilitar el modo de seguimiento.
|
50
|
+
help: Mostrar éste dialogo de ayuda.
|
51
|
+
refresh: Refrescar el contenido de la diapositiva.
|
52
|
+
reload: Refrescar el contenido total de Showoff.
|
53
|
+
blank: Oscurecer la pantalla.
|
54
|
+
footer: Habilitar/Deshabilitar las notas de pie de página.
|
55
|
+
notes: Habilitar/Deshabilitar notas de Showoff.
|
56
|
+
clear: Limpiar los resultados de la ejecución de código.
|
57
|
+
pause: Pausar la presentación.
|
58
|
+
preshow: Mostrar las diapositivas de imágenes de <tt>preshow</tt> con un contador de tiempo.
|
59
|
+
execute: Ejecutar el primer bloque de código visible.
|
60
|
+
debug: Mostrar información de debug.
|
61
|
+
close: Cerrar
|
62
|
+
|
63
|
+
stats:
|
64
|
+
title: Ver Estadísticas
|
65
|
+
stray: tu audiencia no está viendo la misma diapositiva que tú.
|
66
|
+
idle: tu audiencia no está activa.
|
67
|
+
current: Diapositivas que están siendo vistas
|
68
|
+
elapsed: Tiempo transcurrido en cada diapositiva
|
69
|
+
nodata: No hay información para mostrar.
|
70
|
+
allcurrent: Todos los miembros de la audiencia están viendo la diapositiva del presentador.
|
71
|
+
|
72
|
+
forms:
|
73
|
+
display: Mostrar Resultados
|
74
|
+
save: Guardar
|
75
|
+
|
76
|
+
presenter:
|
77
|
+
topbar:
|
78
|
+
annotations: Notas
|
79
|
+
edit: Editar Diapositiva
|
80
|
+
report: Reportar Problema con Diapositiva
|
81
|
+
stats: Ver Estadísticas
|
82
|
+
downloads: Descargas
|
83
|
+
display: Ventana de Presentación
|
84
|
+
print: Imprimir Diapositivas
|
85
|
+
settings: Configuraciones
|
86
|
+
newpage: Abrir en una nueva página...
|
87
|
+
tooltip:
|
88
|
+
annotations: Habilitar el subsistema de notas.
|
89
|
+
edit: Editar diapositiva actual en nueva ventana.
|
90
|
+
report: Reportar un problema con diapositiva actual.
|
91
|
+
stats: Ver las diapositivas que tu audiencia está viendo.
|
92
|
+
downloads: Abrir descargas en un menú o en una nueva página.
|
93
|
+
display: Habilitar la ventana de presentación; esta ventana debería ser mostrada en el proyector.
|
94
|
+
print: Imprimir diapositivas usando una nueva ventana.
|
95
|
+
settings: Abrir menú de Configuraciones.
|
96
|
+
preview:
|
97
|
+
next: Siguiente
|
98
|
+
previous: Anterior
|
99
|
+
mobile:
|
100
|
+
update: Actualizar
|
101
|
+
notes:
|
102
|
+
label: Notas de Showoff
|
103
|
+
personal: Notas Personales
|
104
|
+
timer:
|
105
|
+
label: "Contador de Tiempo:"
|
106
|
+
start: Iniciar
|
107
|
+
pause: Pausar
|
108
|
+
resume: Continuar
|
109
|
+
cancel: Cancelar
|
110
|
+
unit: minutos
|
111
|
+
pace:
|
112
|
+
faster: Ir Más Rápido!
|
113
|
+
slower: Ir Más Despacio!
|
114
|
+
questions: Preguntas de la Audiencia
|
115
|
+
annotation:
|
116
|
+
tools: Herramientas
|
117
|
+
lines: Líneas
|
118
|
+
shapes: Figuras
|
119
|
+
status:
|
120
|
+
label: "Diapositivas:"
|
121
|
+
settings:
|
122
|
+
label: Configuraciones
|
123
|
+
close: Cerrar
|
124
|
+
follower:
|
125
|
+
label: Actualizar Seguidor
|
126
|
+
tooltip: Enviar diapositiva de cambio de notificaciones
|
127
|
+
description: Cuando esta opción está habilitada, el servidor de Showoff rastreará los cambios de tu diapositiva. Deshabilítalo para ver la presentación sin causar cambios inesperados.
|
128
|
+
remote:
|
129
|
+
label: Habilitar Remoto
|
130
|
+
tooltip: Habilita el rastreo de otros presentadores.
|
131
|
+
description: Cuando esta opción está habilitada, puedes cargar la presentación en otro navegador (usualmente tu teléfono celular) para controlar la presentación.
|
132
|
+
layout:
|
133
|
+
label: Actualizar Seguidor
|
134
|
+
default: Diseño Estándar
|
135
|
+
thumbs: Mostrar miniatura de las diapositivas siguiente y anterior.
|
136
|
+
beside: Mostrar la siguiente diapositiva en la vista principal del presentador.
|
137
|
+
floating: Abrir la siguiente diapositiva en una ventana flotante.
|
138
|
+
confirmation: La seguridad del navegador require confirmación para abrir una ventana nueva.
|
139
|
+
open: Abrir Ventana
|
140
|
+
cancel: cancelar
|
141
|
+
reset:
|
142
|
+
label: Limpiar configuraciones de Showoff.
|
143
|
+
tooltip: Cambia las configuraciones de Showoff a sus valores iniciales.
|
144
|
+
language:
|
145
|
+
label: Idioma del contenido
|
146
|
+
tooltip: Seleccione de las traducciones disponibles o autoseleccione en función de la configuración de su navegador.
|
147
|
+
description: Esta presentación está disponible en diferentes idiomas. Elija el idioma que desea ver o déjelo en <tt>automático</tt> para usar la configuración de su navegador.
|
148
|
+
print:
|
149
|
+
label: Elija el tipo de notas impresas
|
150
|
+
description: Selecciona el contenido que quieras mostrar en las diapositivas.
|
151
|
+
none: No incluir notas
|
152
|
+
notes: Notas del presentador
|
153
|
+
handouts: Folletos de la audiencia
|
154
|
+
|
155
|
+
language:
|
156
|
+
auto: Automático
|
157
|
+
disable: Deshabilitar Traducciones
|
158
|
+
|
159
|
+
error:
|
160
|
+
file_not_found: Archivo No Encontrado!
|