├── .gitignore ├── README.md ├── data └── files_list.txt ├── fonts └── fonts.json ├── get_strings.sh ├── omegat └── files_order.txt ├── prepare.sh ├── prepare_fonts.sh └── tools ├── astcenc-avx2 ├── astcenc-avx2.exe ├── clone_kernings.py ├── convert_texture.sh ├── format ├── bin.py ├── charnames.py ├── dat.py ├── ftb.py ├── ktb.py ├── mcd.py ├── pak.py ├── properties.py ├── smd.py ├── tmd.py ├── utils.py └── wta.py ├── get_strings.py ├── put_glyphs.py ├── put_strings.py ├── put_strings_mcd.py ├── repack_dat.py ├── repack_wtp.py ├── swizzle.py ├── unpack_dat.py ├── unpack_dds.py └── unpack_font.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/README.md -------------------------------------------------------------------------------- /data/files_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/data/files_list.txt -------------------------------------------------------------------------------- /fonts/fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/fonts/fonts.json -------------------------------------------------------------------------------- /get_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/get_strings.sh -------------------------------------------------------------------------------- /omegat/files_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/omegat/files_order.txt -------------------------------------------------------------------------------- /prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/prepare.sh -------------------------------------------------------------------------------- /prepare_fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/prepare_fonts.sh -------------------------------------------------------------------------------- /tools/astcenc-avx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/astcenc-avx2 -------------------------------------------------------------------------------- /tools/astcenc-avx2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/astcenc-avx2.exe -------------------------------------------------------------------------------- /tools/clone_kernings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/clone_kernings.py -------------------------------------------------------------------------------- /tools/convert_texture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/convert_texture.sh -------------------------------------------------------------------------------- /tools/format/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/bin.py -------------------------------------------------------------------------------- /tools/format/charnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/charnames.py -------------------------------------------------------------------------------- /tools/format/dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/dat.py -------------------------------------------------------------------------------- /tools/format/ftb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/ftb.py -------------------------------------------------------------------------------- /tools/format/ktb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/ktb.py -------------------------------------------------------------------------------- /tools/format/mcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/mcd.py -------------------------------------------------------------------------------- /tools/format/pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/pak.py -------------------------------------------------------------------------------- /tools/format/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/properties.py -------------------------------------------------------------------------------- /tools/format/smd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/smd.py -------------------------------------------------------------------------------- /tools/format/tmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/tmd.py -------------------------------------------------------------------------------- /tools/format/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/utils.py -------------------------------------------------------------------------------- /tools/format/wta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/format/wta.py -------------------------------------------------------------------------------- /tools/get_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/get_strings.py -------------------------------------------------------------------------------- /tools/put_glyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/put_glyphs.py -------------------------------------------------------------------------------- /tools/put_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/put_strings.py -------------------------------------------------------------------------------- /tools/put_strings_mcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/put_strings_mcd.py -------------------------------------------------------------------------------- /tools/repack_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/repack_dat.py -------------------------------------------------------------------------------- /tools/repack_wtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/repack_wtp.py -------------------------------------------------------------------------------- /tools/swizzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/swizzle.py -------------------------------------------------------------------------------- /tools/unpack_dat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/unpack_dat.py -------------------------------------------------------------------------------- /tools/unpack_dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/unpack_dds.py -------------------------------------------------------------------------------- /tools/unpack_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synspawacza/nier_automata_localization/HEAD/tools/unpack_font.py --------------------------------------------------------------------------------