├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── icon.jpg ├── include ├── about_tab.hpp ├── games_list.hpp ├── main_frame.hpp ├── tools_list.hpp └── utils.hpp ├── resources ├── gui_icon.png └── i18n │ ├── en-US │ ├── brls.json │ └── menus.json │ ├── ja-RYU │ ├── brls.json │ └── menus.json │ ├── ja │ ├── brls.json │ └── menus.json │ ├── ko │ ├── brls.json │ └── menus.json │ ├── zh-CN │ ├── brls.json │ └── menus.json │ └── zh-TW │ ├── brls.json │ └── menus.json └── source ├── about_tab.cpp ├── games_list.cpp ├── main.cpp ├── main_frame.cpp ├── tools_list.cpp └── utils.cpp /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/README.md -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/icon.jpg -------------------------------------------------------------------------------- /include/about_tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/include/about_tab.hpp -------------------------------------------------------------------------------- /include/games_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/include/games_list.hpp -------------------------------------------------------------------------------- /include/main_frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/include/main_frame.hpp -------------------------------------------------------------------------------- /include/tools_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/include/tools_list.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /resources/gui_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/gui_icon.png -------------------------------------------------------------------------------- /resources/i18n/en-US/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/en-US/brls.json -------------------------------------------------------------------------------- /resources/i18n/en-US/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/en-US/menus.json -------------------------------------------------------------------------------- /resources/i18n/ja-RYU/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ja-RYU/brls.json -------------------------------------------------------------------------------- /resources/i18n/ja-RYU/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ja-RYU/menus.json -------------------------------------------------------------------------------- /resources/i18n/ja/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ja/brls.json -------------------------------------------------------------------------------- /resources/i18n/ja/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ja/menus.json -------------------------------------------------------------------------------- /resources/i18n/ko/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ko/brls.json -------------------------------------------------------------------------------- /resources/i18n/ko/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/ko/menus.json -------------------------------------------------------------------------------- /resources/i18n/zh-CN/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/zh-CN/brls.json -------------------------------------------------------------------------------- /resources/i18n/zh-CN/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/zh-CN/menus.json -------------------------------------------------------------------------------- /resources/i18n/zh-TW/brls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/zh-TW/brls.json -------------------------------------------------------------------------------- /resources/i18n/zh-TW/menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/resources/i18n/zh-TW/menus.json -------------------------------------------------------------------------------- /source/about_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/about_tab.cpp -------------------------------------------------------------------------------- /source/games_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/games_list.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/main_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/main_frame.cpp -------------------------------------------------------------------------------- /source/tools_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/tools_list.cpp -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HamletDuFromage/nx-locale-switcher/HEAD/source/utils.cpp --------------------------------------------------------------------------------