├── .theos ├── fakeroot ├── last_package └── packages │ ├── - │ ├── com.ludvigeriksson.timeuntilalarm-0.0.1 │ ├── com.ludvigeriksson.timeuntilalarm-1.0.0 │ ├── com.ludvigeriksson.timeuntilalarm-1.0.1 │ ├── com.ludvigeriksson.timeuntilalarm-1.1.0 │ ├── com.ludvigeriksson.timeuntilalarm-1.1.1 │ └── com.ludvigeriksson.timeuntilalarm-1.1.11~beta1 ├── LICENSE.md ├── Makefile ├── README.md ├── TimeUntilAlarm.plist ├── Tweak.xm ├── _ ├── DEBIAN │ └── control └── Library │ ├── Application Support │ └── TimeUntilAlarm │ │ ├── Bitcoin.png │ │ ├── TimeUntilAlarmIcon24.png │ │ ├── TimeUntilAlarmIcon24@2x.png │ │ ├── TimeUntilAlarmLockScreenIcon.png │ │ ├── TimeUntilAlarmLockScreenIcon@2x.png │ │ ├── TimeUntilAlarmLockScreenIcon@3x.png │ │ ├── ar.lproj │ │ └── Localizable.strings │ │ ├── de.lproj │ │ └── Localizable.strings │ │ ├── el.lproj │ │ └── Localizable.strings │ │ ├── en.lproj │ │ └── Localizable.strings │ │ ├── nl.lproj │ │ └── Localizable.strings │ │ ├── pl.lproj │ │ └── Localizable.strings │ │ ├── ru.lproj │ │ └── Localizable.strings │ │ ├── sv.lproj │ │ └── Localizable.strings │ │ ├── uk.lproj │ │ └── Localizable.strings │ │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ │ └── zh-Hant.lproj │ │ └── Localizable.strings │ ├── MobileSubstrate │ └── DynamicLibraries │ │ ├── TimeUntilAlarm.dylib │ │ └── TimeUntilAlarm.plist │ ├── PreferenceBundles │ └── TimeUntilAlarmPrefs.bundle │ │ ├── Bitcoin.png │ │ ├── BitcoinIcon.png │ │ ├── BitcoinIcon@2x.png │ │ ├── BitcoinIcon@3x.png │ │ ├── CodeIcon.png │ │ ├── CodeIcon@2x.png │ │ ├── CodeIcon@3x.png │ │ ├── Info.plist │ │ ├── MailIcon.png │ │ ├── MailIcon@2x.png │ │ ├── MailIcon@3x.png │ │ ├── PayPalIcon.png │ │ ├── PayPalIcon@2x.png │ │ ├── PayPalIcon@3x.png │ │ ├── TUAClockAppFontColor.plist │ │ ├── TUALockScreenFontColor.plist │ │ ├── TUALockScreenHorizontalPosition.plist │ │ ├── TUALockScreenPosition.plist │ │ ├── TUALockScreenVerticalPosition.plist │ │ ├── TUATranslations.plist │ │ ├── TimeUntilAlarmPrefs │ │ ├── TimeUntilAlarmPrefs.plist │ │ ├── TimeUntilAlarmPrefsIcon.png │ │ ├── TimeUntilAlarmPrefsIcon@2x.png │ │ ├── TimeUntilAlarmPrefsIcon@3x.png │ │ ├── TranslationIcon-original.png │ │ ├── TranslationIcon.png │ │ ├── TranslationIcon@2x.png │ │ ├── TranslationIcon@3x.png │ │ ├── WebsiteIcon.png │ │ ├── WebsiteIcon@2x.png │ │ ├── WebsiteIcon@3x.png │ │ ├── ar.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── de.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── el.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── en.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── nl.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── pl.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── ru.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── sv.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── uk.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ ├── zh-Hans.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ │ └── zh-Hant.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ └── PreferenceLoader │ └── Preferences │ └── TimeUntilAlarmPrefs.plist ├── com.ludvigeriksson.timeuntilalarm_1.1.12_iphoneos-arm.deb ├── control ├── entitlements.xml ├── layout └── Library │ └── Application Support │ └── TimeUntilAlarm │ ├── Bitcoin.png │ ├── TimeUntilAlarmIcon24.png │ ├── TimeUntilAlarmIcon24@2x.png │ ├── TimeUntilAlarmLockScreenIcon.png │ ├── TimeUntilAlarmLockScreenIcon@2x.png │ ├── TimeUntilAlarmLockScreenIcon@3x.png │ ├── ar.lproj │ └── Localizable.strings │ ├── de.lproj │ └── Localizable.strings │ ├── el.lproj │ └── Localizable.strings │ ├── en.lproj │ └── Localizable.strings │ ├── nl.lproj │ └── Localizable.strings │ ├── pl.lproj │ └── Localizable.strings │ ├── ru.lproj │ └── Localizable.strings │ ├── sv.lproj │ └── Localizable.strings │ ├── uk.lproj │ └── Localizable.strings │ ├── zh-Hans.lproj │ └── Localizable.strings │ └── zh-Hant.lproj │ └── Localizable.strings ├── libcolorpicker.h ├── obj ├── .stamp ├── TimeUntilAlarm.dylib ├── Tweak.xm.a0c8fa50.o └── com.ludvigeriksson.timeuntilalarm.bundle │ ├── Bitcoin.png │ ├── TimeUntilAlarmLockScreenIcon.png │ ├── TimeUntilAlarmLockScreenIcon@2x.png │ ├── TimeUntilAlarmLockScreenIcon@3x.png │ ├── en.lproj │ └── Localizable.strings │ └── sv.lproj │ ├── Localizable.strings │ ├── TimeUntilAlarmLockScreenIcon.png │ ├── TimeUntilAlarmLockScreenIcon@2x.png │ └── TimeUntilAlarmLockScreenIcon@3x.png ├── theos └── timeuntilalarmprefs ├── Makefile ├── Resources ├── BitcoinIcon.png ├── BitcoinIcon@2x.png ├── BitcoinIcon@3x.png ├── CodeIcon.png ├── CodeIcon@2x.png ├── CodeIcon@3x.png ├── Info.plist ├── MailIcon.png ├── MailIcon@2x.png ├── MailIcon@3x.png ├── PayPalIcon.png ├── PayPalIcon@2x.png ├── PayPalIcon@3x.png ├── TUAClockAppFontColor.plist ├── TUALockScreenFontColor.plist ├── TUALockScreenPosition.plist ├── TUATranslations.plist ├── TimeUntilAlarmPrefs.plist ├── TimeUntilAlarmPrefsIcon.png ├── TimeUntilAlarmPrefsIcon@2x.png ├── TimeUntilAlarmPrefsIcon@3x.png ├── TranslationIcon.png ├── TranslationIcon@2x.png ├── TranslationIcon@3x.png ├── WebsiteIcon.png ├── WebsiteIcon@2x.png ├── WebsiteIcon@3x.png ├── ar.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── de.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── el.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── en.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── nl.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── pl.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── ru.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── sv.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── uk.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── zh-Hans.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings └── zh-Hant.lproj │ ├── TUAClockAppFontColor.strings │ ├── TUALockScreenFontColor.strings │ ├── TUALockScreenPosition.strings │ └── TimeUntilAlarmPrefs.strings ├── TimeUntilAlarmPrefs.mm ├── entry.plist ├── obj ├── .stamp ├── TimeUntilAlarmPrefs.bundle │ ├── Bitcoin.png │ ├── BitcoinIcon.png │ ├── BitcoinIcon@2x.png │ ├── BitcoinIcon@3x.png │ ├── CodeIcon.png │ ├── CodeIcon@2x.png │ ├── CodeIcon@3x.png │ ├── Info.plist │ ├── MailIcon.png │ ├── MailIcon@2x.png │ ├── MailIcon@3x.png │ ├── PayPalIcon.png │ ├── PayPalIcon@2x.png │ ├── PayPalIcon@3x.png │ ├── TUAClockAppFontColor.plist │ ├── TUALockScreenFontColor.plist │ ├── TUALockScreenHorizontalPosition.plist │ ├── TUALockScreenPosition.plist │ ├── TUALockScreenVerticalPosition.plist │ ├── TUATranslations.plist │ ├── TimeUntilAlarmPrefs │ ├── TimeUntilAlarmPrefs.plist │ ├── TimeUntilAlarmPrefsIcon.png │ ├── TimeUntilAlarmPrefsIcon@2x.png │ ├── TimeUntilAlarmPrefsIcon@3x.png │ ├── TranslationIcon-original.png │ ├── TranslationIcon.png │ ├── TranslationIcon@2x.png │ ├── TranslationIcon@3x.png │ ├── WebsiteIcon.png │ ├── WebsiteIcon@2x.png │ ├── WebsiteIcon@3x.png │ ├── ar.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── de.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── el.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── en.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── nl.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── pl.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── ru.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── sv.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── uk.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ ├── zh-Hans.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings │ └── zh-Hant.lproj │ │ ├── TUAClockAppFontColor.strings │ │ ├── TUALockScreenFontColor.strings │ │ ├── TUALockScreenPosition.strings │ │ └── TimeUntilAlarmPrefs.strings ├── TimeUntilAlarmPrefs.mm.01148866.o ├── TimeUntilAlarmPrefs.mm.05d7a221.o ├── TimeUntilAlarmPrefs.mm.0749ed5f.o ├── TimeUntilAlarmPrefs.mm.161f6926.o ├── TimeUntilAlarmPrefs.mm.1c3c8902.o ├── TimeUntilAlarmPrefs.mm.246b8964.o ├── TimeUntilAlarmPrefs.mm.5aad23d0.o ├── TimeUntilAlarmPrefs.mm.5dbb0bde.o ├── TimeUntilAlarmPrefs.mm.6d0b6ea2.o ├── TimeUntilAlarmPrefs.mm.6f6963bb.o ├── TimeUntilAlarmPrefs.mm.7ba59eda.o ├── TimeUntilAlarmPrefs.mm.8593e94b.o ├── TimeUntilAlarmPrefs.mm.ae5d16cc.o ├── TimeUntilAlarmPrefs.mm.b1348ab7.o ├── TimeUntilAlarmPrefs.mm.c2510756.o ├── TimeUntilAlarmPrefs.mm.c3d6ad02.o ├── TimeUntilAlarmPrefs.mm.dd4ac0fa.o ├── TimeUntilAlarmPrefs.mm.f46f5305.o └── TimeUntilAlarmPrefs.mm.fcc63a68.o └── theos /.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.theos/last_package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/.theos/last_package -------------------------------------------------------------------------------- /.theos/packages/-: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-0.0.1: -------------------------------------------------------------------------------- 1 | 29 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-1.0.0: -------------------------------------------------------------------------------- 1 | 66 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-1.0.1: -------------------------------------------------------------------------------- 1 | 230 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-1.1.0: -------------------------------------------------------------------------------- 1 | 34 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-1.1.1: -------------------------------------------------------------------------------- 1 | 70 -------------------------------------------------------------------------------- /.theos/packages/com.ludvigeriksson.timeuntilalarm-1.1.11~beta1: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/README.md -------------------------------------------------------------------------------- /TimeUntilAlarm.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/TimeUntilAlarm.plist -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/Tweak.xm -------------------------------------------------------------------------------- /_/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/DEBIAN/control -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/Bitcoin.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24@2x.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@2x.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@3x.png -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/Application Support/TimeUntilAlarm/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/Application Support/TimeUntilAlarm/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /_/Library/MobileSubstrate/DynamicLibraries/TimeUntilAlarm.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/MobileSubstrate/DynamicLibraries/TimeUntilAlarm.dylib -------------------------------------------------------------------------------- /_/Library/MobileSubstrate/DynamicLibraries/TimeUntilAlarm.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/MobileSubstrate/DynamicLibraries/TimeUntilAlarm.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/Bitcoin.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/BitcoinIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/CodeIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/Info.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/MailIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/PayPalIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUAClockAppFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUAClockAppFontColor.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenFontColor.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenHorizontalPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenHorizontalPosition.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenPosition.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenVerticalPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUALockScreenVerticalPosition.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUATranslations.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TUATranslations.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs.plist -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon-original.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/TranslationIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon@2x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/WebsiteIcon@3x.png -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ar.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/de.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/el.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/en.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/nl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/pl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/ru.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/sv.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/uk.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceBundles/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /_/Library/PreferenceLoader/Preferences/TimeUntilAlarmPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/_/Library/PreferenceLoader/Preferences/TimeUntilAlarmPrefs.plist -------------------------------------------------------------------------------- /com.ludvigeriksson.timeuntilalarm_1.1.12_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/com.ludvigeriksson.timeuntilalarm_1.1.12_iphoneos-arm.deb -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/control -------------------------------------------------------------------------------- /entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/entitlements.xml -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/Bitcoin.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmIcon24@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@2x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/TimeUntilAlarmLockScreenIcon@3x.png -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/TimeUntilAlarm/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/layout/Library/Application Support/TimeUntilAlarm/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /libcolorpicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/libcolorpicker.h -------------------------------------------------------------------------------- /obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/TimeUntilAlarm.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/TimeUntilAlarm.dylib -------------------------------------------------------------------------------- /obj/Tweak.xm.a0c8fa50.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/Tweak.xm.a0c8fa50.o -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/Bitcoin.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon@2x.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/TimeUntilAlarmLockScreenIcon@3x.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon@2x.png -------------------------------------------------------------------------------- /obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/obj/com.ludvigeriksson.timeuntilalarm.bundle/sv.lproj/TimeUntilAlarmLockScreenIcon@3x.png -------------------------------------------------------------------------------- /theos: -------------------------------------------------------------------------------- 1 | /opt/theos -------------------------------------------------------------------------------- /timeuntilalarmprefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Makefile -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/BitcoinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/BitcoinIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/BitcoinIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/BitcoinIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/BitcoinIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/BitcoinIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/CodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/CodeIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/CodeIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/CodeIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/CodeIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/CodeIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/Info.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/MailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/MailIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/MailIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/MailIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/MailIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/MailIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/PayPalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/PayPalIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/PayPalIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/PayPalIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/PayPalIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/PayPalIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TUAClockAppFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TUAClockAppFontColor.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TUALockScreenFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TUALockScreenFontColor.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TUALockScreenPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TUALockScreenPosition.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TUATranslations.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TUATranslations.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TimeUntilAlarmPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TimeUntilAlarmPrefs.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TimeUntilAlarmPrefsIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TranslationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TranslationIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TranslationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TranslationIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/TranslationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/TranslationIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/WebsiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/WebsiteIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/WebsiteIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/WebsiteIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/WebsiteIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/WebsiteIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ar.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ar.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ar.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ar.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ar.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ar.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ar.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ar.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/de.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/de.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/de.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/de.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/de.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/de.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/de.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/de.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/el.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/el.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/el.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/el.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/el.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/el.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/el.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/el.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/en.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/en.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/en.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/en.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/en.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/en.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/en.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/en.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/nl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/nl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/nl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/nl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/nl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/nl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/nl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/nl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/pl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/pl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/pl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/pl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/pl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/pl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/pl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/pl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ru.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ru.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ru.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ru.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ru.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ru.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/ru.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/ru.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/sv.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/sv.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/sv.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/sv.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/sv.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/sv.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/sv.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/sv.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/uk.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/uk.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/uk.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/uk.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/uk.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/uk.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/uk.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/uk.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hans.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hans.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hans.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hans.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hans.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hans.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hans.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hans.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hant.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hant.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hant.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hant.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hant.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hant.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/Resources/zh-Hant.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/Resources/zh-Hant.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/TimeUntilAlarmPrefs.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/TimeUntilAlarmPrefs.mm -------------------------------------------------------------------------------- /timeuntilalarmprefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/entry.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/.stamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/Bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/Bitcoin.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/BitcoinIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/CodeIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/Info.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/MailIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/PayPalIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUAClockAppFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUAClockAppFontColor.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenFontColor.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenFontColor.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenHorizontalPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenHorizontalPosition.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenPosition.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenVerticalPosition.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUALockScreenVerticalPosition.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUATranslations.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TUATranslations.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefs.plist -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TimeUntilAlarmPrefsIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon-original.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/TranslationIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon@2x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/WebsiteIcon@3x.png -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ar.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/de.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/el.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/en.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/nl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/pl.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/ru.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/sv.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/uk.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hans.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUAClockAppFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUAClockAppFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenFontColor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenFontColor.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenPosition.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TUALockScreenPosition.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TimeUntilAlarmPrefs.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.bundle/zh-Hant.lproj/TimeUntilAlarmPrefs.strings -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.01148866.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.01148866.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.05d7a221.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.05d7a221.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.0749ed5f.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.0749ed5f.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.161f6926.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.161f6926.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.1c3c8902.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.1c3c8902.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.246b8964.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.246b8964.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.5aad23d0.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.5aad23d0.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.5dbb0bde.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.5dbb0bde.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.6d0b6ea2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.6d0b6ea2.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.6f6963bb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.6f6963bb.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.7ba59eda.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.7ba59eda.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.8593e94b.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.8593e94b.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.ae5d16cc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.ae5d16cc.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.b1348ab7.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.b1348ab7.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.c2510756.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.c2510756.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.c3d6ad02.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.c3d6ad02.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.dd4ac0fa.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.dd4ac0fa.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.f46f5305.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.f46f5305.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.fcc63a68.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ludvigeriksson/TimeUntilAlarm/HEAD/timeuntilalarmprefs/obj/TimeUntilAlarmPrefs.mm.fcc63a68.o -------------------------------------------------------------------------------- /timeuntilalarmprefs/theos: -------------------------------------------------------------------------------- 1 | /opt/theos --------------------------------------------------------------------------------