-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathen_US.vs.en_GB.diff
4009 lines (3943 loc) · 136 KB
/
en_US.vs.en_GB.diff
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
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/anim/esrborn_default.brlan" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/anim/esrborn_default.brlan"
deleted file mode 100644
index 980a8f5..0000000
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/anim/esrborn_default.brlan" and /dev/null differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/blyt/esrborn.brlyt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/blyt/esrborn.brlyt"
deleted file mode 100644
index 5aea972..0000000
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/blyt/esrborn.brlyt" and /dev/null differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl"
deleted file mode 100644
index d3392e9..0000000
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl" and /dev/null differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl.png"
deleted file mode 100644
index 75849c2..0000000
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/arc/timg/esrborn.tpl.png" and /dev/null differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/wszst-setup.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/wszst-setup.txt"
deleted file mode 100644
index 0cdbfd5..0000000
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/esrborn/wszst-setup.txt"
+++ /dev/null
@@ -1,183 +0,0 @@
-
-###############################################################################
-#
-# wszst settings:
-# ---------------
-#
-# This is the settings file for wszst (tool of "Wiimms SZS Tools"). It
-# was created by the EXTRACT command and is needed by the CREATE command
-# to rebuild the original source archive with or without modifications.
-# You can edit it, if you know what you do.
-#
-###############################################################################
-
-# The first part contains some general settings:
-
-# The internal archive format (U8, WU8, BRRES, BREFF or BREFT):
-archive-format = U8
-
-# The file format (YAZ0, YAZ1 or BZ for a compressed archive, other ignored):
-file-format = U8
-
-# An archive format related version number (-1: unknown or not relevant)
-version = -1
-
-# For U8+WU8 archives: Is there a special '.' base directory:
-have-pt-dir = 0
-
-# The minimum and maximum file data positions:
-min-data-offset = 0x0
-max-data-offset = 0xbc60
-
-# The calculated alignment of all files:
-data-align = 0x20
-
-###############################################################################
-#
-# Some general rules for the next sections:
-# All paths are relative to the current base directory (directory that
-# contains the file wszst-setup.txt). Prefix at least paths that starts
-# not with a letter, digit, point, star or underscore with "./".
-#
-#------------------------------------------------------------------------------
-
-[include-pattern]
-
-# All files and directories start with a . are hidden (unix like) and excluded
-# automatically. But filenames in one of the include sections are included
-# independent of this point. Also the include sections takes precedence over
-# the exclude sections.
-
-# This section expects file patterns with wildcards.
-
-#------------------------------------------------------------------------------
-
-[include]
-
-# This second include section accpepts only complete file names and none of
-# characters have any special meaning.
-
-
-#------------------------------------------------------------------------------
-
-[exclude-pattern]
-
-# Files and directories in this section are ignored by the CREATE command.
-# The include sections takes precedence over the exclude sections.
-
-# This section expects file patterns with wildcards.
-# Here we exclude all original, backup and temp files:
-
-*.orig
-*.bak
-*.tmp
-*.temp
-
-# Exclude all *.d directories. To enable it, remove "# " at the beginning.
-# *.d
-
-# Exclude all PNG files. The intention is to allow the creation of new PNG
-# images and mipmap files without any need to edit this setup file. All
-# extracted PNG files are automatically listed in the [exclude] section.
-# So the exclusion of all PNG is not really needed, but may help. The second
-# (disabled) line is an alternative to exclude all mipmap PNG files.
-
-*.png
-# *.mm#.png
-
-#------------------------------------------------------------------------------
-
-[exclude]
-
-# Files and directories in this section are ignored by the CREATE command.
-# This second exclude section accepts only complete file names and none of
-# characters have any special meaning.
-
-./arc/timg/esrborn.tpl.d
-./arc/timg/esrborn.tpl.png
-./course.kcl.d
-./course.kcl.flag
-./course.kcl.mtl
-./course.kcl.obj
-./course.kmp.d
-./course.kmp.txt
-./course.lex.txt
-./wszst-setup.txt
-
-#------------------------------------------------------------------------------
-
-[encode]
-
-# Encode (and overwrite without notice) the listed files before adding them
-# to the new archive. The source is searched under the same filename with the
-# correct source extension added or, if this failed, a replaced extension.
-# Example: For "message.bmg" search files "message.bmg.txt" or "message.txt"
-# The source file itself is set on the exclude list and will not stored into
-# the new archive.
-#
-# The syntax of this file section is a little bit different as the other file
-# sections. Each line begins with a comma separated list of keywords followed
-# by an equal sign.
-# Syntax: COMMA_SEPARATED_FORMAT_LIST = relative_filename
-# Example: BREFT,IA8,3 = ./files/rk_steam
-# The first keyword is the file format. The following keywords describe sub
-# formats. An additonal integer is a file type specific information:
-# -> For image files it is the number of images (main image + mipmaps).
-# A value of 0 means: Use the tools default (see option --n-mipmaps).
-#
-# A file is only encoded if the destination does not exist or if the source
-# is younger than the destination. Encoding can be controlled by options
-# --no-encode, --encode-img and --encode-all (short: --noenc --eimg --eall).
-
-TPL,I4,1 = ./arc/timg/esrborn.tpl
-KCL = ./course.kcl
-KMP = ./course.kmp
-LEX = ./course.lex
-
-#------------------------------------------------------------------------------
-
-[create]
-
-# Create (and overwrite without notice) the listed files before adding them to
-# the new archive. The source directory is searched under the same filename
-# with an appended ".d" or, if this fails, with an extension replaced by ".d".
-# If a source directory does not exist, the job is ignored silently.
-# Example: For "my.brres" search directories "my.brres.d" or "my.d"
-# The source directory itself is set on the exclude list and will not stored
-# into the new archive. Creating can be controlled by the options:
-# --no-recurse : Do not create archives recursively.
-# --no-encode : Do not encode files before creating an archive.
-# --encode-img : Encode all image files (TEX,TPL,BREFT/sub), overrides --no-encode.
-# --encode-all : Encode all files and ignore timestamps.
-# --pt-dir : Set `point directory' mode.
-# --u8 : Create an U8 archive.
-# --brres : Create an BRRES archive.
-# --breff : Create an BREFF archive.
-# --breft : Create an BREFT archive.
-# --no-compress : Create an uncompressed file (U8 instead of SZS).
-# ...
-
-
-#------------------------------------------------------------------------------
-
-[order]
-
-# This list contains all extracted files in the order of the original archive.
-# If creating archives (but not U8) this list will be used to sort the found
-# files. For archives with directory support (all but not PACK) it is very
-# important, that the directories are listed before the files that resides in
-# the directories.
-#
-# The value before the equal sign is the file offset in the original archive
-# and is ignored for sorting.
-
- = ./arc/
- = ./arc/anim/
- 0xe0 = ./arc/anim/esrborn_default.brlan
- = ./arc/blyt/
- 0x2a0 = ./arc/blyt/esrborn.brlyt
- = ./arc/timg/
- 0x460 = ./arc/timg/esrborn.tpl
-
-#------------------------------------------------------------------------------
-
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_basis_02_00.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_basis_02_00.tpl"
index 98e947d..e0f2225 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_basis_02_00.tpl" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_basis_02_00.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_basis_02_00.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_basis_02_00.tpl.png"
index 38c0003..1f4b259 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_basis_02_00.tpl.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_basis_02_00.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_00_00.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_00_00.tpl"
index c827da8..4dc20c7 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_00_00.tpl" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_00_00.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_00_00.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_00_00.tpl.png"
index 2749e02..88b4390 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_00_00.tpl.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_00_00.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_02_00.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_02_00.tpl"
index 0c26e23..db0b445 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_02_00.tpl" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_02_00.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_02_00.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_02_00.tpl.png"
index d177f90..fa063dd 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_board_02_00.tpl.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_board_02_00.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_option_00_00.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_option_00_00.tpl"
index f5788c6..0d83f78 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_option_00_00.tpl" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_option_00_00.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_option_00_00.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_option_00_00.tpl.png"
index d18b88f..b08c187 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_option_00_00.tpl.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_option_00_00.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_uchiwake_01_00.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_uchiwake_01_00.tpl"
index 08da7e9..dd92726 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_uchiwake_01_00.tpl" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_uchiwake_01_00.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_uchiwake_01_00.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_uchiwake_01_00.tpl.png"
index 1826f92..a51a3d5 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/arc/timg/help_uchiwake_01_00.tpl.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/help_uchiwake_01_00.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl"
new file mode 100644
index 0000000..1043280
Binary files /dev/null and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl.png"
new file mode 100644
index 0000000..bb9cc6a
Binary files /dev/null and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/arc/timg/wanted.tpl.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/wszst-setup.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/wszst-setup.txt"
index ee5fac7..2310c4c 100644
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/l10n_ui/wszst-setup.txt"
+++ "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/l10n_ui/wszst-setup.txt"
@@ -27,10 +27,10 @@ have-pt-dir = 0
# The minimum and maximum file data positions:
min-data-offset = 0x0
-max-data-offset = 0xd480
+max-data-offset = 0xfb60
# The calculated alignment of all files:
-data-align = 0x20
+data-align = 0x40
###############################################################################
#
@@ -103,6 +103,8 @@ data-align = 0x20
./arc/timg/help_option_00_00.tpl.png
./arc/timg/help_uchiwake_01_00.tpl.d
./arc/timg/help_uchiwake_01_00.tpl.png
+./arc/timg/wanted.tpl.d
+./arc/timg/wanted.tpl.png
./arc/timg/wii_setuzoku.tpl.d
./arc/timg/wii_setuzoku.tpl.png
./course.kcl.d
@@ -144,6 +146,7 @@ TPL,CMPR,1 = ./arc/timg/help_board_00_00.tpl
TPL,CMPR,1 = ./arc/timg/help_board_02_00.tpl
TPL,CMPR,1 = ./arc/timg/help_option_00_00.tpl
TPL,CMPR,1 = ./arc/timg/help_uchiwake_01_00.tpl
+TPL,I4,1 = ./arc/timg/wanted.tpl
TPL,C8,P-RGB565,1 = ./arc/timg/wii_setuzoku.tpl
KCL = ./course.kcl
KMP = ./course.kmp
@@ -188,12 +191,13 @@ LEX = ./course.lex
= ./arc/
= ./arc/timg/
- 0x120 = ./arc/timg/help_basis_02_00.tpl
- 0x1760 = ./arc/timg/help_board_00_00.tpl
- 0x2da0 = ./arc/timg/help_board_02_00.tpl
- 0x43e0 = ./arc/timg/help_option_00_00.tpl
- 0x5a20 = ./arc/timg/help_uchiwake_01_00.tpl
- 0x7060 = ./arc/timg/wii_setuzoku.tpl
+ 0x140 = ./arc/timg/help_basis_02_00.tpl
+ 0x1780 = ./arc/timg/help_board_00_00.tpl
+ 0x2dc0 = ./arc/timg/help_board_02_00.tpl
+ 0x4400 = ./arc/timg/help_option_00_00.tpl
+ 0x5a40 = ./arc/timg/help_uchiwake_01_00.tpl
+ 0x7080 = ./arc/timg/wanted.tpl
+ 0x9740 = ./arc/timg/wii_setuzoku.tpl
#------------------------------------------------------------------------------
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/man/Textures(NW4R)/man" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/man/Textures(NW4R)/man"
index 514e163..95444d7 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/man/Textures(NW4R)/man" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/man/Textures(NW4R)/man" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/man/Textures(NW4R)/man.png" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/man/Textures(NW4R)/man.png"
index fc7cad4..314f220 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/man/Textures(NW4R)/man.png" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/man/Textures(NW4R)/man.png" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/chr.bmg" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/chr.bmg"
index 2ec7d24..4835e73 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/chr.bmg" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/chr.bmg" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/chr.bmg.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/chr.bmg.txt"
index ab531d5..d5a1d11 100644
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/chr.bmg.txt"
+++ "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/chr.bmg.txt"
@@ -25,10 +25,10 @@
# Size of each element of section 'INF1' (MKW=8).
# This setting has impact to attributes and MKW features.
-@INF-SIZE = 0x04
+@INF-SIZE = 0x08
# Default attribute values for this BMG (MKW=[1])
-@DEFAULT-ATTRIBS = []
+@DEFAULT-ATTRIBS = [0]
# Use MKW specific color names: 0=off, 1=auto, 2=on
@COLOR-NAMES = 1
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/debug.bmg" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/debug.bmg"
index 0e70c4d..c9f5ed3 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/debug.bmg" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/debug.bmg" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/debug.bmg.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/debug.bmg.txt"
index 0820dd4..cdbda9c 100644
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/debug.bmg.txt"
+++ "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/debug.bmg.txt"
@@ -24,10 +24,10 @@
# Size of each element of section 'INF1' (MKW=8).
# This setting has impact to attributes and MKW features.
-@INF-SIZE = 0x04
+@INF-SIZE = 0x08
# Default attribute values for this BMG (MKW=[1])
-@DEFAULT-ATTRIBS = []
+@DEFAULT-ATTRIBS = [0]
# Use MKW specific color names: 0=off, 1=auto, 2=on
@COLOR-NAMES = 1
@@ -39,7 +39,7 @@
#------------------------------------------------------------------------------
# This part defines values for unknown parameters of section headers.
-@UNKNOWN-INF32-0C = 0xf0000 # 32 bit value of section INF1 offset 0x0c
+@UNKNOWN-INF32-0C = 0x100000 # 32 bit value of section INF1 offset 0x0c
@UNKNOWN-MID16-0A = 0x1000 # 16 bit value of section MID1 offset 0x0a
@UNKNOWN-MID32-0C = 0 # 32 bit value of section MID1 offset 0x0c
@@ -505,104 +505,106 @@
1bb = Remove all
1bc = Add
1bd = Add rare
- 1be = Add Pokémon to trade
- 1bf = Celebrity's Pokémon
- 1c0 = Motions
- 1c1 = Select
- 1c2 = Stage
- 1c3 = Change Level
- 1c4 = Time
- 1c5 = Rainbow
- 1c6 = Show path
- 1c7 = No change to the Time
- 1c8 = Approve
- 1c9 = Add by set
- 1ca = Eyes
- 1cb = Angry
- 1cc = Close
- 1cd = Glad
- 1ce = Normal
- 1cf = Motions
- 1d0 = (Stop)
- 1d1 = Look this way
- 1d2 = Face this way
- 1d3 = Activity
- 1d4 = Activity type
- 1d5 = DEBUG:\n
+ 1be = Flying
+ 1bf = Headband
+ 1c0 = Add Pokémon to trade
+ 1c1 = Celebrity's Pokémon
+ 1c2 = Motions
+ 1c3 = Select
+ 1c4 = Stage
+ 1c5 = Change Level
+ 1c6 = Time
+ 1c7 = Rainbow
+ 1c8 = Show path
+ 1c9 = No change to the Time
+ 1ca = Approve
+ 1cb = Add by set
+ 1cc = Eyes
+ 1cd = Angry
+ 1ce = Close
+ 1cf = Glad
+ 1d0 = Normal
+ 1d1 = Motions
+ 1d2 = (Stop)
+ 1d3 = Look this way
+ 1d4 = Face this way
+ 1d5 = Activity
+ 1d6 = Activity type
+ 1d7 = DEBUG:\n
+ Ignoring the Mii Celebrity data\n
+ because it is restricted by\n
+ Parental Controls settings.
- 1d6 = DEBUG:\n
+ 1d8 = DEBUG:\n
+ Ignoring the Mii Celebrity data\n
+ because it is not its distibution\n
+ period yet.
- 1d7 = DEBUG:\n
+ 1d9 = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because the received data\n
+ contains illegal settings.
- 1d8 = DEBUG:\n
+ 1da = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because of a wrong region\n
+ code.
- 1d9 = DEBUG:\n
+ 1db = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because of a wrong language\n
+ settings.
- 1da = DEBUG:\n
+ 1dc = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because forced exit flag is on.
- 1db = DEBUG:\n
+ 1dd = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because the distibution period\n
+ has expired.
- 1dc = DEBUG:\n
+ 1de = DEBUG:\n
+ Ignoring the Celebrity Mii data\n
+ because their distibution date\n
+ is identical.
- 1dd = DEBUG:\n
+ 1df = DEBUG:\n
+ You cannot send any more\n
+ invitations today.
- 1de = DEBUG:\n
+ 1e0 = DEBUG:\n
+ Not sending any data\n
+ because the interaction\n
+ setting is turned off.
- 1df = DEBUG:\n
+ 1e1 = DEBUG:\n
+ Not sending any data\n
+ because WiiConnect24 is\n
+ temporarily unavailable.
- 1e0 = DEBUG:\n
+ 1e2 = DEBUG:\n
+ Not sending any data\n
+ because WiiConnect24 is\n
+ unavailable.
- 1e1 = DEBUG:\n
+ 1e3 = DEBUG:\n
+ Not sending any data\n
+ because the WiiConnect24\n
+ Message function is disabled.
- 1e2 = DEBUG:\n
+ 1e4 = DEBUG:\n
+ Not sending any data\n
+ because no Wii Friends\n
+ were found.
- 1e3 = DEBUG:\n
+ 1e5 = DEBUG:\n
+ Not sending any data\n
+ because no picture was\n
+ found.
- 1e4 = DEBUG:\n
+ 1e6 = DEBUG:\n
+ You could not select\n
+ Mii and Pii to send.
- 1e5 = DEBUG:\n
+ 1e7 = DEBUG:\n
+ You could not select a recipient\n
+ or pictures.
- 1e6 = DEBUG:\n
+ 1e8 = DEBUG:\n
+ You could not serialize My\n
+ Pokémon Ranch data.
- 1e7 = DEBUG:\n
+ 1e9 = DEBUG:\n
+ You could not send an\n
+ invitation.
- 1e8 = DEBUG:\n
+ 1ea = DEBUG:\n
+ You sent an invitation.
- 1e9 = %ls\n
+ 1eb = %ls\n
+ Sending to: %04d %04d %04d %04d
- 1ea = %ls\n
+ 1ec = %ls\n
+ Sending to: %04d %04d %04d %04d\n
+ (%ls)
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/dptext.bmg" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/dptext.bmg"
index 1a3428e..756555e 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/dptext.bmg" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/dptext.bmg" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/dptext.bmg.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/dptext.bmg.txt"
index 24f93ff..b158fd6 100644
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/dptext.bmg.txt"
+++ "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/dptext.bmg.txt"
@@ -24,10 +24,10 @@
# Size of each element of section 'INF1' (MKW=8).
# This setting has impact to attributes and MKW features.
-@INF-SIZE = 0x04
+@INF-SIZE = 0x08
# Default attribute values for this BMG (MKW=[1])
-@DEFAULT-ATTRIBS = []
+@DEFAULT-ATTRIBS = [0]
# Use MKW specific color names: 0=off, 1=auto, 2=on
@COLOR-NAMES = 1
@@ -137,19 +137,19 @@
10 = $6$ $7$, 20$5$\n
+ A mysterious Pokémon\n
+ Egg received from\n
- + $8$.\n
+ + $8$.
11 = $6$ $7$, 20$5$\n
+ A mysterious Pokémon\n
+ Egg obtained in\n
- + $8$.\n
+ + $8$.
12 = $6$ $7$, 20$5$\n
+ A very mysterious\n
+ Pokémon Egg obtained\n
- + at $8$.\n
+ + at $8$.
13 = $6$ $7$, 20$5$\n
+ A very mysterious Pokémon\n
+ Egg that came from\n
- + $8$.\n
+ + $8$.
14 = Mystery Zone
15 = Twinleaf Town
16 = Sandgem Town
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/farm_event.bmg" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/farm_event.bmg"
index 13c75ee..7455ddd 100644
Binary files "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/farm_event.bmg" and "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/farm_event.bmg" differ
diff --git "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/farm_event.bmg.txt" "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/farm_event.bmg.txt"
index b841147..242c899 100644
--- "a/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\usupdate\\00000005.app\\en_US/msg/farm_event.bmg.txt"
+++ "b/C:\\Users\\wertc\\OneDrive\\Desktop\\EmuDev\\MyPokemonRanch-Hacking\\mpr-pt-translation\\europe\\00000005.app\\en_GB/msg/farm_event.bmg.txt"
@@ -24,10 +24,10 @@
# Size of each element of section 'INF1' (MKW=8).
# This setting has impact to attributes and MKW features.
-@INF-SIZE = 0x04
+@INF-SIZE = 0x08
# Default attribute values for this BMG (MKW=[1])
-@DEFAULT-ATTRIBS = []
+@DEFAULT-ATTRIBS = [0]
# Use MKW specific color names: 0=off, 1=auto, 2=on
@COLOR-NAMES = 1
@@ -75,14 +75,14 @@
+ place where you can keep\n
+ lots of Pokémon.
e = Not only do you keep the\n
- + Pokémon there...
+ + Pokémon here...
f = You can watch Pokémon live\n
+ out their daily lives!
- 10 = I've been thinking about making\n
- + this Ranch full of Pokémon.
+ 10 = I've been thinking about filling\n
+ + this ranch with Pokémon.
11 = A life surrounded by lots\n
+ of Pokémon has been my\n
- + long-cherished dream...\n
+ + long-cherished dream...
12 = Ah...\n
+ A Ranch filled with Pokémon...\n
+ It's fantastic... It's fabulous...\n
@@ -104,8 +104,8 @@
+ Hmm, I didn't quite catch that.\n
+ Let me ask you one more time.
1b = That's great! I knew it!
- 1c = I'll take you to the Ranch\n
- + right away!
+ 1c = Okay then, come on over and\n
+ + join me here at the Ranch!
1d = Select the Miis you want to\n
+ take to the Ranch.\n
+ The more you take, the more\n
@@ -119,7 +119,7 @@
+ care of them!
21 = When you visit the Ranch, every\n
+ day you'll find one new\n
- + Pokémon added to the Ranch!\n
+ + Pokémon added to the Ranch!
22 = Let's work together to fill this\n
+ Ranch with Pokémon\n
+ little by little!
@@ -146,8 +146,8 @@
2b = Oh, well. That's okay.\n
+ I'll bring a Pokémon every day!\n
+ Let's start from there!
- 2c = You know how Pokémon are\n
- + added to the Ranch now, right?
+ 2c = Now you know how Pokemon\n
+ + are added to the Ranch, right?
2d = As today's the first and a very\n
+ special day, I brought six\n
+ Pokémon to add to the Ranch!
@@ -197,7 +197,7 @@
+ okay for tomorrow?
41 = Is a pink Pokémon\n
+ okay for tomorrow?
- 42 = Is a short Pokémon\n
+ 42 = Is a small Pokémon\n
+ okay for tomorrow?
43 = Is a tall Pokémon\n
+ okay for tomorrow?
@@ -257,7 +257,7 @@
5e = Okay, perhaps a\n
+ pink Pokémon?
5f = Okay, perhaps a\n
- + short Pokémon?
+ + small Pokémon?
60 = Okay, perhaps a\n
+ tall Pokémon?
61 = Okay, perhaps a\n
@@ -328,7 +328,7 @@
+ pink Pokémon tomorrow!
7c = All right. Leave it to me!\n
+ I will bring a\n
- + short Pokémon tomorrow!
+ + small Pokémon tomorrow!
7d = All right. Leave it to me!\n
+ I will bring a\n
+ tall Pokémon tomorrow!
@@ -389,13 +389,13 @@
+ Pokémon I bring here tomorrow!
91 = See ya!
92 = The number of Pokémon at the\n
- + Ranch has become %d!
+ + Ranch has become %ls!
93 =
94 = Okay. Let's expand the Ranch!\n
+ Its construction is expected to\n
+ be done on %ls!
95 = Oh? The number of Pokémon at\n
- + the Ranch is already %d!
+ + the Ranch is already %ls!
96 =
97 = Okay.\n
+ Let's expand the Ranch again!
@@ -411,7 +411,7 @@
9c = I did not bring any Pokémon to\n
+ the Ranch today.
9d = So far, I have brought\n
- + %d Pokémon.
+ + %ls Pokémon.
9e =
9f = Here are my precious Pokémon.\n
+ Please take good care of them!
@@ -421,16 +421,16 @@
+ get any bigger...
a2 = Please look after the Pokémon\n
+ and the Ranch!
- a3 = Once the number of Pokémon\n
- + becomes %d, let's expand\n
+ a3 = Once we get %ls\n
+ + Pokémon, let's expand\n
+ the Ranch!
a4 =
a5 = Let's keep adding Pokémon to\n
+ the Ranch!
a6 = Let's expand the Ranch by\n
+ adding more Pokémon!
- a7 = Once the number of Pokémon\n
- + becomes %d, let's expand\n
+ a7 = Once we get %ls\n
+ + Pokémon, let's expand\n
+ the Ranch!
a8 =
a9 = ...Oh!?
@@ -439,14 +439,14 @@
ab = From now on, you should use\n
+ Free Mode to watch the Ranch.\n
+ It's so handy!
- ac = Free Mode is added to\n
- + the menu!
+ ac = The Free Mode function has\n
+ + been added to the menu!
ad = Great news!\n
+ A Toy Box will be delivered to\n
+ the Ranch every day starting\n
+ today!
ae = A toy that Pokémon can play\n
- + with is stored in the Toy Box.\n
+ + with is stored in the Toy Box.
af = It's like a treasure box!\n
+ You'll find it somewhere on\n
+ the Ranch. Look for it\n
@@ -463,7 +463,8 @@
+ favorite Pokémon.
b4 = From now on, you should use\n
+ Favorites to organize Pokémon.
- b5 = Favorites is added to the menu!
+ b5 = The Favourites function has\n
+ + been added to the menu!
b6 = More great news!\n
+ Two Toy Boxes will be delivered\n
+ to the Ranch every day starting\n
@@ -569,7 +570,7 @@
e1 = The Ranch has expanded!
e2 = The number of Pokémon you\n
+ can keep has increased from\n
- + %d to %d!
+ + %ls to %ls!
e3 =
e4 = The number of Miis you can\n
+ bring has increased from\n
@@ -602,7 +603,7 @@
ee = Bring the Wanted Pokémon\n
+ to the Ranch once you catch it.
ef = Oh, you know what?\n
- + The %ls you\n
+ + The %{} you\n
+ just brought to the Ranch...
f0 = %ls was looking\n
+ for it.
@@ -630,36 +631,38 @@
+ See ya!
fb = Long time no see!\n
+ I haven't seen you for\n
- + %d year(s)!
- fc = The Pokémon missed you \n
+ + %d years!
+ fc = Long time no see!\n
+ + It's been about a year\n
+ + since I've seen you!
+ fd = The Pokémon missed you \n
+ so much!
- fd = Long time no see!\n
+ fe = Long time no see!\n
+ + I haven't seen you for\n
+ + %d months!
+ ff = Long time no see!\n
+ I haven't seen you for\n
- + %d month(s)!
- fe = I bet the Pokémon missed you\n
+ + 1 month!
+ 100 = I bet the Pokémon missed you\n
+ so much!
- ff = Well, hello there!\n
+ 101 = Well, hello there!\n
+ + I haven't seen you for\n
+ + %d weeks!
+ 102 = Well, hello there!\n
+ I haven't seen you for\n
- + %d week(s)!
- 100 = The Pokémon look very happy\n
+ + 1 week!
+ 103 = The Pokémon look very happy\n
+ to see you!
- 101 = Hello!\n
+ 104 = Hello!\n
+ Thanks for coming back to the\n
+ Ranch today!
- 102 = Hello!\n
+ 105 = Hello!\n
+ I am so glad to see you again!
- 103 = Hello!\n
+ 106 = Hello!\n
+ Enjoy your time at the Ranch!
- 104 = You have arrived at\n
+ 107 = You have arrived at\n
+ %ls's\n
+ %ls Ranch!
- 105 = Please enjoy\n
- + %ls Ranch!
- 106 = To leave this Ranch, move the\n
- + cursor onto the door located at\n
- + the top left of the screen and\n
- + press \x{e042}.
- 107 = Enjoy!
108 = Please enjoy\n
+ %ls Ranch!
109 = To leave this Ranch, move the\n
@@ -667,8 +670,8 @@
+ the top left of the screen and\n
+ press \x{e042}.
10a = Enjoy!
- 10b = I'm very proud of this Ranch!\n
- + Check out every corner of it!
+ 10b = Please enjoy\n
+ + %ls Ranch!
10c = To leave this Ranch, move the\n
+ cursor onto the door located at\n
+ the top left of the screen and\n
@@ -681,346 +684,359 @@
+ the top left of the screen and\n
+ press \x{e042}.
110 = Enjoy!
- 111 = %2$ls has arrived\n
+ 111 = I'm very proud of this Ranch!\n
+ + Check out every corner of it!
+ 112 = To leave this Ranch, move the\n
+ + cursor onto the door located at\n
+ + the top left of the screen and\n
+ + press \x{e042}.
+ 113 = Enjoy!
+ 114 = %2$ls has arrived\n
+ from %1$ls\n
+ Ranch.
- 112 = Hello!\n
+ 115 = Hello!\n
+ I brought a picture of\n
+ %ls Ranch.
- 113 = Hello!\n
- + I'm %2$ls\n
- + from %1$ls Ranch!
- 114 = Hello!\n
+ 116 = Hello!\n
+ + I'm %2$ls from \n
+ + %1$ls Ranch!
+ 117 = Hello!\n
+ I brought a picture of\n
+ %ls Ranch.
- 115 = Hello!\n
- + I'm %2$ls\n
- + from %1$ls Ranch.
- 116 = Why don't you come to\n
+ 118 = Hello!\n
+ + I'm %2$ls from \n
+ + %1$ls Ranch!
+ 119 = Why don't you come to\n
+ %ls Ranch?
- 117 = Okay!\n
+ 11a = Okay!\n
+ Let's go to\n
+ %ls Ranch!
- 118 = Okay. Maybe next time.
- 119 = Hope to see you again!\n
+ 11b = Okay. Maybe next time.
+ 11c = Hope to see you again!\n
+ Good-bye!
- 11a = Would you like to come to\n
+ 11d = Would you like to come to\n
+ %ls Ranch?
- 11b = Okay!\n
+ 11e = Okay!\n
+ Let's go to\n
+ %ls Ranch!
- 11c = Okay. Maybe next time.
- 11d = Hope to see you again!\n
+ 11f = Okay. Maybe next time.
+ 120 = Hope to see you again!\n
+ Good-bye!
- 11e = Do you want to go?
- 11f = Thanks for visiting\n
- + %ls Ranch!
- 120 = I will visit again and invite you\n
- + to my Ranch. See you then!
- 121 = Thanks again, and take care!
+ 121 = Do you want to go?
122 = Thanks for visiting\n
+ %ls Ranch!
123 = I will visit again and invite you\n
+ to my Ranch. See you then!
124 = Thanks again, and take care!
- 125 = How do you do?
- 126 = So... This is your and Hayley's\n
+ 125 = Thanks for visiting\n
+ + %ls Ranch!
+ 126 = I will visit again and invite you\n
+ + to my Ranch. See you then!
+ 127 = Thanks again, and take care!
+ 128 = How do you do?
+ 129 = So... This is your and Hayley's\n
+ Ranch? Looks nice!
- 127 = My name is %2$ls, \n
+ 12a = My name is %2$ls, \n
+ a member of Club Look-See.\n
+ My Member No. is %1$d!
- 128 = The mottos of Club Look-See\n
+ 12b = The mottos of Club Look-See\n
+ are...
- 129 = Ranch!\n
+ 12c = Ranch!\n
+ That's something you should be\n
+ picky about!
- 12a = Ranch!\n
+ 12d = Ranch!\n
+ That's something you should\n
+ show off to as many people as\n
+ you can!
- 12b = These are mottos of the Club!
- 12c = Now, I want to show you my\n
+ 12e = These are mottos of the Club!
+ 12f = Now, I want to show you my\n
+ Ranch! The one I really care\n
+ about.
- 12d = Will you come to my Ranch?
- 12e = Come on! Don't be shy!
- 12f = I want you to know how great\n
+ 130 = Will you come to my Ranch?
+ 131 = Come on! Don't be shy!
+ 132 = I want you to know how great\n
+ Club Look-See can be!
- 130 = All right! That's the way!\n
+ 133 = All right! That's the way!\n
+ Okay, let's go to my Ranch!
- 131 = So... This is your and Hayley's\n
+ 134 = So... This is your and Hayley's\n
+ Ranch? I heard a great deal\n
+ about it!
- 132 = My name is %2$ls,\n
+ 135 = My name is %2$ls,\n
+ a member of Club Look-See.\n
+ My Member No. is %1$d!
- 133 = Haha!\n
+ 136 = Haha!\n
+ Do you know what my favorite\n
+ Pokémon is?
- 134 = Visit my Ranch to find out!
- 135 = All right! That's the way!\n
+ 137 = Visit my Ranch to find out!
+ 138 = All right! That's the way!\n
+ Okay, let's go to my Ranch!
- 136 = I see...\n
+ 139 = I see...\n
+ That's too bad. I really wanted\n
+ to show you my Ranch.
- 137 = I will come back and invite you\n
+ 13a = I will come back and invite you\n
+ to my Ranch again, so until\n
+ next time!
- 138 = So long!\n
+ 13b = So long!\n
+ \n
+ Look-See ya!
- 139 = So... This is your and Hayley's\n
+ 13c = So... This is your and Hayley's\n
+ Ranch? I heard so much\n
+ about it!
- 13a = My name is %2$ls,\n
+ 13d = My name is %2$ls,\n
+ a member of Club Look-See.\n
+ My Member No. is %1$d!
- 13b = Hehe.\n
+ 13e = Hehe.\n
+ Do you want to take a guess\n
+ which Pokémon I love?
- 13c = Would you like to come to my\n
+ 13f = Would you like to come to my\n
+ Ranch to find out?
- 13d = Yes? Cool!\n
+ 140 = Yes? Cool!\n
+ Okay, let's go to my Ranch!
- 13e = I see...\n
+ 141 = I see...\n
+ I wanted to show you my Ranch,\n
+ but... Too bad!
- 13f = Maybe next time?\n
+ 142 = Maybe next time?\n
+ I will come back and invite you\n
+ to my Ranch again!
- 140 = So long!\n
+ 143 = So long!\n
+ \n
+ Look-See ya!
- 141 = Thanks for coming and\n
+ 144 = Thanks for coming and\n
+ checking out my Ranch!
- 142 = You know?\n
+ 145 = You know?\n
+ Having people like you at\n
+ my Ranch is really encouraging!
- 143 = Hope you don't mind me telling\n
+ 146 = Hope you don't mind me telling\n
+ other members about you!
- 144 = When you meet other members\n
+ 147 = When you meet other members\n
+ of Club Look-See, please take\n
+ the time to visit their Ranches!
- 145 = All right, please take care!
- 146 = So...how did you like it?\n
+ 148 = All right, please take care!
+ 149 = So...how did you like it?\n
+ Are you impressed?
- 147 = Didn't my Ranch serve as a\n
+ 14a = Didn't my Ranch serve as a\n
+ good inspiration for your\n