├── .gitignore ├── Localization ├── en.lproj │ ├── GeneralPreferenceViewController.strings │ ├── InfoPlist-TodayView.strings │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── Main.strings │ ├── NotificationsPreferenceViewController.strings │ ├── RegistrationViewController.strings │ └── TodayViewController.strings ├── it.lproj │ ├── GeneralPreferenceViewController.strings │ ├── InfoPlist-TodayView.strings │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── Main.strings │ ├── NotificationsPreferenceViewController.strings │ ├── RegistrationViewController.strings │ └── TodayViewController.strings ├── ru.lproj │ ├── GeneralPreferenceViewController.strings │ ├── InfoPlist-TodayView.strings │ ├── InfoPlist.strings │ ├── Localizable.strings │ ├── Main.strings │ ├── NotificationsPreferenceViewController.strings │ ├── RegistrationViewController.strings │ └── TodayViewController.strings └── zh-Hans.lproj │ ├── GeneralPreferenceViewController.strings │ ├── InfoPlist-TodayView.strings │ ├── InfoPlist.strings │ ├── ListRowViewController.strings │ ├── Localizable.strings │ ├── Main.strings │ ├── NotificationsPreferenceViewController.strings │ ├── RegistrationViewController.strings │ └── TodayViewController.strings └── appcast.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/.gitignore -------------------------------------------------------------------------------- /Localization/en.lproj/GeneralPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/GeneralPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/en.lproj/InfoPlist-TodayView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/InfoPlist-TodayView.strings -------------------------------------------------------------------------------- /Localization/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/Main.strings -------------------------------------------------------------------------------- /Localization/en.lproj/NotificationsPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/NotificationsPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/en.lproj/RegistrationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/RegistrationViewController.strings -------------------------------------------------------------------------------- /Localization/en.lproj/TodayViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/en.lproj/TodayViewController.strings -------------------------------------------------------------------------------- /Localization/it.lproj/GeneralPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/GeneralPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/it.lproj/InfoPlist-TodayView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/InfoPlist-TodayView.strings -------------------------------------------------------------------------------- /Localization/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localization/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/it.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/Main.strings -------------------------------------------------------------------------------- /Localization/it.lproj/NotificationsPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/NotificationsPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/it.lproj/RegistrationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/RegistrationViewController.strings -------------------------------------------------------------------------------- /Localization/it.lproj/TodayViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/it.lproj/TodayViewController.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/GeneralPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/GeneralPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/InfoPlist-TodayView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/InfoPlist-TodayView.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/Main.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/NotificationsPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/NotificationsPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/RegistrationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/RegistrationViewController.strings -------------------------------------------------------------------------------- /Localization/ru.lproj/TodayViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/ru.lproj/TodayViewController.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/GeneralPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/GeneralPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/InfoPlist-TodayView.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/InfoPlist-TodayView.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/ListRowViewController.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/Main.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/NotificationsPreferenceViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/NotificationsPreferenceViewController.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/RegistrationViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/RegistrationViewController.strings -------------------------------------------------------------------------------- /Localization/zh-Hans.lproj/TodayViewController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/Localization/zh-Hans.lproj/TodayViewController.strings -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronyfadel/BatteriesReleases/HEAD/appcast.xml --------------------------------------------------------------------------------