-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBloomMediumPriority.xlf
More file actions
1147 lines (1147 loc) · 80.7 KB
/
Copy pathBloomMediumPriority.xlf
File metadata and controls
1147 lines (1147 loc) · 80.7 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:sil="http://sil.org/software/XLiff" xmlns:html="http://www.w3.org/TR/html" xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2">
<file original="BloomMediumPriority.exe" source-language="en" datatype="plaintext" product-version="3.1.000.0" sil:hard-linebreak-replacement="\n" target-language="az">
<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>
<target xml:lang="az" state="needs-translation">Available with your Bloom Subscription</target>
<note>ID: AvailableWithSubscription</note>
</trans-unit>
<!-- Drag Activity Tool -->
<trans-unit id="EditTab.Toolbox.DragActivity.ChooseSound">
<source xml:lang="en">Choose...</source>
<target xml:lang="az" state="needs-translation">Choose...</target>
<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>
<target xml:lang="az" state="needs-translation">You can use elevenlabs.io to create sound effects if your book is non-commercial. Make sure to give credit to “elevenlabs.io”.</target>
<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>
<target xml:lang="az" state="needs-translation">Choose Sound File</target>
<note>ID: EditTab.Toolbox.DragActivity.ChooseSound</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Correct">
<source xml:lang="en">Correct</source>
<target xml:lang="az" state="needs-translation">Correct</target>
<note>ID: EditTab.Toolbox.DragActivity.Correct</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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>ID: EditTab.Toolbox.DragActivity.CorrectInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.ObjectsToDrag">
<source xml:lang="en">Objects to Drag</source>
<target xml:lang="az" state="needs-translation">Objects to Drag</target>
<note>ID: EditTab.Toolbox.DragActivity.ObjectsToDrag</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Draggability">
<source xml:lang="en">Draggable</source>
<target xml:lang="az" state="needs-translation">Draggable</target>
<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>
<target xml:lang="az" state="needs-translation">During game play, this item can be moved around.</target>
<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>
<target xml:lang="az" state="needs-translation">Draggable Target</target>
<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>
<target xml:lang="az" state="needs-translation">Objects that do not Move</target>
<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>
<target xml:lang="az" state="needs-translation">Place the targets in the places needed for the correct answer.</target>
<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>
<target xml:lang="az" state="needs-translation">Edit Word to Spell</target>
<note>ID: EditTab.Toolbox.DragActivity.EditWordToSpell</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Instructions">
<source xml:lang="en">Instructions</source>
<target xml:lang="az" state="needs-translation">Instructions</target>
<note>ID: EditTab.Toolbox.DragActivity.Instructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Text">
<source xml:lang="en">Text</source>
<target xml:lang="az" state="needs-translation">Text</target>
<note>ID: EditTab.Toolbox.DragActivity.Text</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Letter">
<source xml:lang="en">M</source>
<target xml:lang="az" state="needs-translation">M</target>
<note>ID: EditTab.Toolbox.DragActivity.Letter</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.None">
<source xml:lang="en">None</source>
<target xml:lang="az" state="needs-translation">None</target>
<note>ID: EditTab.Toolbox.DragActivity.None</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>
<target xml:lang="az" state="needs-translation">Options</target>
<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>
<target xml:lang="az" state="needs-translation">Part of the right answer</target>
<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>
<target xml:lang="az" state="needs-translation">Untick this item if it is not part of the right answer</target>
<note>ID: EditTab.Toolbox.DragActivity.PartOfRightAnswerMore</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.PartOfRightAnswerMore.v2" translate="no">
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Play</target>
<note>ID: EditTab.Toolbox.DragActivity.Play</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.None">
<source xml:lang="en">None</source>
<target xml:lang="az" state="needs-translation">None</target>
<note>ID: EditTab.Toolbox.DragActivity.None</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>
<target xml:lang="az" state="needs-translation">Keep all targets the same size so students can't use size as a clue.</target>
<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>
<target xml:lang="az" state="needs-translation">Properties of the Scene</target>
<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>
<target xml:lang="az" state="needs-translation">Type a sentence. The reader will be asked to sort the words.</target>
<note>ID: EditTab.Toolbox.DragActivity.SentenceHint</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.SetupMode">
<source xml:lang="en">Game Setup mode:</source>
<target xml:lang="az" state="needs-translation">Game Setup mode:</target>
<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>
<target xml:lang="az" state="needs-translation">Show drag targets during Play</target>
<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>
<target xml:lang="az" state="needs-translation">Show Answer even during Play</target>
<note>ID: EditTab.Toolbox.DragActivity.ShowAnswersInTargets</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Start">
<source xml:lang="en">Start</source>
<target xml:lang="az" state="needs-translation">Start</target>
<note>ID: EditTab.Toolbox.DragActivity.Start</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.TestInstructions">
<source xml:lang="en">Try it out!</source>
<target xml:lang="az" state="needs-translation">Try it out!</target>
<note>ID: EditTab.Toolbox.DragActivity.TestInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.TryAgain">
<source xml:lang="en">Try Again</source>
<target xml:lang="az" state="needs-translation">Try Again</target>
<note>ID: EditTab.Toolbox.DragActivity.TryAgain</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.CorrectSound">
<source xml:lang="en">Correct Sound</source>
<target xml:lang="az" state="needs-translation">Correct Sound</target>
<note>ID: EditTab.Toolbox.DragActivity.WhenCorrect</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.WrongSound">
<source xml:lang="en">Wrong Sound</source>
<target xml:lang="az" state="needs-translation">Wrong Sound</target>
<note>ID: EditTab.Toolbox.DragActivity.WhenWrong</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Word">
<source xml:lang="en">Word</source>
<target xml:lang="az" state="needs-translation">Word</target>
<note>ID: EditTab.Toolbox.DragActivity.Word</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.WordToSpell">
<source xml:lang="en">Enter the word to spell</source>
<target xml:lang="az" state="needs-translation">Enter the word to spell</target>
<note>ID: EditTab.Toolbox.DragActivity.WordToSpell</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.DragActivity.Wrong">
<source xml:lang="en">Wrong</source>
<target xml:lang="az" state="needs-translation">Wrong</target>
<note>ID: EditTab.Toolbox.DragActivity.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>
<target xml:lang="az" state="needs-translation">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!”.</target>
<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>
<target xml:lang="az" state="needs-translation">Book is Decodable</target>
<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>
<target xml:lang="az" state="needs-translation">Book is not Decodable</target>
<note>ID: EditTab.Toolbox.DecodableReaderTool.BookIsNotDecodable</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Theme">
<source xml:lang="en">Theme</source>
<target xml:lang="az" state="needs-translation">Theme</target>
<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>
<target xml:lang="az" state="needs-translation">Blue on white</target>
<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>
<target xml:lang="az" state="needs-translation">White and orange on blue</target>
<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>
<target xml:lang="az" state="needs-translation">Red on white</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the letters where they go</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the pictures where they go</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the pictures to their shadows</target>
<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>
<target xml:lang="az" state="needs-translation">Match sounds with their words</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the correct sound to matching word</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the word to the matching image</target>
<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>
<target xml:lang="az" state="needs-translation">Match each image to a word</target>
<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>
<target xml:lang="az" state="needs-translation">Drag the words where they go</target>
<note>ID: EditTab.Toolbox.Games.Placeholder.OrderInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.Games.Placeholder.CustomGameInstructions">
<source>Put instructions here</source>
<target xml:lang="az" state="needs-translation">Put instructions here</target>
<note>ID: EditTab.Toolbox.Games.Placeholder.CustomGameInstructions</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool">
<source xml:lang="en">Game Tool</source>
<target xml:lang="az" state="needs-translation">Game Tool</target>
<note>ID: EditTab.Toolbox.GameTool</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.GameTool.CheckboxQuizHeading">
<source xml:lang="en">Checkbox Quiz</source>
<target xml:lang="az" state="needs-translation">Checkbox Quiz</target>
<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>
<target xml:lang="az" state="needs-translation">Check the box next to each correct answer.</target>
<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>
<target xml:lang="az" state="needs-translation">Choose Image from Word</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Choose Word from Image</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Book is Leveled</target>
<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>
<target xml:lang="az" state="needs-translation">Book is not Leveled</target>
<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>
<target xml:lang="az" state="needs-translation">eSpeak failed.</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.ESpeakPreview.Error</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>
<target xml:lang="az" state="needs-translation">Please split or clear the existing recording in this text box before changing modes.</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.RecordingModeSplitOrClearExistingRecordingTextBox</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecording" sil:dynamic="true">
<source xml:lang="en">Import Recording...</source>
<target xml:lang="az" state="needs-translation">Import Recording...</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.ImportRecording</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ImportRecording.ConfirmReplace" sil:dynamic="true">
<source xml:lang="en">Replace with new audio?</source>
<target xml:lang="az" state="needs-translation">Replace with new audio?</target>
<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>
<target xml:lang="az" state="needs-translation">If you import this recording, it will replace all the audio for this text box.</target>
<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>
<target xml:lang="az" state="needs-translation">Insert Segment Marker</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.InsertSegmentMarker</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ApplyTimingsFile" sil:dynamic="true">
<source xml:lang="en">Apply Timings File...</source>
<target xml:lang="az" state="needs-translation">Apply Timings File...</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.ApplyTimingsFile</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.EditTimingsFile" sil:dynamic="true">
<source xml:lang="en">Edit Timings File...</source>
<target xml:lang="az" state="needs-translation">Edit Timings File...</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFile</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>
<target xml:lang="az" state="needs-translation">Use an external tool like Audacity. When you're done, use "Apply Timings File..."</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.EditTimingsFile.Extra</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.AdjustTimings" sil:dynamic="true">
<source xml:lang="en">Adjust Timings...</source>
<target xml:lang="az" state="needs-translation">Adjust Timings...</target>
<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>
<target xml:lang="az" state="needs-translation">Use Aeneas to guess timings</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Aeneas.Extra</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>
<target xml:lang="az" state="needs-translation">Re-run pause-based timing guesses</target>
<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>
<target xml:lang="az" state="needs-translation">This will remove any adjustments you have made.</target>
<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>
<target xml:lang="az" state="needs-translation">Adjust Timings</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.AdjustTimings.Dialog.Title</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>
<target xml:lang="az" state="needs-translation">This is disabled because there is not a whole text box recording</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Bloom will hide these when you publish.</target>
<note>ID: 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>
<target xml:lang="az" state="needs-translation">First, put the cursor in a box which has something to record.</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.NeedCursorInRecordableThingDisabledTip</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>
<target xml:lang="az" state="needs-translation">If you want to change this mode, first use the "Clear" button to remove your recording.</target>
<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>
<target xml:lang="az" state="needs-translation">Record one sentence at a time. You can break up sentences using the `|` character.</target>
<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>
<target xml:lang="az" state="needs-translation">Record the whole text box in one take, or load in a recording.</target>
<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>
<target xml:lang="az" state="needs-translation">Import an mp3 recording of the whole text box.</target>
<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>
<target xml:lang="az" state="needs-translation">This is disabled because this box is not in `Record by Text Box` mode.</target>
<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>
<target xml:lang="az" state="needs-translation">Open the timing file in a text editor. After you save your changes, click the "Apply Timings File" button.</target>
<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>
<target xml:lang="az" state="needs-translation">This is only enabled after doing a "Split" of a recording of the whole text box.</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Control the order in which various boxes on the page are played back.</target>
<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>
<target xml:lang="az" state="needs-translation">Recording Mode</target>
<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>
<target xml:lang="az" state="needs-translation">By Sentence</target>
<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>
<target xml:lang="az" state="needs-translation">By Whole Text Box</target>
<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>
<target xml:lang="az" state="needs-translation">Show playback order buttons</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.ShowPlaybackOrder</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.TalkingBookTool.ShowImageDescriptions" sil:dynamic="true">
<source xml:lang="en">Show image descriptions</source>
<target xml:lang="az" state="needs-translation">Show image descriptions</target>
<note>ID: EditTab.Toolbox.TalkingBookTool.ShowImageDescriptions</note>
</trans-unit>
<!-- Canvas (was Overlay) -->
<trans-unit id="EditTab.Toolbox.CanvasTool.BookGrid" sil:dynamic="true" translate="no">
<source xml:lang="en">A grid of buttons that jump you to books in your app</source>
<target xml:lang="az" state="needs-translation">A grid of buttons that jump you to books in your app</target>
<note>ID: EditTab.Toolbox.CanvasTool.BookGrid</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ClickToSetLinkDest" sil:dynamic="true" translate="no">
<source xml:lang="en">Click to set where the link takes you</source>
<target xml:lang="az" state="needs-translation">Click to set where the link takes you</target>
<note>ID: EditTab.Toolbox.CanvasTool.ClickToSetLinkDest</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.DragInstructions" sil:dynamic="true" translate="no">
<source xml:lang="en">Drag any of these onto a canvas:</source>
<target xml:lang="az" state="needs-translation">Drag any of these onto a canvas:</target>
<note>ID: EditTab.Toolbox.CanvasTool.DragInstructions2</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit" sil:dynamic="true" translate="no">
<source xml:lang="en">Image Fit</source>
<target xml:lang="az" state="needs-translation">Image Fit</target>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.Margin" sil:dynamic="true" translate="no">
<source xml:lang="en">Fit with Margin</source>
<target xml:lang="az" state="needs-translation">Fit with Margin</target>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit.Margin</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.FitToEdge" sil:dynamic="true" translate="no">
<source xml:lang="en">Fit to Edge</source>
<target xml:lang="az" state="needs-translation">Fit to Edge</target>
<note>ID: EditTab.Toolbox.CanvasTool.ImageFit.FitToEdge</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.ImageFit.Fill" sil:dynamic="true" translate="no">
<source xml:lang="en">Fill</source>
<target xml:lang="az" state="needs-translation">Fill</target>
<note>Fill up the button with the image, leaving no margin, cropping if necessary</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.LinkGrid.ChooseBooks" sil:dynamic="true" translate="no">
<source xml:lang="en">Choose books...</source>
<target xml:lang="az" state="needs-translation">Choose books...</target>
<note>ID: EditTab.Toolbox.CanvasTool.LinkGrid.ChooseBooks</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.NavButtons" sil:dynamic="true" translate="no">
<source xml:lang="en">A button that jumps you to a page or book in your app</source>
<target xml:lang="az" state="needs-translation">A button that jumps you to a page or book in your app</target>
<note>ID: EditTab.Toolbox.OverlayTool.NavButtons</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.Navigation" sil:dynamic="true" translate="no">
<source xml:lang="en">Navigation</source>
<target xml:lang="az" state="needs-translation">Navigation</target>
<note>ID: EditTab.Toolbox.CanvasTool.Navigation</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.NavigationButton.DefaultText" sil:dynamic="true" translate="no">
<source xml:lang="en">Go Somewhere</source>
<target xml:lang="az" state="needs-translation">Go Somewhere</target>
<note>ID: EditTab.Toolbox.CanvasTool.NavigationButton.DefaultText</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.CanvasTool.SetDest" sil:dynamic="true" translate="no">
<source xml:lang="en">Set Destination</source>
<target xml:lang="az" state="needs-translation">Set Destination</target>
<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>
<target xml:lang="az" state="needs-translation">drag</target>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Drag</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.OverlayTool.KeyHints.Resize" sil:dynamic="true">
<source xml:lang="en">resize</source>
<target xml:lang="az" state="needs-translation">resize</target>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Resize</note>
</trans-unit>
<trans-unit id="EditTab.Toolbox.OverlayTool.KeyHints.Move" sil:dynamic="true">
<source xml:lang="en">move</source>
<target xml:lang="az" state="needs-translation">move</target>
<note>ID: EditTab.Toolbox.OverlayTool.KeyHints.Move</note>
</trans-unit>
<trans-unit id="ReaderSetup.SentencePunctuation.Header" sil:dynamic="true">
<source xml:lang="en">Special Sentence-Ending Punctuation</source>
<target xml:lang="az" state="translated">Xüsusi Cümlə-sonunda Durğu İşarələri</target>
<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>
<target xml:lang="az" state="needs-translation">Select this if you want readers to be able to choose to read the book in this language.</target>
<note>ID: PublishTab.Language.Enabled</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>
<target xml:lang="az" state="needs-translation">This is disabled because this language is currently shown in the book, so it is required.</target>
<note>ID: PublishTab.Language.Required</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>
<target xml:lang="az" state="needs-translation">Select this if you want to include this audio.</target>
<note>ID: PublishTab.AudioLanguage.Enabled</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any audio in this language.</target>
<note>ID: PublishTab.AudioLanguage.Disabled</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Activities.None">
<source xml:lang="en">This book does not have any interactive activities.</source>
<target xml:lang="az" state="needs-translation">This book does not have any interactive activities.</target>
<note>ID: PublishTab.Feature.Activities.None</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Activities.Present">
<source xml:lang="en">This book has interactive activities.</source>
<target xml:lang="az" state="needs-translation">This book has interactive activities.</target>
<note>ID: PublishTab.Feature.Activities.Present</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>
<target xml:lang="az" state="needs-translation">This is disabled because publishing interactive activities requires a subscription.</target>
<note>ID: PublishTab.Feature.Activities.RequiresSubscription</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Games.None">
<source xml:lang="en">This book does not have any games.</source>
<target xml:lang="az" state="needs-translation">This book does not have any games.</target>
<note>ID: PublishTab.Feature.Games.None</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Games.Present">
<source xml:lang="en">This book has games.</source>
<target xml:lang="az" state="needs-translation">This book has games.</target>
<note>ID: PublishTab.Feature.Games.Present</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any canvas elements that qualify as “comic-like”, such as speech bubbles.</target>
<note>ID: PublishTab.Feature.Comic.None</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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>ID: PublishTab.Feature.Comic.Possible</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any pages with motion enabled.</target>
<note>ID: PublishTab.Feature.Motion.None</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>
<target xml:lang="az" state="needs-translation">Select this if you want to show motion when the book is read in landscape mode.</target>
<note>ID: PublishTab.Feature.Motion.None</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.Music">
<source xml:lang="en">Background Music</source>
<target xml:lang="az" state="needs-translation">Background Music</target>
<note>ID: PublishTab.Feature.Music</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any videos.</target>
<note>ID: PublishTab.Feature.SignLanguage.NoVideos</note>
</trans-unit>
<trans-unit id="PublishTab.Feature.SignLanguage.Present">
<source xml:lang="en">The videos in this book contain {N}</source>
<target xml:lang="az" state="needs-translation">The videos in this book contain {N}</target>
<note>ID: PublishTab.Feature.SignLanguage.Present</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>
<target xml:lang="az" state="needs-translation">This is disabled because this collection has {no sign language selected}.</target>
<note>ID: PublishTab.Feature.SignLanguage.Unknown</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any Talking Book recordings.</target>
<note>ID: PublishTab.Feature.TalkingBook.NoRecordings</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>
<target xml:lang="az" state="needs-translation">This is disabled because no “Talking Book Languages” are selected.</target>
<note>ID: PublishTab.Feature.TalkingBook.NoLanguagesSelected</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>
<target xml:lang="az" state="needs-translation">This is disabled because this book does not have any image descriptions in the primary language.</target>
<note>ID: PublishTab.Feature.Vision.None</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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>ID: PublishTab.Feature.Vision.Possible</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>
<target xml:lang="az" state="needs-translation">Do not show this book to the public yet. I will share its URL with reviewers for feedback.</target>
<note>ID: PublishTab.Upload.Draft</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.Visibility">
<source xml:lang="en">Visibility</source>
<target xml:lang="az" state="needs-translation">Visibility</target>
<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>
<target xml:lang="az" state="needs-translation">Consider whether you can distribute your book using the BloomPUB format instead of, or in addition to, the ePUB format.</target>
<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>
<target xml:lang="az" state="needs-translation">[Some Bloom features] are not supported by most or all ePUB readers.</target>
<note>ID: PublishTab.Epub.FeatureLimitations</note>
</trans-unit>
<trans-unit id="PublishTab.Epub.Notes" sil:dynamic="true">
<source xml:lang="en">Notes:</source>
<target xml:lang="az" state="needs-translation">Notes:</target>
<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>
<target xml:lang="az" state="needs-translation">About ePUB Readers & Bloom</target>
<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>
<target xml:lang="az" state="needs-translation">Most ePUB readers are very low quality ([see our research and recommendations]).</target>
<note>ID: PublishTab.Epub.ReaderRecommendations</note>
</trans-unit>
<trans-unit id="PublishTab.RecordVideo.NotOnLinux" sil:dynamic="true">
<source xml:lang="en">Not available on Linux</source>
<target xml:lang="az" state="needs-translation">Not available on Linux</target>
<note>ID: PublishTab.RecordVideo.NotOnLinux</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>
<target xml:lang="az" state="needs-translation">This feature is available only on the Windows version of Bloom. We apologize for the inconvenience.</target>
<note>ID: PublishTab.RecordVideo.ApologiesForNoLinux</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.WhyShareOnBlorg" sil:dynamic="true">
<source xml:lang="en">Why you should publish on the Web</source>
<target xml:lang="az" state="needs-translation">Why you should publish on the Web</target>
<note>ID: PublishTab.Upload.WhyShareOnBlorg</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.Help" sil:dynamic="true">
<source xml:lang="en">Documentation about this screen</source>
<target xml:lang="az" state="needs-translation">Documentation about this screen</target>
<note>ID: PublishTab.Upload.Help</note>
</trans-unit>
<trans-unit id="PublishTab.Upload.AboutBlorg" sil:dynamic="true">
<source xml:lang="en">About BloomLibrary.org</source>
<target xml:lang="az" state="needs-translation">About BloomLibrary.org</target>
<note>ID: PublishTab.Upload.AboutBlorg</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.ViewOnBlorg" sil:dynamic="true">
<source xml:lang="en">View on BloomLibrary.org</source>
<target xml:lang="az" state="needs-translation">View on BloomLibrary.org</target>
<note>CollectionTab.OnBlorgBadge.ViewOnBlorg</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Published" sil:dynamic="true">
<source xml:lang="en">Published</source>
<target xml:lang="az" state="needs-translation">Published</target>
<note>CollectionTab.OnBlorgBadge.Published</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.MarkedAsDraft" sil:dynamic="true">
<source xml:lang="en">Marked as Draft</source>
<target xml:lang="az" state="needs-translation">Marked as Draft</target>
<note>CollectionTab.OnBlorgBadge.MarkedAsDraft</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Harvesting" sil:dynamic="true">
<source xml:lang="en">In Progress</source>
<target xml:lang="az" state="needs-translation">In Progress</target>
<note>CollectionTab.OnBlorgBadge.Harvesting</note>
</trans-unit>
<trans-unit id="CollectionTab.OnBlorgBadge.Problem" sil:dynamic="true">
<source xml:lang="en">Problem</source>
<target xml:lang="az" state="needs-translation">Problem</target>
<note>CollectionTab.OnBlorgBadge.Problem</note>
</trans-unit>
<trans-unit id="BookSettings.LockedByBranding" sil:dynamic="true">
<source xml:lang="en">Locked by {0} Branding</source>
<target xml:lang="az" state="needs-translation">Locked by {0} Branding</target>
<note>BookSettings.LockedByBranding</note>
</trans-unit>
<trans-unit id="BookSettings.LockedByLegacy" sil:dynamic="true">
<source xml:lang="en">Locked by Legacy-5-6 theme</source>
<target xml:lang="az" state="needs-translation">Locked by Legacy-5-6 theme</target>
<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>
<target xml:lang="az" state="needs-translation">Locked by {0} Front/Back matter</target>
<note>BookSettings.LockedByXMatter</note>
</trans-unit>
<trans-unit id="BookSettings.Title" sil:dynamic="true">
<source xml:lang="en">Book Settings</source>
<target xml:lang="az" state="needs-translation">Book Settings</target>
<note>BookSettings.Title</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution" sil:dynamic="true">
<source xml:lang="en">Max Image Size</source>
<target xml:lang="az" state="needs-translation">Max Image Size</target>
<note>BookSettings.eBook.Image.MaxResolution</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.Small" sil:dynamic="true">
<source xml:lang="en">Small</source>
<target xml:lang="az" state="needs-translation">Small</target>
<note>BookSettings.eBook.Image.MaxResolution.Small</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.HD" sil:dynamic="true">
<source xml:lang="en">HD</source>
<target xml:lang="az" state="needs-translation">HD</target>
<note>BookSettings.eBook.Image.MaxResolution.HD</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.Full HD" sil:dynamic="true">
<source xml:lang="en">Full HD</source>
<target xml:lang="az" state="needs-translation">Full HD</target>
<note>BookSettings.eBook.Image.MaxResolution.Full HD</note>
</trans-unit>
<trans-unit id="BookSettings.eBook.Image.MaxResolution.4K" sil:dynamic="true">
<source xml:lang="en">4K</source>
<target xml:lang="az" state="needs-translation">4K</target>
<note>BookSettings.eBook.Image.MaxResolution.4K</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>
<target xml:lang="az" state="needs-translation">Bloom reduces images to a maximum size to make books easier to view over poor internet connections and take up less space on phones.</target>
<note>BookSettings.eBook.Image.MaxResolution.Directions</note>
</trans-unit>
<trans-unit id="BookSettings.CoverGroupLabel" sil:dynamic="true">
<source xml:lang="en">Cover</source>
<target xml:lang="az" state="needs-translation">Cover</target>
<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>
<target xml:lang="az" state="needs-translation">Fill the front cover with a single image</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>BookSettings.CoverIsImage.Description</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>
<target xml:lang="az" state="needs-translation">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.</target>
<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>
<target xml:lang="az" state="needs-translation">Use full bleed page layout</target>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>BookSettings.FullBleed.Description</note>
</trans-unit>
<trans-unit id="BookSettings.ContentPagesGroupLabel" sil:dynamic="true">
<source xml:lang="en">Content Pages</source>
<target xml:lang="az" state="needs-translation">Content Pages</target>
<note>BookSettings.ContentPagesGroupLabel</note>
</trans-unit>
<trans-unit id="BookSettings.PrintPublishingGroupLabel" sil:dynamic="true">
<source xml:lang="en">Print Publishing</source>
<target xml:lang="az" state="needs-translation">Print Publishing</target>
<note>ID: BookSettings.PrintPublishingGroupLabel</note>
</trans-unit>
<trans-unit id="BookSettings.NormalTextBoxLangsLabel" sil:dynamic="true">
<source xml:lang="en">Languages to show in normal text boxes</source>
<target xml:lang="az" state="needs-translation">Languages to show in normal text boxes</target>
<note>BookSettings.NormalTextBoxLangsLabel</note>
</trans-unit>
<trans-unit id="BookSettings.PageThemeLabel" sil:dynamic="true">
<source xml:lang="en">Page Theme</source>
<target xml:lang="az" state="needs-translation">Page Theme</target>
<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>
<target xml:lang="az" state="needs-translation">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).</target>
<note>BookSettings.Theme.Description</note>
</trans-unit>
<trans-unit id="Common.BackgroundColor" sil:dynamic="true">
<source xml:lang="en">Background Color</source>
<target xml:lang="az" state="needs-translation">Background Color</target>
<note>Common.CoverBackgroundColor</note>
</trans-unit>
<trans-unit id="BookSettings.WhatToShowOnCover" sil:dynamic="true">
<source xml:lang="en">Front Cover</source>
<target xml:lang="az" state="needs-translation">Front Cover</target>
<note>BookSettings.WhatToShowOnCover</note>
</trans-unit>
<trans-unit id="BookSettings.ShowContentLanguage" sil:dynamic="true">
<source xml:lang="en">Show {0}</source>
<target xml:lang="az" state="needs-translation">Show {0}</target>
<note>BookSettings.ShowContentLanguage</note>
</trans-unit>
<trans-unit id="BookSettings.ShowWrittenLanguageTitle" sil:dynamic="true">
<source xml:lang="en">Show Title in {0}</source>
<target xml:lang="az" state="needs-translation">Show Title in {0}</target>
<note>BookSettings.ShowWrittenLanguageTitle</note>
</trans-unit>
<trans-unit id="BookSettings.ShowLanguageName" sil:dynamic="true">
<source xml:lang="en">Show Language Name</source>
<target xml:lang="az" state="needs-translation">Show Language Name</target>
<note>BookSettings.ShowLanguageName</note>
</trans-unit>
<trans-unit id="BookSettings.ShowTopic" sil:dynamic="true">
<source xml:lang="en">Show Topic</source>
<target xml:lang="az" state="needs-translation">Show Topic</target>
<note>BookSettings.ShowTopic</note>
</trans-unit>
<trans-unit id="BookSettings.ShowCredits" sil:dynamic="true">
<source xml:lang="en">Show Credits</source>
<target xml:lang="az" state="needs-translation">Show Credits</target>
<note>BookSettings.ShowCredits</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers" sil:dynamic="true">
<source xml:lang="en">Page Numbers</source>
<target xml:lang="az" state="needs-translation">Page Numbers</target>
<note>BookSettings.PageNumbers</note>
</trans-unit>
<trans-unit id="BookSettings.ShowPageNumbers" sil:dynamic="true">
<source xml:lang="en">Show Page Numbers</source>
<target xml:lang="az" state="needs-translation">Show Page Numbers</target>
<note>BookSettings.ShowPageNumbers</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Automatic" sil:dynamic="true">
<source xml:lang="en">(Automatic)</source>
<target xml:lang="az" state="needs-translation">(Automatic)</target>
<note>BookSettings.PageNumbers.Automatic</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Left" sil:dynamic="true">
<source xml:lang="en">Left</source>
<target xml:lang="az" state="needs-translation">Left</target>
<note>BookSettings.PageNumbers.TopLeft</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Center" sil:dynamic="true">
<source xml:lang="en">Center</source>
<target xml:lang="az" state="needs-translation">Center</target>
<note>BookSettings.PageNumbers.Center</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Right" sil:dynamic="true">
<source xml:lang="en">Right</source>
<target xml:lang="az" state="needs-translation">Right</target>
<note>BookSettings.PageNumbers.Right</note>
</trans-unit>
<trans-unit id="BookSettings.PageNumbers.Hidden" sil:dynamic="true">
<source xml:lang="en">Hidden</source>
<target xml:lang="az" state="needs-translation">Hidden</target>
<note>BookSettings.PageNumbers.Hidden</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>
<target xml:lang="az" state="needs-translation">Note: some Page Themes may not know how to change the location of the Page Number.</target>
<note>BookSettings.PageNumberLocationNote</note>
</trans-unit>
<trans-unit id="BookSettings.FrontAndBackMatter" sil:dynamic="true">
<source xml:lang="en">Front & Back Matter</source>
<target xml:lang="az" state="needs-translation">Front & Back Matter</target>
<note>BookSettings.FrontAndBackMatter</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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>BookSettings.FrontAndBackMatter.Description</note>
</trans-unit>
<trans-unit id="BookSettings.Resolution" sil:dynamic="true">
<source xml:lang="en">Resolution</source>
<target xml:lang="az" state="needs-translation">Resolution</target>
<note>BookSettings.Resolution</note>
</trans-unit>
<trans-unit id="BookSettings.DeleteCustomBookStyles" sil:dynamic="true">
<source xml:lang="en">Delete {0}</source>
<target xml:lang="az" state="needs-translation">Delete {0}</target>
<note>BookSettings.DeleteCustomBookStyles</note>
</trans-unit>
<trans-unit id="BookSettings.CustomMigrateCanDelete" sil:dynamic="true">
<source xml:lang="en"/>
<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>
<target xml:lang="az" state="needs-translation">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.</target>
<note>BookSettings.UsingLegacyThemeWithIncompatibleCss</note>
</trans-unit>