-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBloomMediumPriority.xlf
More file actions
1031 lines (1031 loc) · 66 KB
/
Copy pathBloomMediumPriority.xlf
File metadata and controls
1031 lines (1031 loc) · 66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:sil="http://sil.org/software/XLiff" xmlns:html="http://www.w3.org/TR/html" version="1.2">
<file original="BloomMediumPriority.exe" source-language="en" datatype="plaintext" product-version="3.1.000.0" sil:hard-linebreak-replacement="\n">
<header>
<note>We are in the process of moving strings from Bloom.xlf to BloomMediumPriority.xlf and BloomLowPriority.xlf while trying very hard to preserve translations and approval status.</note>
</header>
<body>
<trans-unit id="AvailableWithSubscription">
<source xml:lang="en">Available with your Bloom Subscription</source>
<note>ID: AvailableWithSubscription</note>
</trans-unit>
<!-- Drag Activity Tool -->
<trans-unit id="EditTab.Toolbox.DragActivity.ChooseSound">
<source xml:lang="en">Choose...</source>
<note>ID: EditTab.Toolbox.DragActivity.ChooseSound</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ChooseSound.Help">
<source xml:lang="en">You can use elevenlabs.io to create sound effects if your book is non-commercial. Make sure to give credit to “elevenlabs.io”.</source>
<note>ID: EditTab.Toolbox.DragActivity.ChooseSound.Help</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ChooseSoundFile">
<source xml:lang="en">Choose Sound File</source>
<note>ID: EditTab.Toolbox.DragActivity.ChooseSound</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Correct">
<source xml:lang="en">Correct</source>
<note>ID: EditTab.Toolbox.DragActivity.Correct</note>
<note>Label of a button that puts the Bloom Game tool into its the mode for adding elements that should show when the reader gets the answer right.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.CorrectInstructions">
<source xml:lang="en">Add items that will show when the learner gets the correct answer. For example, you might add a text that says “Correct!” with a GIF of a dancing chicken.</source>
<note>ID: EditTab.Toolbox.DragActivity.CorrectInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ObjectsToDrag">
<source xml:lang="en">Objects to Drag</source>
<note>ID: EditTab.Toolbox.DragActivity.ObjectsToDrag</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Draggability">
<source xml:lang="en">Draggable</source>
<note>ID: EditTab.Toolbox.DragActivity.Draggability</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.DraggabilityMore">
<source xml:lang="en">During game play, this item can be moved around.</source>
<note>ID: EditTab.Toolbox.DragActivity.DraggabilityMore</note>
</trans-unit>
<!-- <trans-unit id="EditTab.Toolbox.DragActivity.DragImageHeading">
<source xml:lang="en">Drag Images to Targets</source>
<note>ID: EditTab.Toolbox.DragActivity.DragImageHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.DragLetterHeading">
<source xml:lang="en">Drag Letters to Targets</source>
<note>ID: EditTab.Toolbox.DragActivity.DragLetterHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.DragLetterInstructions">
<source xml:lang="en">Place the letters anywhere on the scene, in a mixed up order.</source>
<note>ID: EditTab.Toolbox.DragActivity.DragLetterInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.DragImageInstructions">
<source xml:lang="en">Place the images anywhere on the scene, and the targets where the student should put them.</source>
<note>ID: EditTab.Toolbox.DragActivity.DragImageInstructions</note>
</trans-unit> -->
<trans-unit id="EditTab.Toolbox.DragActivity.DraggableTarget">
<source xml:lang="en">Draggable Target</source>
<note>ID: EditTab.Toolbox.DragActivity.DraggableTarget</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.FixedInPlace">
<source xml:lang="en">Objects that do not Move</source>
<note>ID: EditTab.Toolbox.DragActivity.FixedInPlace</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.DraggableTargetInstructions">
<source xml:lang="en">Place the targets in the places needed for the correct answer.</source>
<note>ID: EditTab.Toolbox.DragActivity.DraggableTargetInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.EditWordToSpell">
<source xml:lang="en">Edit Word to Spell</source>
<note>ID: EditTab.Toolbox.DragActivity.EditWordToSpell</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Instructions">
<source xml:lang="en">Instructions</source>
<note>ID: EditTab.Toolbox.DragActivity.Instructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Text">
<source xml:lang="en">Text</source>
<note>ID: EditTab.Toolbox.DragActivity.Text</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Letter">
<source xml:lang="en">M</source>
<note>ID: EditTab.Toolbox.DragActivity.Letter</note>
<note>This is the label of an item that can be dragged onto the canvas to hold text, typically a single letter. It works best if it is one of the widest letters (including digraphs) in your alphabet</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.None">
<source xml:lang="en">None</source>
<note>ID: EditTab.Toolbox.DragActivity.None</note>
<note>Used as the label of a button that is otherwise the name of a sound file, indicating that no sound has been chosen.</note>
</trans-unit>
<!-- <trans-unit id="EditTab.Toolbox.DragActivity.OrderSentenceHeading">
<source xml:lang="en">Order Sentence</source>
<note>ID: EditTab.Toolbox.DragActivity.OrderSentenceHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.OrderSentenceInstructions">
<source xml:lang="en">Type a sentence. Bloom will shuffle the words for the student to fix.</source>
<note>ID: EditTab.Toolbox.DragActivity.OrderSentenceInstructions</note>
</trans-unit> -->
<trans-unit id="EditTab.Toolbox.DragActivity.Options">
<source xml:lang="en">Options</source>
<note>ID: EditTab.Toolbox.DragActivity.Options</note>
</trans-unit>
<!-- <trans-unit id="EditTab.Toolbox.DragActivity.OrderCircle">
<source xml:lang="en">Order Circle</source>
<note>ID: EditTab.Toolbox.DragActivity.OrderCircle</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.OrderCircleInstructions">
<source xml:lang="en">Put the Order Circles in the correct order. Bloom will shuffle them when it is time to play.</source>
<note>ID: EditTab.Toolbox.DragActivity.OrderCircleInstructions</note>
</trans-unit> -->
<trans-unit id="EditTab.Toolbox.DragActivity.PartOfRightAnswer">
<source xml:lang="en">Part of the right answer</source>
<note>ID: EditTab.Toolbox.DragActivity.PartOfRightAnswer</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.PartOfRightAnswerMore">
<source xml:lang="en">Untick this item if it is not part of the right answer</source>
<note>ID: EditTab.Toolbox.DragActivity.PartOfRightAnswerMore</note>
<note>Obsolete as of 6.3</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.PartOfRightAnswerMore.v2">
<source xml:lang="en">This item comes with a “target” to which it must be dragged. If you want to have more items than targets, turn this off for some of them.</source>
<note>ID: EditTab.Toolbox.DragActivity.PartOfRightAnswerMore.v2</note>
</trans-unit>
<!--trans-unit id="EditTab.Toolbox.DragActivity.PartOfRightAnswerDisabled">
<source xml:lang="en">Nothing that can be part of the right answer is selected</source>
<note>ID: EditTab.Toolbox.DragActivity.PartOfRightAnswerDisabled</note>
</trans-unit-->
<trans-unit id="EditTab.Toolbox.DragActivity.Play">
<source xml:lang="en">Play</source>
<note>ID: EditTab.Toolbox.DragActivity.Play</note>
<note>Label of a button that puts the Bloom Game tool into its the mode for playing (testing) the game.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.None">
<source xml:lang="en">None</source>
<note>ID: EditTab.Toolbox.DragActivity.None</note>
<note>Used as the label of a button that is otherwise the name of a sound file, indicating that no sound has been chosen.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.TargetsSameSize">
<source xml:lang="en">Keep all targets the same size so students can't use size as a clue.</source>
<note>ID: EditTab.Toolbox.DragActivity.TargetsSameSize</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.SceneInstructions">
<source xml:lang="en">Properties of the Scene</source>
<note>ID: EditTab.Toolbox.DragActivity.SceneInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.SentenceHint">
<source xml:lang="en">Type a sentence. The reader will be asked to sort the words.</source>
<note>ID: EditTab.Toolbox.DragActivity.SentenceHint</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.SetupMode">
<source xml:lang="en">Game Setup mode:</source>
<note>ID: EditTab.Toolbox.DragActivity.SetupMode</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ShowTargetsPlay">
<source xml:lang="en">Show drag targets during Play</source>
<note>ID: EditTab.Toolbox.DragActivity.ShowTargetsPlay</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ShowAnswersInTargets">
<source xml:lang="en">Show Answer even during Play</source>
<note>ID: EditTab.Toolbox.DragActivity.ShowAnswersInTargets</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Start">
<source xml:lang="en">Start</source>
<note>ID: EditTab.Toolbox.DragActivity.Start</note>
<note>Label of a button that puts the Bloom Game tool into its initial mode for setting up the game.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.TestInstructions">
<source xml:lang="en">Try it out!</source>
<note>ID: EditTab.Toolbox.DragActivity.TestInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.TryAgain">
<source xml:lang="en">Try Again</source>
<note>ID: EditTab.Toolbox.DragActivity.TryAgain</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.CorrectSound">
<source xml:lang="en">Correct Sound</source>
<note>ID: EditTab.Toolbox.DragActivity.WhenCorrect</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.WrongSound">
<source xml:lang="en">Wrong Sound</source>
<note>ID: EditTab.Toolbox.DragActivity.WhenWrong</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Word">
<source xml:lang="en">Word</source>
<note>ID: EditTab.Toolbox.DragActivity.Word</note>
<note>This is the label of an item that can be dragged onto the canvas to hold text, typically about the length of a word.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.WordToSpell">
<source xml:lang="en">Enter the word to spell</source>
<note>ID: EditTab.Toolbox.DragActivity.WordToSpell</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Wrong">
<source xml:lang="en">Wrong</source>
<note>ID: EditTab.Toolbox.DragActivity.Wrong</note>
<note>Label of a button that puts the Bloom Game tool into its the mode for adding elements that should show when the reader gets the answer wrong.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.WrongInstructions">
<source xml:lang="en">Add items that will show when the learner gets the wrong answer. For example, you might add a text that says “Try Again!”.\nIt is OK to have no correct or wrong answers. Just give the same positive reinforcement, like “Looks Nice!”.</source>
<note>ID: EditTab.Toolbox.DragActivity.WrongInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DecodableReaderTool.BookIsDecodable" sil:dynamic="true">
<source xml:lang="en">Book is Decodable</source>
<note>ID: EditTab.Toolbox.DecodableReaderTool.BookIsDecodable</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DecodableReaderTool.BookIsNotDecodable" sil:dynamic="true">
<source xml:lang="en">Book is not Decodable</source>
<note>ID: EditTab.Toolbox.DecodableReaderTool.BookIsNotDecodable</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Theme">
<source xml:lang="en">Theme</source>
<note>ID: EditTab.Toolbox.Games.Theme</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Themes.blue-on-white">
<source xml:lang="en">Blue on white</source>
<note>ID: EditTab.Toolbox.Games.Themes.blue-on-white</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Themes.white-and-orange-on-blue">
<source xml:lang="en">White and orange on blue</source>
<note>ID: EditTab.Toolbox.Games.Themes.white-and-orange-on-blue</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Themes.red-on-white">
<source xml:lang="en">Red on white</source>
<note>ID: EditTab.Toolbox.Games.Themes.red-on-white</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.DragLettersInstructions">
<source>Drag the letters where they go</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.DragLettersInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.DragPicturesInstructions">
<source>Drag the pictures where they go</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.DragPicturesInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.DragPicturesToShadowsInstructions">
<source>Drag the pictures to their shadows</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.DragPicturesToShadowsInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.MatchSoundsToWordsInstructions">
<source>Match sounds with their words</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.MatchSoundsToWordsInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.DragSoundToWordTargetInstructions">
<source>Drag the correct sound to matching word</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.DragSoundToWordTargetInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.DragWordToImageInstructions">
<source>Drag the word to the matching image</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.DragWordToImageInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.MatchImageToWordInstructions">
<source>Match each image to a word</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.MatchImageToWordInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.OrderWordsInstructions">
<source>Drag the words where they go</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.OrderInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.CustomGameInstructions">
<source>Put instructions here</source>
<note>ID: EditTab.Toolbox.Games.Placeholder.CustomGameInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool">
<source xml:lang="en">Game Tool</source>
<note>ID: EditTab.Toolbox.GameTool</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.CheckboxQuizHeading">
<source xml:lang="en">Checkbox Quiz</source>
<note>ID: EditTab.Toolbox.GameTool.CheckboxQuizHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.CheckboxQuizInstructions">
<source xml:lang="en">Check the box next to each correct answer.</source>
<note>ID: EditTab.Toolbox.GameTool.CheckboxQuizInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.ChooseImageFromWordHeading">
<source xml:lang="en">Choose Image from Word</source>
<note>ID: EditTab.Toolbox.GameTool.ChooseImageFromWordHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.ChooseImageFromWordInstructions">
<source xml:lang="en">Place the correct image in the highlighted button, put other pictures in the other buttons. When it is time to play, Bloom will shuffle the order of buttons.</source>
<note>ID: EditTab.Toolbox.GameTool.ChooseImageFromWordInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.ChooseWordFromImageHeading">
<source xml:lang="en">Choose Word from Image</source>
<note>ID: EditTab.Toolbox.GameTool.ChooseWordFromImageHeading</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.ChooseWordFromImageInstructions">
<source xml:lang="en">Type the correct word in the highlighted button, put other words in the other buttons. When it is time to play, Bloom will shuffle the order of buttons.</source>
<note>ID: EditTab.Toolbox.GameTool.ChooseWordFromImageInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.LeveledReaderTool.BookIsLeveled" sil:dynamic="true">
<source xml:lang="en">Book is Leveled</source>
<note>ID: EditTab.Toolbox.LeveledReaderTool.BookIsLeveled</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.LeveledReaderTool.BookIsNotLeveled" sil:dynamic="true">
<source xml:lang="en">Book is not Leveled</source>
<note>ID: EditTab.Toolbox.LeveledReaderTool.BookIsNotLeveled</note>
</trans-unit>
<!-- Talking Book Advanced -->
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ESpeakPreview.Error">
<source xml:lang="en">eSpeak failed.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ESpeakPreview.Error</note>
<note>This text is shown if an error occurred while running eSpeak. eSpeak is a piece of software that this program uses to do text-to-speech (have the computer read text out loud).</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeSplitOrClearExistingRecordingTextBox" sil:dynamic="true">
<source xml:lang="en">Please split or clear the existing recording in this text box before changing modes.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingModeSplitOrClearExistingRecordingTextBox</note>
<note>Shown if you open TalkingBookTool, enable "Record the whole text box...", make a recording, and then attempt to uncheck the "Record the whole text box..." input (without first clearing the audio recordings you are about to lose)</note>
<note>For "split", please use same terminology as in ID: EditTab.Toolbox.TalkingBookTool.SplitLabel</note>
<note>For "clear", please use same terminology as in ID: EditTab.Toolbox.TalkingBookTool.Clear</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecording" sil:dynamic="true">
<source xml:lang="en">Import Recording...</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ImportRecording</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecording.ConfirmReplace" sil:dynamic="true">
<source xml:lang="en">Replace with new audio?</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ImportRecording.ConfirmReplace</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecording.ConfirmReplaceMessage" sil:dynamic="true">
<source xml:lang="en">If you import this recording, it will replace all the audio for this text box.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ImportRecording.ConfirmReplaceMessage</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.InsertSegmentMarker" sil:dynamic="true">
<source xml:lang="en">Insert Segment Marker</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.InsertSegmentMarker</note>
<note>A segment marker is just "|" and it is used to break a sentence up into smaller sections for highlighting in sync with the audio.</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ApplyTimingsFile" sil:dynamic="true">
<source xml:lang="en">Apply Timings File...</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ApplyTimingsFile</note>
<note>A timings file is either from Audacity or generated by Bloom. It contains one line for each segment of the text. The line contains the start and stop time of the audio that should be synchronized with that text segment.</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.EditTimingsFile" sil:dynamic="true">
<source xml:lang="en">Edit Timings File...</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFile</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.EditTimingsFile.Extra" sil:dynamic="true">
<source xml:lang="en">Use an external tool like Audacity. When you're done, use "Apply Timings File..."</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFile.Extra</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings" sil:dynamic="true">
<source xml:lang="en">Adjust Timings...</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Aeneas" sil:dynamic="true">
<source xml:lang="en">Use Aeneas to guess timings</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Aeneas</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Aeneas.Extra" sil:dynamic="true">
<source xml:lang="en">If Bloom's timing guesses based on pauses aren't accurate enough, you can use this more advanced tool instead. Keep in mind that this will erase any changes you've made. Check [here] for more details.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Aeneas.Extra</note>
<note>The part inside square brackets will become a link.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Rerun" sil:dynamic="true">
<source xml:lang="en">Re-run pause-based timing guesses</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Rerun</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Rerun.Extra" sil:dynamic="true">
<source xml:lang="en">This will remove any adjustments you have made.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Rerun.Extra</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Title" sil:dynamic="true">
<source xml:lang="en">Adjust Timings</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Title</note>
<note>Title of the dialog launched by the previous command. Usually they differ only by leaving out the ...</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimingsDisabledTip" sil:dynamic="true">
<source xml:lang="en">This is disabled because there is not a whole text box recording</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimingsDisabledTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTip" sil:dynamic="true">
<source xml:lang="en">Click this to insert a "|" character into the text at the current cursor position. This character tells Bloom to introduce a new segment for the purpose of highlighting the text during audio playback. You can also just type the "|" character using your keyboard.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTipAddition" sil:dynamic="true">
<source xml:lang="en">Bloom will hide these when you publish.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTip</note>
<note>This will be appended to the end of EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTip. "these" refers to the "|" characters that mark audio segments, described in EditTab.Toolbox.TalkingBookTool.InsertSegmentMarkerTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.NeedCursorInRecordableThingDisabledTip" sil:dynamic="true">
<source xml:lang="en">First, put the cursor in a box which has something to record.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.NeedCursorInRecordableThingDisabledTip</note>
<note>This is shown on a button that only makes sense if the cursor is in a box of text.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeDisabledBecauseHasAudioTip" sil:dynamic="true">
<source xml:lang="en">If you want to change this mode, first use the "Clear" button to remove your recording.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTab.Toolbox.TalkingBookTool.RecordingModeDisabledBecauseHasAudioTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeSentenceTip" sil:dynamic="true">
<source xml:lang="en">Record one sentence at a time. You can break up sentences using the `|` character.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingModeSentenceTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeTextBoxTip" sil:dynamic="true">
<source xml:lang="en">Record the whole text box in one take, or load in a recording.</source>
<note>EditTab.Toolbox.TalkingBookTool.RecordingModeTextBoxTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecordingTip" sil:dynamic="true">
<source xml:lang="en">Import an mp3 recording of the whole text box.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ImportRecordingTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecordingDisabledTip" sil:dynamic="true">
<source xml:lang="en">This is disabled because this box is not in `Record by Text Box` mode.</source>
<note>EditTab.Toolbox.TalkingBookTool.ImportRecordingDisabledTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.EditTimingsFileTip" sil:dynamic="true">
<source xml:lang="en">Open the timing file in a text editor. After you save your changes, click the "Apply Timings File" button.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFileTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.EditTimingsFileDisabledTip" sil:dynamic="true">
<source xml:lang="en">This is only enabled after doing a "Split" of a recording of the whole text box.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFileDisabledTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.SplitRecordingTip" sil:dynamic="true">
<source xml:lang="en">This lets you choose a file containing timings for aligning the audio with the text. The format of the file is tab-separated values, with the first column being the start time in seconds, and the second column being the end time in seconds. The third column is often a label, but it will be ignored.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.SplitRecordingTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ShowPlaybackOrderTip" sil:dynamic="true">
<source xml:lang="en">Control the order in which various boxes on the page are played back.</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ShowPlaybackOrderTip</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingMode" sil:dynamic="true">
<source xml:lang="en">Recording Mode</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingMode</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeSentence" sil:dynamic="true">
<source xml:lang="en">By Sentence</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingModeSentence</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.RecordingModeTextBox" sil:dynamic="true">
<source xml:lang="en">By Whole Text Box</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingModeTextBox</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ShowPlaybackOrder" sil:dynamic="true">
<source xml:lang="en">Show playback order buttons</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ShowPlaybackOrder</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ShowImageDescriptions" sil:dynamic="true">
<source xml:lang="en">Show image descriptions</source>
<note>ID: EditTab.Toolbox.TalkingBookTool.ShowImageDescriptions</note>
<note>Image descriptions are typed out, then recorded, so that the book can be used by the blind. This is a switch that shows the typed out image descriptions next to each image on the page.</note>
<note>Shown if you open TalkingBookTool and then open the 'Advanced' subsection</note>
</trans-unit>
<!-- Canvas (was Overlay) -->
<trans-unit id="EditTab.Toolbox.CanvasTool.BookGrid" sil:dynamic="true">
<source xml:lang="en">A grid of buttons that jump you to books in your app</source>
<note>ID: EditTab.Toolbox.CanvasTool.BookGrid</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ClickToSetLinkDest" sil:dynamic="true">
<source xml:lang="en">Click to set where the link takes you</source>
<note>ID: EditTab.Toolbox.CanvasTool.ClickToSetLinkDest</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.DragInstructions" sil:dynamic="true">
<source xml:lang="en">Drag any of these onto a canvas:</source>
<note>ID: EditTab.Toolbox.CanvasTool.DragInstructions2</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit" sil:dynamic="true">
<source xml:lang="en">Image Fit</source>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.Margin" sil:dynamic="true">
<source xml:lang="en">Fit with Margin</source>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit.Margin</note>
<note>Leave a margin around the image within the button.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.FitToEdge" sil:dynamic="true">
<source xml:lang="en">Fit to Edge</source>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit.FitToEdge</note>
<note>Fill up the button with the image, leaving a margin on the sides as needed.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.Fill" sil:dynamic="true">
<source xml:lang="en">Fill</source>
<note>Fill up the button with the image, leaving no margin, cropping if necessary</note>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit.Fill</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.LinkGrid.ChooseBooks" sil:dynamic="true">
<source xml:lang="en">Choose books...</source>
<note>ID: EditTab.Toolbox.CanvasTool.LinkGrid.ChooseBooks</note>
<note>Button text for opening the dialog to choose books for a link grid</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.NavButtons" sil:dynamic="true">
<source xml:lang="en">A button that jumps you to a page or book in your app</source>
<note>ID: EditTab.Toolbox.OverlayTool.NavButtons</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.Navigation" sil:dynamic="true">
<source xml:lang="en">Navigation</source>
<note>ID: EditTab.Toolbox.CanvasTool.Navigation</note>
<note>Label for an expandable section in the Canvas Tool that contains navigation-related objects (e.g. buttons and book grids) that can be dragged onto a page.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.NavigationButton.DefaultText" sil:dynamic="true">
<source xml:lang="en">Go Somewhere</source>
<note>ID: EditTab.Toolbox.CanvasTool.NavigationButton.DefaultText</note>
<note>Default text for a navigation button</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.SetDest" sil:dynamic="true">
<source xml:lang="en">Set Destination</source>
<note>ID: EditTab.Toolbox.OverlayTool.SetDest</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.OverlayTool.KeyHints.Drag" sil:dynamic="true">
<source xml:lang="en">drag</source>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Drag</note>
<note>Used in the Key hints at the bottom of the Canvas Tool for Alt+drag and Ctrl+drag.</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.OverlayTool.KeyHints.Resize" sil:dynamic="true">
<source xml:lang="en">resize</source>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Resize</note>
<note>Used in the Key hint at the bottom of the Canvas Tool for "Alt + drag = resize".</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.OverlayTool.KeyHints.Move" sil:dynamic="true">
<source xml:lang="en">move</source>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Move</note>
<note>Used in the Key hint at the bottom of the Canvas Tool for "Ctrl + drag = move".</note>
</trans-unit>
<trans-unit id="ReaderSetup.SentencePunctuation.Header" sil:dynamic="true">
<source xml:lang="en">Special Sentence-Ending Punctuation</source>
<note>ID: ReaderSetup.SentencePunctuation.Header</note>
</trans-unit>
<trans-unit id="PublishTab.Language.Enabled" sil:dynamic="true">
<source xml:lang="en">Select this if you want readers to be able to choose to read the book in this language.</source>
<note>ID: PublishTab.Language.Enabled</note>
<note>This is a tooltip on a checkbox. The checkbox contains the name of a language. The checkbox controls whether this language will be included in the published book.</note>
</trans-unit>
<trans-unit id="PublishTab.Language.Required" sil:dynamic="true">
<source xml:lang="en">This is disabled because this language is currently shown in the book, so it is required.</source>
<note>ID: PublishTab.Language.Required</note>
<note>This is a tooltip on a checkbox. The checkbox contains the name of a language. The checkbox controls whether this language will be included in the published book. In this case, the user is not allowed to change the value.</note>
</trans-unit>
<trans-unit id="PublishTab.AudioLanguage.Enabled" sil:dynamic="true">
<source xml:lang="en">Select this if you want to include this audio.</source>
<note>ID: PublishTab.AudioLanguage.Enabled</note>
<note>This is a tooltip on a checkbox. The checkbox contains the name of a language. The checkbox controls whether the Talking Book audio for this language will be included in the published book.</note>
</trans-unit>
<trans-unit id="PublishTab.AudioLanguage.Disabled" sil:dynamic="true">
<source xml:lang="en">This is disabled because this book does not have any audio in this language.</source>
<note>ID: PublishTab.AudioLanguage.Disabled</note>
<note>This is a tooltip on a checkbox. The checkbox contains the name of a language. The checkbox controls whether the Talking Book audio for this language will be included in the published book. In this case, the user is not allowed to change the value.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Activities.None">
<source xml:lang="en">This book does not have any interactive activities.</source>
<note>ID: PublishTab.Feature.Activities.None</note>
<note>This is a tooltip.</note>
<note>Obsolete as of 6.2</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Activities.Present">
<source xml:lang="en">This book has interactive activities.</source>
<note>ID: PublishTab.Feature.Activities.Present</note>
<note>This is a tooltip.</note>
<note>Obsolete as of 6.2</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Activities.RequiresSubscription">
<source xml:lang="en">This is disabled because publishing interactive activities requires a subscription.</source>
<note>ID: PublishTab.Feature.Activities.RequiresSubscription</note>
<note>This is a tooltip.</note>
<note>Obsolete as of 6.2</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Games.None">
<source xml:lang="en">This book does not have any games.</source>
<note>ID: PublishTab.Feature.Games.None</note>
<note>This is a tooltip.</note>
<note>Obsolete as of 6.2</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Games.Present">
<source xml:lang="en">This book has games.</source>
<note>ID: PublishTab.Feature.Games.Present</note>
<note>This is a tooltip.</note>
<note>Obsolete as of 6.2</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Comic.None">
<source xml:lang="en">This is disabled because this book does not have any canvas elements that qualify as “comic-like”, such as speech bubbles.</source>
<note>ID: PublishTab.Feature.Comic.None</note>
<note>This is a tooltip.</note>
<note>Obsolete as of Bloom 6.3</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Comic.Possible">
<source xml:lang="en">Select this if you want to list this book as a Comic Book. This only affects how the book is categorized, it does not affect the content of the book.</source>
<note>ID: PublishTab.Feature.Comic.Possible</note>
<note>This is a tooltip.</note>
<note>Obsolete as of Bloom 6.3</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Motion.None">
<source xml:lang="en">This is disabled because this book does not have any pages with motion enabled.</source>
<note>ID: PublishTab.Feature.Motion.None</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Motion.Possible">
<source xml:lang="en">Select this if you want to show motion when the book is read in landscape mode.</source>
<note>ID: PublishTab.Feature.Motion.None</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Music">
<source xml:lang="en">Background Music</source>
<note>ID: PublishTab.Feature.Music</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.SignLanguage.NoVideos">
<source xml:lang="en">This is disabled because this book does not have any videos.</source>
<note>ID: PublishTab.Feature.SignLanguage.NoVideos</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.SignLanguage.Present">
<source xml:lang="en">The videos in this book contain {N}</source>
<note>ID: PublishTab.Feature.SignLanguage.Present</note>
<note>{N} will be replaced with a link whose text is the name of the (sign) language and which opens a chooser</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.SignLanguage.Unknown">
<source xml:lang="en">This is disabled because this collection has {no sign language selected}.</source>
<note>ID: PublishTab.Feature.SignLanguage.Unknown</note>
<note>The result should have a section in braces. This will become a hot link which will open a user interface that lets the user select a sign language.</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.TalkingBook.NoRecordings">
<source xml:lang="en">This is disabled because this book does not have any Talking Book recordings.</source>
<note>ID: PublishTab.Feature.TalkingBook.NoRecordings</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.TalkingBook.NoLanguagesSelected">
<source xml:lang="en">This is disabled because no “Talking Book Languages” are selected.</source>
<note>ID: PublishTab.Feature.TalkingBook.NoLanguagesSelected</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Vision.None">
<source xml:lang="en">This is disabled because this book does not have any image descriptions in the primary language.</source>
<note>ID: PublishTab.Feature.Vision.None</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Vision.Possible">
<source xml:lang="en">Select this if you want to list this book as accessible to the visually impaired in the primary language. This only affects how the book is categorized, it does not affect the content of the book.</source>
<note>ID: PublishTab.Feature.Vision.Possible</note>
<note>This is a tooltip.</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.Draft">
<source xml:lang="en">Do not show this book to the public yet. I will share its URL with reviewers for feedback.</source>
<note>ID: PublishTab.Upload.Draft</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.Visibility">
<source xml:lang="en">Visibility</source>
<note>ID: PublishTab.Upload.Visibility</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.ConsiderBloomPUB" sil:dynamic="true">
<source xml:lang="en">Consider whether you can distribute your book using the BloomPUB format instead of, or in addition to, the ePUB format.</source>
<note>ID: PublishTab.Epub.ConsiderBloomPUB</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.FeatureLimitations" sil:dynamic="true">
<source xml:lang="en">[Some Bloom features] are not supported by most or all ePUB readers.</source>
<note>ID: PublishTab.Epub.FeatureLimitations</note>
<note>The text inside the [square brackets] will become a link to a website.</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.Notes" sil:dynamic="true">
<source xml:lang="en">Notes:</source>
<note>ID: PublishTab.Epub.Notes</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.AboutReaders" sil:dynamic="true">
<source xml:lang="en">About ePUB Readers & Bloom</source>
<note>ID: PublishTab.Epub.AboutReaders</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.ReaderRecommendations" sil:dynamic="true">
<source xml:lang="en">Most ePUB readers are very low quality ([see our research and recommendations]).</source>
<note>ID: PublishTab.Epub.ReaderRecommendations</note>
<note>The text inside the [square brackets] will become a link to a website.</note>
</trans-unit>
<trans-unit id="PublishTab.RecordVideo.NotOnLinux" sil:dynamic="true">
<source xml:lang="en">Not available on Linux</source>
<note>ID: PublishTab.RecordVideo.NotOnLinux</note>
<note>"Linux" is an operating system name which may not translate.</note>
</trans-unit>
<trans-unit id="PublishTab.RecordVideo.ApologiesForNoLinux" sil:dynamic="true">
<source xml:lang="en">This feature is available only on the Windows version of Bloom. We apologize for the inconvenience.</source>
<note>ID: PublishTab.RecordVideo.ApologiesForNoLinux</note>
<note>"Windows" and "Linux" are operating system names which may not translate.</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.WhyShareOnBlorg" sil:dynamic="true">
<source xml:lang="en">Why you should publish on the Web</source>
<note>ID: PublishTab.Upload.WhyShareOnBlorg</note>
<note>This phrase has a link to an explanation of the benefits of sharing books on BloomLibrary.org.</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.Help" sil:dynamic="true">
<source xml:lang="en">Documentation about this screen</source>
<note>ID: PublishTab.Upload.Help</note>
<note>This phrase has a link to bring up the help viewer on the topic "Publish to Web".</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.AboutBlorg" sil:dynamic="true">
<source xml:lang="en">About BloomLibrary.org</source>
<note>ID: PublishTab.Upload.AboutBlorg</note>
<note>This phrase has a link to the "About Bloom" page on that website.</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.ViewOnBlorg" sil:dynamic="true">
<source xml:lang="en">View on BloomLibrary.org</source>
<note>CollectionTab.OnBlorgBadge.ViewOnBlorg</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Published" sil:dynamic="true">
<source xml:lang="en">Published</source>
<note>CollectionTab.OnBlorgBadge.Published</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.MarkedAsDraft" sil:dynamic="true">
<source xml:lang="en">Marked as Draft</source>
<note>CollectionTab.OnBlorgBadge.MarkedAsDraft</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Harvesting" sil:dynamic="true">
<source xml:lang="en">In Progress</source>
<note>CollectionTab.OnBlorgBadge.Harvesting</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Problem" sil:dynamic="true">
<source xml:lang="en">Problem</source>
<note>CollectionTab.OnBlorgBadge.Problem</note>
</trans-unit>
<trans-unit id="BookSettings.LockedByBranding" sil:dynamic="true">
<source xml:lang="en">Locked by {0} Branding</source>
<note>BookSettings.LockedByBranding</note>
<note>{0} is the name of a Branding pack</note>
</trans-unit>
<trans-unit id="BookSettings.LockedByLegacy" sil:dynamic="true">
<source xml:lang="en">Locked by Legacy-5-6 theme</source>
<note>BookSettings.LockedByLegacy</note>
</trans-unit>
<trans-unit id="BookSettings.LockedByXMatter" sil:dynamic="true">
<source xml:lang="en">Locked by {0} Front/Back matter</source>
<note>BookSettings.LockedByXMatter</note>
<note>{0} is the name of an xmatter pack</note>
</trans-unit>
<trans-unit id="BookSettings.Title" sil:dynamic="true">
<source xml:lang="en">Book Settings</source>
<note>BookSettings.Title</note>
<note>the heading of the dialog</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution" sil:dynamic="true">
<source xml:lang="en">Max Image Size</source>
<note>BookSettings.eBook.Image.MaxResolution</note>
<note>keyword used to describe the size in pixels of a display screen or of an image</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.Small" sil:dynamic="true">
<source xml:lang="en">Small</source>
<note>BookSettings.eBook.Image.MaxResolution.Small</note>
<note>label for our small resolution (600 x 600)</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.HD" sil:dynamic="true">
<source xml:lang="en">HD</source>
<note>BookSettings.eBook.Image.MaxResolution.HD</note>
<note>abbreviation for High Definition (1280 x 720)</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.Full HD" sil:dynamic="true">
<source xml:lang="en">Full HD</source>
<note>BookSettings.eBook.Image.MaxResolution.Full HD</note>
<note>abbreviation for Full High Definition (1920 x 1080)</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.4K" sil:dynamic="true">
<source xml:lang="en">4K</source>
<note>BookSettings.eBook.Image.MaxResolution.4K</note>
<note>abbreviation for Ultra High Definition, also known as "4K" (3480 x 2160)</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.Directions" sil:dynamic="true">
<source xml:lang="en">Bloom reduces images to a maximum size to make books easier to view over poor internet connections and take up less space on phones.</source>
<note>BookSettings.eBook.Image.MaxResolution.Directions</note>
<note>displayed below the slider that is used to set the image resolution</note>
</trans-unit>
<trans-unit id="BookSettings.CoverGroupLabel" sil:dynamic="true">
<source xml:lang="en">Cover</source>
<note>BookSettings.CoverGroupLabel</note>
</trans-unit>
<trans-unit id="BookSettings.CoverIsImage" sil:dynamic="true">
<source xml:lang="en">Fill the front cover with a single image</source>
<note>BookSettings.CoverIsImage</note>
</trans-unit>
<trans-unit id="BookSettings.CoverIsImage.Description" sil:dynamic="true">
<source xml:lang="en">Using this option turns on the [Print Bleed](https://en.wikipedia.org/wiki/Bleed_%28printing%29) indicators on paper layouts. See [Full Page Cover Images](https://docs.bloomlibrary.org/full-page-cover-images) for information on sizing your image to fit.</source>
<note>BookSettings.CoverIsImage.Description</note>
<note>obsolete as of Bloom 6.3</note>
</trans-unit>
<trans-unit id="BookSettings.CoverIsImage.Description.V2" sil:dynamic="true">
<source xml:lang="en">Replace the front cover content with a single full-bleed image. See [Full Page Cover Images](https://docs.bloomlibrary.org/full-page-cover-images) for information on sizing your image to fit.</source>
<note>BookSettings.CoverIsImage.Description.V2</note>
</trans-unit>
<trans-unit id="BookSettings.FullBleed" sil:dynamic="true">
<source xml:lang="en">Use full bleed page layout</source>
<note>BookSettings.FullBleed</note>
</trans-unit>
<trans-unit id="BookSettings.FullBleed.Description" sil:dynamic="true">
<source xml:lang="en">Enable full bleed layout for printing. Use with the "Edge to Edge" theme. This turns on the [Print Bleed](https://en.wikipedia.org/wiki/Bleed_%28printing%29) indicators on paper layouts. See [Full Bleed Layout](https://docs.bloomlibrary.org/full-bleed) for more information.</source>
<note>BookSettings.FullBleed.Description</note>
</trans-unit>
<trans-unit id="BookSettings.ContentPagesGroupLabel" sil:dynamic="true">
<source xml:lang="en">Content Pages</source>
<note>BookSettings.ContentPagesGroupLabel</note>
</trans-unit>
<trans-unit id="BookSettings.PrintPublishingGroupLabel" sil:dynamic="true">
<source xml:lang="en">Print Publishing</source>
<note>ID: BookSettings.PrintPublishingGroupLabel</note>
<note>Main section label in the Book Settings dialog that contains print-related options such as Full Bleed.</note>
</trans-unit>
<trans-unit id="BookSettings.NormalTextBoxLangsLabel" sil:dynamic="true">
<source xml:lang="en">Languages to show in normal text boxes</source>
<note>BookSettings.NormalTextBoxLangsLabel</note>
</trans-unit>
<trans-unit id="BookSettings.PageThemeLabel" sil:dynamic="true">
<source xml:lang="en">Page Theme</source>
<note>BookSettings.PageThemeLabel</note>
</trans-unit>
<trans-unit id="BookSettings.Theme.Description" sil:dynamic="true">
<source xml:lang="en">Page Themes are a bundle of margins, borders, and other page settings. For information about each theme, see [Page Themes Catalog](https://docs.bloomlibrary.org/page-themes-catalog).</source>
<note>BookSettings.Theme.Description</note>
</trans-unit>
<trans-unit id="Common.BackgroundColor" sil:dynamic="true">
<source xml:lang="en">Background Color</source>
<note>Common.CoverBackgroundColor</note>
</trans-unit>
<trans-unit id="BookSettings.WhatToShowOnCover" sil:dynamic="true">
<source xml:lang="en">Front Cover</source>
<note>BookSettings.WhatToShowOnCover</note>
</trans-unit>
<trans-unit id="BookSettings.ShowContentLanguage" sil:dynamic="true">
<source xml:lang="en">Show {0}</source>
<note>BookSettings.ShowContentLanguage</note>
</trans-unit>
<trans-unit id="BookSettings.ShowWrittenLanguageTitle" sil:dynamic="true">
<source xml:lang="en">Show Title in {0}</source>
<note>BookSettings.ShowWrittenLanguageTitle</note>
</trans-unit>
<trans-unit id="BookSettings.ShowLanguageName" sil:dynamic="true">
<source xml:lang="en">Show Language Name</source>
<note>BookSettings.ShowLanguageName</note>
</trans-unit>
<trans-unit id="BookSettings.ShowTopic" sil:dynamic="true">
<source xml:lang="en">Show Topic</source>
<note>BookSettings.ShowTopic</note>
</trans-unit>
<trans-unit id="BookSettings.ShowCredits" sil:dynamic="true">
<source xml:lang="en">Show Credits</source>
<note>BookSettings.ShowCredits</note>
<note>Show Credits on the cover page</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers" sil:dynamic="true">
<source xml:lang="en">Page Numbers</source>
<note>BookSettings.PageNumbers</note>
</trans-unit>
<trans-unit id="BookSettings.ShowPageNumbers" sil:dynamic="true">
<source xml:lang="en">Show Page Numbers</source>
<note>BookSettings.ShowPageNumbers</note>
<note>Obsolete as of 6.3</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Automatic" sil:dynamic="true">
<source xml:lang="en">(Automatic)</source>
<note>BookSettings.PageNumbers.Automatic</note>
<note>Indicates page number location should be chosen automatically</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Left" sil:dynamic="true">
<source xml:lang="en">Left</source>
<note>BookSettings.PageNumbers.TopLeft</note>
<note>Indicates page number should be positioned on the left side of the page</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Center" sil:dynamic="true">
<source xml:lang="en">Center</source>
<note>BookSettings.PageNumbers.Center</note>
<note>Indicates page number should be centered</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Right" sil:dynamic="true">
<source xml:lang="en">Right</source>
<note>BookSettings.PageNumbers.Right</note>
<note>Indicates page number should be positioned on the right side of the page</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Hidden" sil:dynamic="true">
<source xml:lang="en">Hidden</source>
<note>BookSettings.PageNumbers.Hidden</note>
<note>Indicates page numbers should not be visible</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumberLocationNote" sil:dynamic="true">
<source xml:lang="en">Note: some Page Themes may not know how to change the location of the Page Number.</source>
<note>BookSettings.PageNumberLocationNote</note>
</trans-unit>
<trans-unit id="BookSettings.FrontAndBackMatter" sil:dynamic="true">
<source xml:lang="en">Front & Back Matter</source>
<note>BookSettings.FrontAndBackMatter</note>
<note>& is an abbreviation symbol for "and"</note>
</trans-unit>
<trans-unit id="BookSettings.FrontAndBackMatter.Description" sil:dynamic="true">
<source xml:lang="en">Normally, books use the front & back matter pack that is chosen for the entire collection. Using this setting, you can cause this individual book to use a different one.</source>
<note>BookSettings.FrontAndBackMatter.Description</note>
<note>& is an abbreviation symbol for "and"</note>
</trans-unit>
<trans-unit id="BookSettings.Resolution" sil:dynamic="true">
<source xml:lang="en">Resolution</source>
<note>BookSettings.Resolution</note>
<note>This term tries to briefly describe the native size of the picture in pixel dimensions.</note>
</trans-unit>
<trans-unit id="BookSettings.DeleteCustomBookStyles" sil:dynamic="true">
<source xml:lang="en">Delete {0}</source>
<note>BookSettings.DeleteCustomBookStyles</note>
<note>{0} is a placeholder for a filename and should not be translated</note>
</trans-unit>
<trans-unit id="BookSettings.CustomMigrateCanDelete" sil:dynamic="true">
<source xml:lang="en"></source>
<note>BookSettings.CustomMigrateCanDelete</note>
</trans-unit>
<trans-unit id="BookSettings.UsingLegacyThemeWithIncompatibleCss" sil:dynamic="true">
<source xml:lang="en">The {0} stylesheet of this book is incompatible with modern themes. Bloom is using it because the book is using the Legacy-5-6 theme. Click [here] for more information.</source>
<note>BookSettings.UsingLegacyThemeWithIncompatibleCss</note>
<note>{0} is a placeholder for a filename. The text inside the [square brackets] will become a link to a website.</note>
</trans-unit>
<trans-unit id="BookSettings.UsingMigratedThemeInsteadOfIncompatibleCss" sil:dynamic="true">
<source xml:lang="en">Bloom found a known version of {0} in this book and replaced it with a modern theme. You can delete it unless you still need to publish the book from an earlier version of Bloom.</source>
<note>BookSettings.UsingMigratedThemeInsteadOfIncompatibleCss</note>
<note>{0} is a placeholder for a filename.</note>
</trans-unit>
<trans-unit id="BookSettings.IgnoringIncompatibleCssCanDelete" sil:dynamic="true">
<source xml:lang="en">The {0} stylesheet of this book is incompatible with modern themes. Bloom is currently ignoring it. If you don't need those customizations any more, you can delete your {0}. Click [here] for more information.</source>
<note>BookSettings.IgnoringIncompatibleCssCanDelete</note>
<note>{0} is a placeholder for a filename. (Note that it appears twice.) The text inside the [square brackets] will become a link to a website.</note>
</trans-unit>
<trans-unit id="BookSettings.IgnoringIncompatibleCss" sil:dynamic="true">
<source xml:lang="en">The {0} stylesheet of this book is incompatible with modern themes. Bloom is currently ignoring it. Click [here] for more information.</source>
<note>BookSettings.IgnoringIncompatibleCss</note>
<note>{0} is a placeholder for a filename. The text inside the [square brackets] will become a link to a website.</note>
</trans-unit>
<trans-unit id="BookSettings.ThemeDisablesOptionsNotice" sil:dynamic="true">
<source xml:lang="en">The selected page theme does not support the following settings.</source>
<note>BookSettings.ThemeDisablesOptionsNotice</note>
</trans-unit>
<trans-unit id="BookSettings.AdvancedLayoutLabel" sil:dynamic="true">
<source xml:lang="en">Advanced Layout</source>
<note>BookSettings.AdvancedLayoutLabel</note>
</trans-unit>
<trans-unit id="BookSettings.Gutter.DefaultLabel" sil:dynamic="true">
<source xml:lang="en">Default (set by Theme)</source>
<note>BookSettings.Gutter.DefaultLabel</note>
</trans-unit>
<trans-unit id="BookSettings.Gutter.Description" sil:dynamic="true">
<source xml:lang="en">Extra space between pages near the book spine. Increase this for books with many pages to ensure text isn't lost in the binding. This gap is applied to each side of the spine.</source>
<note>BookSettings.Gutter.Description</note>
</trans-unit>
<trans-unit id="BookSettings.Gutter.Label" sil:dynamic="true">
<source xml:lang="en">Page Gutter</source>
<note>BookSettings.Gutter.Label</note>
</trans-unit>
<trans-unit id="BookSettings.TopLevelTextPaddingLabel" sil:dynamic="true">
<source xml:lang="en">Text Padding</source>
<note>BookSettings.TopLevelTextPaddingLabel</note>
</trans-unit>
<trans-unit id="BookSettings.TopLevelTextPadding.Description" sil:dynamic="true">
<source xml:lang="en">Smart spacing around text boxes. Works well for simple pages, but may not suit custom layouts.</source>
<note>BookSettings.TopLevelTextPadding.Description</note>
</trans-unit>
<trans-unit id="BookSettings.TopLevelTextPadding.DefaultLabel" sil:dynamic="true">
<source xml:lang="en">Default (set by Theme)</source>
<note>BookSettings.TopLevelTextPadding.DefaultLabel</note>
</trans-unit>
<trans-unit id="BookSettings.TopLevelTextPadding.1emLabel" sil:dynamic="true">
<source xml:lang="en">1 em (font size)</source>
<note>BookSettings.TopLevelTextPadding.1emLabel</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.Problematic" sil:dynamic="true">
<source xml:lang="en">When you publish a book to the web or as an ebook, Bloom will flag any problematic fonts. For example, we cannot legally host most Microsoft fonts on BloomLibrary.org.</source>
<note>ID: BookSettings.Fonts.Problematic</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.TableDescription" sil:dynamic="true">
<source xml:lang="en">The following table shows where fonts have been used.</source>
<note>ID: BookSettings.Fonts.TableDescription</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.FontNotInstalled" sil:dynamic="true">
<source xml:lang="en">Font is not installed on this computer</source>
<note>ID: BookSettings.Fonts.FontNotInstalled</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.FirstPage" sil:dynamic="true">
<source xml:lang="en">First Page</source>
<note>ID: BookSettings.Fonts.FirstPage</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.All" sil:dynamic="true">
<source xml:lang="en">(all)</source>
<note>ID: BookSettings.Fonts.All</note>
<note>flags that the same font is used for all languages for the given style</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.PageNumber" sil:dynamic="true">
<source xml:lang="en">Page {0}</source>
<note>ID: BookSettings.Fonts.PageNumber</note>
<note>Do not change {0}. It will be replaced by the page number.</note>
</trans-unit>
<trans-unit id="BookSettings.Fonts.UnnumberedPage" sil:dynamic="true">
<source xml:lang="en">Unnumbered Page</source>
<note>ID: BookSettings.Fonts.UnnumberedPage</note>
</trans-unit>
<trans-unit id="AppearanceTheme.default" sil:dynamic="true">
<source xml:lang="en">Default</source>
<note>AppearanceTheme.default</note>
</trans-unit>
<!-- <trans-unit id="AppearanceTheme.rounded-border-bottom-number-ebook" sil:dynamic="true">
<source xml:lang="en">Experimental Rounded Border</source>
<note>AppearanceTheme.ebook-rounded-border-bottom-number</note>
</trans-unit> -->
<trans-unit id="AppearanceTheme.edge-to-edge" sil:dynamic="true">
<source xml:lang="en">Edge to Edge</source>
<note>See https://docs.bloomlibrary.org/page-themes-catalog</note>
</trans-unit>
<trans-unit id="AppearanceTheme.narrow-margin-ebook" sil:dynamic="true">