├── .gitignore ├── Arabic ├── Localizable.strings └── MainMenu.strings ├── Chinese (Simplified) ├── zh-Hans_AppStore_Description.txt ├── zh-Hans_Localizable.strings └── zh-Hans_MainMenu.strings ├── Dutch ├── nl_AppStore_Description.txt.rtf ├── nl_Localizable.strings └── nl_MainMenu.strings ├── English ├── en_AppStore_Description.txt ├── en_Localizable.strings └── en_MainMenu.strings ├── French ├── fr_AppStore_Description.txt ├── fr_Localizable.strings └── fr_MainMenu.strings.txt ├── German ├── de_AppStore_Description.txt ├── de_Localizable.strings └── de_MainMenu.strings ├── Japanese ├── ja_AppStore_Description.txt ├── ja_Localizable.strings └── ja_MainMenu.strings ├── Korean ├── ko_AppStore_Description.txt ├── ko_Localizable.strings └── ko_MainMenu.strings ├── Portuguese (Brazil) ├── Localizable.strings ├── pt-BR_AppStore_Description.txt └── pt-BR_Localizable.strings ├── README.md ├── Vietnamese ├── vi_AppStore_Description.txt ├── vi_Localizable.strings └── vi_MainMenu.strings └── v5,2,3_new_strings /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Arabic/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Arabic/Localizable.strings -------------------------------------------------------------------------------- /Arabic/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Arabic/MainMenu.strings -------------------------------------------------------------------------------- /Chinese (Simplified)/zh-Hans_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Chinese (Simplified)/zh-Hans_AppStore_Description.txt -------------------------------------------------------------------------------- /Chinese (Simplified)/zh-Hans_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Chinese (Simplified)/zh-Hans_Localizable.strings -------------------------------------------------------------------------------- /Chinese (Simplified)/zh-Hans_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Chinese (Simplified)/zh-Hans_MainMenu.strings -------------------------------------------------------------------------------- /Dutch/nl_AppStore_Description.txt.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Dutch/nl_AppStore_Description.txt.rtf -------------------------------------------------------------------------------- /Dutch/nl_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Dutch/nl_Localizable.strings -------------------------------------------------------------------------------- /Dutch/nl_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Dutch/nl_MainMenu.strings -------------------------------------------------------------------------------- /English/en_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/English/en_AppStore_Description.txt -------------------------------------------------------------------------------- /English/en_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/English/en_Localizable.strings -------------------------------------------------------------------------------- /English/en_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/English/en_MainMenu.strings -------------------------------------------------------------------------------- /French/fr_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/French/fr_AppStore_Description.txt -------------------------------------------------------------------------------- /French/fr_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/French/fr_Localizable.strings -------------------------------------------------------------------------------- /French/fr_MainMenu.strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/French/fr_MainMenu.strings.txt -------------------------------------------------------------------------------- /German/de_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/German/de_AppStore_Description.txt -------------------------------------------------------------------------------- /German/de_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/German/de_Localizable.strings -------------------------------------------------------------------------------- /German/de_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/German/de_MainMenu.strings -------------------------------------------------------------------------------- /Japanese/ja_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Japanese/ja_AppStore_Description.txt -------------------------------------------------------------------------------- /Japanese/ja_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Japanese/ja_Localizable.strings -------------------------------------------------------------------------------- /Japanese/ja_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Japanese/ja_MainMenu.strings -------------------------------------------------------------------------------- /Korean/ko_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Korean/ko_AppStore_Description.txt -------------------------------------------------------------------------------- /Korean/ko_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Korean/ko_Localizable.strings -------------------------------------------------------------------------------- /Korean/ko_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Korean/ko_MainMenu.strings -------------------------------------------------------------------------------- /Portuguese (Brazil)/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Portuguese (Brazil)/Localizable.strings -------------------------------------------------------------------------------- /Portuguese (Brazil)/pt-BR_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Portuguese (Brazil)/pt-BR_AppStore_Description.txt -------------------------------------------------------------------------------- /Portuguese (Brazil)/pt-BR_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Portuguese (Brazil)/pt-BR_Localizable.strings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/README.md -------------------------------------------------------------------------------- /Vietnamese/vi_AppStore_Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Vietnamese/vi_AppStore_Description.txt -------------------------------------------------------------------------------- /Vietnamese/vi_Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Vietnamese/vi_Localizable.strings -------------------------------------------------------------------------------- /Vietnamese/vi_MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/Vietnamese/vi_MainMenu.strings -------------------------------------------------------------------------------- /v5,2,3_new_strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/x74353/Amphetamine_Localization/HEAD/v5,2,3_new_strings --------------------------------------------------------------------------------