-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.rpy
1208 lines (905 loc) · 30.5 KB
/
common.rpy
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
# TODO: Translation updated at 2025-01-26 12:26
translate italian strings:
# renpy/common/00accessibility.rpy:28
old "Self-voicing disabled."
new "Auto-vocalizzazione disabilitata."
# renpy/common/00accessibility.rpy:29
old "Clipboard voicing enabled. "
new "Voce della clipboard abilitata."
# renpy/common/00accessibility.rpy:30
old "Self-voicing enabled. "
new "Auto-vocalizzazione abilitata."
# renpy/common/00accessibility.rpy:32
old "bar"
new "bar"
# renpy/common/00accessibility.rpy:33
old "selected"
new "selezionato"
# renpy/common/00accessibility.rpy:34
old "viewport"
new "viewport"
# renpy/common/00accessibility.rpy:35
old "horizontal scroll"
new ""
# renpy/common/00accessibility.rpy:36
old "vertical scroll"
new "scroll orizzontale"
# renpy/common/00accessibility.rpy:37
old "activate"
new "attiva"
# renpy/common/00accessibility.rpy:38
old "deactivate"
new "disattiva"
# renpy/common/00accessibility.rpy:39
old "increase"
new "aumenta"
# renpy/common/00accessibility.rpy:40
old "decrease"
new "diminuisci"
# renpy/common/00accessibility.rpy:121
old "Accessibility Menu. Use up and down arrows to navigate, and enter to activate buttons and bars."
new "Menu Accessibilità. Usa le frecce in alto e in basso per navigare, ENTER per attivare bottoni e barre."
# renpy/common/00accessibility.rpy:140
old "Font Override"
new "Font Override"
# renpy/common/00accessibility.rpy:144
old "Default"
new "Default"
# renpy/common/00accessibility.rpy:148
old "DejaVu Sans"
new "DejaVu Sans"
# renpy/common/00accessibility.rpy:152
old "Opendyslexic"
new "Opendyslexic"
# renpy/common/00accessibility.rpy:158
old "Text Size Scaling"
new "Modificare Dimensione del Testo"
# renpy/common/00accessibility.rpy:164
old "Reset"
new "Reset"
# renpy/common/00accessibility.rpy:170
old "Line Spacing Scaling"
new "Modificare La Spaziatura"
# renpy/common/00accessibility.rpy:182
old "High Contrast Text"
new "Testo Ad Alto Contrasto"
# renpy/common/00accessibility.rpy:184
old "Enable"
new "Abilita"
# renpy/common/00accessibility.rpy:188
old "Disable"
new "Disabilita"
# renpy/common/00accessibility.rpy:195
old "Self-Voicing"
new "Auto-Vocalizzazione"
# renpy/common/00accessibility.rpy:198
old "Self-voicing support is limited when using a touch screen."
new "Il supporto all'autovocalizzazione è limitato quando usi il touch screen."
# renpy/common/00accessibility.rpy:202
old "Off"
new "Off"
# renpy/common/00accessibility.rpy:206
old "Text-to-speech"
new "DaTestoAVoce"
# renpy/common/00accessibility.rpy:210
old "Clipboard"
new "Appunti"
# renpy/common/00accessibility.rpy:214
old "Debug"
new "Debug"
# renpy/common/00accessibility.rpy:228
old "Self-Voicing Volume Drop"
new "Self-Voicing Volume Drop"
# renpy/common/00accessibility.rpy:237
old "The options on this menu are intended to improve accessibility. They may not work with all games, and some combinations of options may render the game unplayable. This is not an issue with the game or engine. For the best results when changing fonts, try to keep the text size the same as it originally was."
new "Le opzioni di questo menu hanno lo scopo di migliorare l'accessibilità. Possono non funzionare con tutti i giochi e alcune combinazioni di opzioni possono rendere il gioco ingiocabile. Non è un bug del gioco o dell'engine. Per i risultati migliore quando cambi il font, prova a tenere la stessa dimensione che aveva in origine."
# renpy/common/00action_file.rpy:26
old "{#weekday}Monday"
new "{#weekday}Lunedì"
# renpy/common/00action_file.rpy:26
old "{#weekday}Tuesday"
new "{#weekday}Martedì"
# renpy/common/00action_file.rpy:26
old "{#weekday}Wednesday"
new "{#weekday}Mercoledì"
# renpy/common/00action_file.rpy:26
old "{#weekday}Thursday"
new "{#weekday}Giovedì"
# renpy/common/00action_file.rpy:26
old "{#weekday}Friday"
new "{#weekday}Venerdì"
# renpy/common/00action_file.rpy:26
old "{#weekday}Saturday"
new "{#weekday}Sabato"
# renpy/common/00action_file.rpy:26
old "{#weekday}Sunday"
new "{#weekday}Domenica"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Mon"
new "{#weekday_short}Lun"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Tue"
new "{#weekday_short}Mar"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Wed"
new "{#weekday_short}Mer"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Thu"
new "{#weekday_short}Gio"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Fri"
new "{#weekday_short}Ven"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Sat"
new "{#weekday_short}Sab"
# renpy/common/00action_file.rpy:37
old "{#weekday_short}Sun"
new "{#weekday_short}Dom"
# renpy/common/00action_file.rpy:47
old "{#month}January"
new "{#month}Gennaio"
# renpy/common/00action_file.rpy:47
old "{#month}February"
new "{#month}Febbraio"
# renpy/common/00action_file.rpy:47
old "{#month}March"
new "{#month}Marzo"
# renpy/common/00action_file.rpy:47
old "{#month}April"
new "{#month}Aprile"
# renpy/common/00action_file.rpy:47
old "{#month}May"
new "{#month}Maggio"
# renpy/common/00action_file.rpy:47
old "{#month}June"
new "{#month}Giugno"
# renpy/common/00action_file.rpy:47
old "{#month}July"
new "{#month}Luglio"
# renpy/common/00action_file.rpy:47
old "{#month}August"
new "{#month}Agosto"
# renpy/common/00action_file.rpy:47
old "{#month}September"
new "{#month}Settembre"
# renpy/common/00action_file.rpy:47
old "{#month}October"
new "{#month}Ottobre"
# renpy/common/00action_file.rpy:47
old "{#month}November"
new "{#month}Novembre"
# renpy/common/00action_file.rpy:47
old "{#month}December"
new "{#month}Dicembre"
# renpy/common/00action_file.rpy:63
old "{#month_short}Jan"
new "{#month_short}Gen"
# renpy/common/00action_file.rpy:63
old "{#month_short}Feb"
new "{#month_short}Feb"
# renpy/common/00action_file.rpy:63
old "{#month_short}Mar"
new "{#month_short}Mar"
# renpy/common/00action_file.rpy:63
old "{#month_short}Apr"
new "{#month_short}Apr"
# renpy/common/00action_file.rpy:63
old "{#month_short}May"
new "{#month_short}Mag"
# renpy/common/00action_file.rpy:63
old "{#month_short}Jun"
new "{#month_short}Giu"
# renpy/common/00action_file.rpy:63
old "{#month_short}Jul"
new "{#month_short}Lug"
# renpy/common/00action_file.rpy:63
old "{#month_short}Aug"
new "{#month_short}Ago"
# renpy/common/00action_file.rpy:63
old "{#month_short}Sep"
new "{#month_short}Set"
# renpy/common/00action_file.rpy:63
old "{#month_short}Oct"
new "{#month_short}ott"
# renpy/common/00action_file.rpy:63
old "{#month_short}Nov"
new "{#month_short}Nov"
# renpy/common/00action_file.rpy:63
old "{#month_short}Dec"
new "{#month_short}Dic"
# renpy/common/00action_file.rpy:258
old "%b %d, %H:%M"
new "%b %d, %H:%M"
# renpy/common/00action_file.rpy:395
old "Save slot %s: [text]"
new "Salva slot %s: [text]"
# renpy/common/00action_file.rpy:481
old "Load slot %s: [text]"
new "Carica slot %s: [text]"
# renpy/common/00action_file.rpy:534
old "Delete slot [text]"
new "Cancella slot [text]"
# renpy/common/00action_file.rpy:613
old "File page auto"
new "File page auto"
# renpy/common/00action_file.rpy:615
old "File page quick"
new "File page quick"
# renpy/common/00action_file.rpy:617
old "File page [text]"
new "File page [text]"
# renpy/common/00action_file.rpy:816
old "Next file page."
new "Prossimo file pagina"
# renpy/common/00action_file.rpy:888
old "Previous file page."
new "File pagina precedente."
# renpy/common/00action_file.rpy:949
old "Quick save complete."
new "Quick save completo."
# renpy/common/00action_file.rpy:964
old "Quick save."
new "Quick save."
# renpy/common/00action_file.rpy:983
old "Quick load."
new "Quick load."
# renpy/common/00action_other.rpy:379
old "Language [text]"
new "Linguaggio [text]"
# renpy/common/00action_other.rpy:744
old "Open [text] directory."
new "Apri la cartella [text]."
# renpy/common/00director.rpy:712
old "The interactive director is not enabled here."
new "L'interactive director non è abilitato."
# renpy/common/00director.rpy:1512
old "⬆"
new "⬆"
# renpy/common/00director.rpy:1518
old "⬇"
new "⬇"
# renpy/common/00director.rpy:1582
old "Done"
new "Fatto"
# renpy/common/00director.rpy:1592
old "(statement)"
new "(statement)"
# renpy/common/00director.rpy:1593
old "(tag)"
new "(tag)"
# renpy/common/00director.rpy:1594
old "(attributes)"
new "(attributi)"
# renpy/common/00director.rpy:1595
old "(transform)"
new "(transform)"
# renpy/common/00director.rpy:1620
old "(transition)"
new "(transition)"
# renpy/common/00director.rpy:1632
old "(channel)"
new "(canale)"
# renpy/common/00director.rpy:1633
old "(filename)"
new "(filename)"
# renpy/common/00director.rpy:1662
old "Change"
new "Cambia"
# renpy/common/00director.rpy:1664
old "Add"
new "Aggiungi"
# renpy/common/00director.rpy:1667
old "Cancel"
new "Cancella"
# renpy/common/00director.rpy:1670
old "Remove"
new "Remove"
# renpy/common/00director.rpy:1705
old "Statement:"
new "Statement:"
# renpy/common/00director.rpy:1726
old "Tag:"
new "Tag:"
# renpy/common/00director.rpy:1742
old "Attributes:"
new "Attributi:"
# renpy/common/00director.rpy:1753
old "Click to toggle attribute, right click to toggle negative attribute."
new "Clicca per cambiare l'attrivuto, tasto destro per alternare l'attributo negativo."
# renpy/common/00director.rpy:1765
old "Transforms:"
new "Trasformazioni:"
# renpy/common/00director.rpy:1776
old "Click to set transform, right click to add to transform list."
new "Fare clic per impostare la trasformazione, fare clic con il pulsante destro del mouse per aggiungere all'elenco delle trasformazioni."
# renpy/common/00director.rpy:1777
old "Customize director.transforms to add more transforms."
new "Personalizza director.transforms per aggiungere altre transforms."
# renpy/common/00director.rpy:1789
old "Behind:"
new "Dietro:"
# renpy/common/00director.rpy:1800
old "Click to set, right click to add to behind list."
new "Fare clic per impostare la trasformazione, fare clic con il pulsante destro del mouse per aggiungere all'elenco delle trasformazioni."
# renpy/common/00director.rpy:1812
old "Transition:"
new "Transizione"
# renpy/common/00director.rpy:1822
old "Click to set."
new "Click per impostare."
# renpy/common/00director.rpy:1823
old "Customize director.transitions to add more transitions."
new "Personalizza director.transition per aggiungere altre transizioni."
# renpy/common/00director.rpy:1835
old "Channel:"
new "Canale:"
# renpy/common/00director.rpy:1846
old "Customize director.audio_channels to add more channels."
new "Personalizza director.audio_channels per aggiungere altri canali."
# renpy/common/00director.rpy:1858
old "Audio Filename:"
new "Nome file audio:"
# renpy/common/00gui.rpy:448
old "Are you sure?"
new "Sei sicuro?"
# renpy/common/00gui.rpy:449
old "Are you sure you want to delete this save?"
new "Sei sicuro di volere cancellare il salvataggio?"
# renpy/common/00gui.rpy:450
old "Are you sure you want to overwrite your save?"
new "Sei sicuro di volere sovrascrivere il salvataggio?"
# renpy/common/00gui.rpy:451
old "Loading will lose unsaved progress.\nAre you sure you want to do this?"
new "Il caricamento farà perdere i progressi non salvati.\nSei sicuro di volere questo?"
# renpy/common/00gui.rpy:452
old "Are you sure you want to quit?"
new "Sei sicuro di voler uscire?"
# renpy/common/00gui.rpy:453
old "Are you sure you want to return to the main menu?\nThis will lose unsaved progress."
new "Sei sicuro di voler tornare al menu principale?\nQuesto farà perdere i progressi non salvati."
# renpy/common/00gui.rpy:454
old "Are you sure you want to continue where you left off?"
new "Sei sicuro di voler continuare da dove vi siete fermati?"
# renpy/common/00gui.rpy:455
old "Are you sure you want to end the replay?"
new "Sei sicuro di voler terminare il replay?"
# renpy/common/00gui.rpy:456
old "Are you sure you want to begin skipping?"
new "Sei sicuro di voler cominciare a saltare i passaggi?"
# renpy/common/00gui.rpy:457
old "Are you sure you want to skip to the next choice?"
new "Sei sicuro di voler saltare alla prossima scelta?"
# renpy/common/00gui.rpy:458
old "Are you sure you want to skip unseen dialogue to the next choice?"
new "Sei sicuro di voler saltare il dialogo non letto alla prossima scelta?"
# renpy/common/00gui.rpy:459
old "This save was created on a different device. Maliciously constructed save files can harm your computer. Do you trust this save's creator and everyone who could have changed the file?"
new "Questo salvataggio è stato creato su un dispositivo differente. I file di salvataggio creati male possono danneggiare il computer. Ti fidi del creatore di questo salvataggio e di tutti coloro che potrebbero aver modificato il file?"
# renpy/common/00gui.rpy:460
old "Do you trust the device the save was created on? You should only choose yes if you are the device's sole user."
new "Vi fidate del dispositivo su cui è stato creato il salvataggio? Scegliere sì solo se si è l'unico utente del dispositivo."
# renpy/common/00keymap.rpy:325
old "Failed to save screenshot as %s."
new "Fallito il salvataggio della schermata come %s."
# renpy/common/00keymap.rpy:346
old "Saved screenshot as %s."
new "Salvata la schermata come %s"
# renpy/common/00library.rpy:251
old "Skip Mode"
new "Salta"
# renpy/common/00library.rpy:338
old "This program contains free software under a number of licenses, including the MIT License and GNU Lesser General Public License. A complete list of software, including links to full source code, can be found {a=https://www.renpy.org/l/license}here{/a}."
new "Questo programma contiene software libero sotto diverse licenze, tra cui la MIT License e la GNU Lesser General Public License. Un elenco completo del software, con i collegamenti al codice sorgente completo, si trova {a=https://www.renpy.org/l/license}qui{/a}."
# renpy/common/00preferences.rpy:290
old "display"
new "schermo"
# renpy/common/00preferences.rpy:310
old "transitions"
new "transizioni"
# renpy/common/00preferences.rpy:319
old "skip transitions"
new "salta transizioni"
# renpy/common/00preferences.rpy:321
old "video sprites"
new "video sprite"
# renpy/common/00preferences.rpy:330
old "show empty window"
new "mostra la schermata vuota"
# renpy/common/00preferences.rpy:339
old "text speed"
new "velocità del testo"
# renpy/common/00preferences.rpy:347
old "joystick"
new "joystick"
# renpy/common/00preferences.rpy:347
old "joystick..."
new "joystick..."
# renpy/common/00preferences.rpy:354
old "skip"
new "salta"
# renpy/common/00preferences.rpy:357
old "skip unseen [text]"
new "salta il non-visto [text]"
# renpy/common/00preferences.rpy:362
old "skip unseen text"
new "salta allo schermo non visto"
# renpy/common/00preferences.rpy:364
old "begin skipping"
new "comincia a saltare"
# renpy/common/00preferences.rpy:368
old "after choices"
new "dopo le scelte"
# renpy/common/00preferences.rpy:375
old "skip after choices"
new "salta dopo le scelte"
# renpy/common/00preferences.rpy:377
old "auto-forward time"
new "tempo di avanzamento-automatico"
# renpy/common/00preferences.rpy:391
old "auto-forward"
new "avanzamento-automatico"
# renpy/common/00preferences.rpy:398
old "Auto forward"
new "Auto avanzamento"
# renpy/common/00preferences.rpy:401
old "auto-forward after click"
new ""
# renpy/common/00preferences.rpy:410
old "automatic move"
new ""
# renpy/common/00preferences.rpy:419
old "wait for voice"
new ""
# renpy/common/00preferences.rpy:428
old "voice sustain"
new ""
# renpy/common/00preferences.rpy:437
old "self voicing"
new ""
# renpy/common/00preferences.rpy:440
old "self voicing enable"
new ""
# renpy/common/00preferences.rpy:442
old "self voicing disable"
new ""
# renpy/common/00preferences.rpy:446
old "self voicing volume drop"
new ""
# renpy/common/00preferences.rpy:454
old "clipboard voicing"
new ""
# renpy/common/00preferences.rpy:457
old "clipboard voicing enable"
new ""
# renpy/common/00preferences.rpy:459
old "clipboard voicing disable"
new ""
# renpy/common/00preferences.rpy:463
old "debug voicing"
new ""
# renpy/common/00preferences.rpy:466
old "debug voicing enable"
new ""
# renpy/common/00preferences.rpy:468
old "debug voicing disable"
new ""
# renpy/common/00preferences.rpy:472
old "emphasize audio"
new ""
# renpy/common/00preferences.rpy:481
old "rollback side"
new ""
# renpy/common/00preferences.rpy:491
old "gl powersave"
new ""
# renpy/common/00preferences.rpy:497
old "gl framerate"
new ""
# renpy/common/00preferences.rpy:500
old "gl tearing"
new ""
# renpy/common/00preferences.rpy:503
old "font transform"
new ""
# renpy/common/00preferences.rpy:506
old "font size"
new ""
# renpy/common/00preferences.rpy:514
old "font line spacing"
new ""
# renpy/common/00preferences.rpy:522
old "system cursor"
new ""
# renpy/common/00preferences.rpy:531
old "renderer menu"
new ""
# renpy/common/00preferences.rpy:534
old "accessibility menu"
new ""
# renpy/common/00preferences.rpy:537
old "high contrast text"
new ""
# renpy/common/00preferences.rpy:546
old "audio when minimized"
new ""
# renpy/common/00preferences.rpy:555
old "audio when unfocused"
new ""
# renpy/common/00preferences.rpy:564
old "web cache preload"
new ""
# renpy/common/00preferences.rpy:579
old "voice after game menu"
new ""
# renpy/common/00preferences.rpy:588
old "restore window position"
new ""
# renpy/common/00preferences.rpy:597
old "reset"
new ""
# renpy/common/00preferences.rpy:610
old "main volume"
new ""
# renpy/common/00preferences.rpy:611
old "music volume"
new ""
# renpy/common/00preferences.rpy:612
old "sound volume"
new ""
# renpy/common/00preferences.rpy:613
old "voice volume"
new ""
# renpy/common/00preferences.rpy:614
old "mute main"
new ""
# renpy/common/00preferences.rpy:615
old "mute music"
new ""
# renpy/common/00preferences.rpy:616
old "mute sound"
new ""
# renpy/common/00preferences.rpy:617
old "mute voice"
new ""
# renpy/common/00preferences.rpy:618
old "mute all"
new ""
# renpy/common/00preferences.rpy:701
old "Clipboard voicing enabled. Press 'shift+C' to disable."
new ""
# renpy/common/00preferences.rpy:703
old "Self-voicing would say \"[renpy.display.tts.last]\". Press 'alt+shift+V' to disable."
new ""
# renpy/common/00preferences.rpy:705
old "Self-voicing enabled. Press 'v' to disable."
new ""
# renpy/common/00speechbubble.rpy:416
old "Speech Bubble Editor"
new ""
# renpy/common/00speechbubble.rpy:421
old "(hide)"
new ""
# renpy/common/00speechbubble.rpy:432
old "(clear retained bubbles)"
new ""
# renpy/common/00sync.rpy:70
old "Sync downloaded."
new ""
# renpy/common/00sync.rpy:193
old "Could not connect to the Ren'Py Sync server."
new ""
# renpy/common/00sync.rpy:195
old "The Ren'Py Sync server timed out."
new ""
# renpy/common/00sync.rpy:197
old "An unknown error occurred while connecting to the Ren'Py Sync server."
new ""
# renpy/common/00sync.rpy:213
old "The Ren'Py Sync server does not have a copy of this sync. The sync ID may be invalid, or it may have timed out."
new ""
# renpy/common/00sync.rpy:316
old "Please enter the sync ID you generated.\nNever enter a sync ID you didn't create yourself."
new ""
# renpy/common/00sync.rpy:335
old "The sync ID is not in the correct format."
new ""
# renpy/common/00sync.rpy:355
old "The sync could not be decrypted."
new ""
# renpy/common/00sync.rpy:378
old "The sync belongs to a different game."
new ""
# renpy/common/00sync.rpy:383
old "The sync contains a file with an invalid name."
new ""
# renpy/common/00sync.rpy:440
old "This will upload your saves to the {a=https://sync.renpy.org}Ren'Py Sync Server{/a}.\nDo you want to continue?"
new ""
# renpy/common/00sync.rpy:472
old "Enter Sync ID"
new ""
# renpy/common/00sync.rpy:483
old "This will contact the {a=https://sync.renpy.org}Ren'Py Sync Server{/a}."
new ""
# renpy/common/00sync.rpy:513
old "Sync Success"
new ""
# renpy/common/00sync.rpy:516
old "The Sync ID is:"
new ""
# renpy/common/00sync.rpy:522
old "You can use this ID to download your save on another device.\nThis sync will expire in an hour.\nRen'Py Sync is supported by {a=https://www.renpy.org/sponsors.html}Ren'Py's Sponsors{/a}."
new ""
# renpy/common/00sync.rpy:526
old "Continue"
new ""
# renpy/common/00sync.rpy:551
old "Sync Error"
new ""
# renpy/common/00translation.rpy:63
old "Translation identifier: [identifier]"
new ""
# renpy/common/00translation.rpy:84
old " translates [tl.filename]:[tl.linenumber]"
new ""
# renpy/common/00translation.rpy:101
old "\n{color=#fff}Copied to clipboard.{/color}"
new ""
# renpy/common/00iap.rpy:231
old "Contacting App Store\nPlease Wait..."
new ""
# renpy/common/00updater.rpy:505
old "No update methods found."
new ""
# renpy/common/00updater.rpy:552
old "Could not download file list: "
new ""
# renpy/common/00updater.rpy:555
old "File list digest does not match."
new ""
# renpy/common/00updater.rpy:765
old "An error is being simulated."
new ""
# renpy/common/00updater.rpy:953
old "Either this project does not support updating, or the update status file was deleted."
new ""
# renpy/common/00updater.rpy:967
old "This account does not have permission to perform an update."
new ""
# renpy/common/00updater.rpy:970
old "This account does not have permission to write the update log."
new ""
# renpy/common/00updater.rpy:1050
old "Could not verify update signature."
new ""
# renpy/common/00updater.rpy:1373
old "The update file was not downloaded."
new ""
# renpy/common/00updater.rpy:1391
old "The update file does not have the correct digest - it may have been corrupted."
new ""
# renpy/common/00updater.rpy:1541
old "While unpacking {}, unknown type {}."
new ""
# renpy/common/00updater.rpy:2022
old "Updater"
new ""
# renpy/common/00updater.rpy:2029
old "An error has occured:"
new ""
# renpy/common/00updater.rpy:2031
old "Checking for updates."
new ""
# renpy/common/00updater.rpy:2033
old "This program is up to date."
new ""
# renpy/common/00updater.rpy:2035
old "[u.version] is available. Do you want to install it?"
new ""
# renpy/common/00updater.rpy:2037
old "Preparing to download the updates."
new ""
# renpy/common/00updater.rpy:2039
old "Downloading the updates."
new ""
# renpy/common/00updater.rpy:2041
old "Unpacking the updates."
new ""
# renpy/common/00updater.rpy:2043
old "Finishing up."
new ""
# renpy/common/00updater.rpy:2045
old "The updates have been installed. The program will restart."
new ""
# renpy/common/00updater.rpy:2047
old "The updates have been installed."
new ""
# renpy/common/00updater.rpy:2049
old "The updates were cancelled."
new ""
# renpy/common/00updater.rpy:2064
old "Proceed"
new ""
# renpy/common/00updater.rpy:2080
old "Preparing to download the game data."
new ""
# renpy/common/00updater.rpy:2082
old "Downloading the game data."
new ""
# renpy/common/00updater.rpy:2084
old "The game data has been downloaded."
new ""
# renpy/common/00updater.rpy:2086
old "An error occured when trying to download game data:"
new ""
# renpy/common/00updater.rpy:2091
old "This game cannot be run until the game data has been downloaded."
new ""
# renpy/common/00updater.rpy:2098
old "Retry"
new ""
# renpy/common/00gallery.rpy:643
old "Image [index] of [count] locked."
new ""
# renpy/common/00gallery.rpy:663
old "prev"
new ""
# renpy/common/00gallery.rpy:664
old "next"
new ""