forked from iSoron/uhabits
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tests to commonTest; convert some classes from Swift to Kotlin
- Loading branch information
Showing
20 changed files
with
247 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
core/src/iosMain/kotlin/org/isoron/platform/time/IosDates.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright (C) 2016-2019 Álinson Santos Xavier <[email protected]> | ||
* | ||
* This file is part of Loop Habit Tracker. | ||
* | ||
* Loop Habit Tracker is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation, either version 3 of the License, or (at your | ||
* option) any later version. | ||
* | ||
* Loop Habit Tracker is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.isoron.platform.time | ||
|
||
import platform.Foundation.* | ||
|
||
fun LocalDate.toNsDate(): NSDate { | ||
val calendar = NSCalendar.calendarWithIdentifier(NSCalendarIdentifierGregorian)!! | ||
val dc = NSDateComponents() | ||
dc.year = year.toLong() | ||
dc.month = month.toLong() | ||
dc.day = day.toLong() | ||
dc.hour = 13 | ||
dc.minute = 0 | ||
return calendar.dateFromComponents(dc)!! | ||
} | ||
|
||
class IosLocalDateFormatter(val locale: String) : LocalDateFormatter { | ||
|
||
constructor() : this(NSLocale.preferredLanguages[0] as String) | ||
|
||
private val fmt = NSDateFormatter() | ||
|
||
init { | ||
fmt.setLocale(NSLocale.localeWithLocaleIdentifier(locale)) | ||
} | ||
|
||
override fun shortWeekdayName(date: LocalDate): String { | ||
fmt.dateFormat = "EEE" | ||
return fmt.stringFromDate(date.toNsDate()) | ||
} | ||
|
||
override fun shortMonthName(date: LocalDate): String { | ||
fmt.dateFormat = "MMM" | ||
return fmt.stringFromDate(date.toNsDate()) | ||
} | ||
|
||
} |
67 changes: 67 additions & 0 deletions
67
core/src/iosMain/kotlin/org/isoron/uhabits/IosLocaleHelper.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Copyright (C) 2016-2019 Álinson Santos Xavier <[email protected]> | ||
* | ||
* This file is part of Loop Habit Tracker. | ||
* | ||
* Loop Habit Tracker is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by the | ||
* Free Software Foundation, either version 3 of the License, or (at your | ||
* option) any later version. | ||
* | ||
* Loop Habit Tracker is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along | ||
* with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
@file:Suppress("UNCHECKED_CAST") | ||
|
||
package org.isoron.uhabits | ||
|
||
import org.isoron.platform.io.* | ||
import org.isoron.uhabits.i18n.* | ||
import platform.Foundation.* | ||
|
||
class IosLocaleHelper(private val log: Log) : LocaleHelper { | ||
override fun getStringsForCurrentLocale(): Strings { | ||
val pref = NSLocale.preferredLanguages as List<String> | ||
val lang = if (pref.isEmpty()) "en-US" else pref[0] | ||
log.info("IosLocaleHelper", lang) | ||
return when { | ||
lang.startsWith("ar") -> StringsArabic() | ||
lang.startsWith("ca") -> StringsCatalan() | ||
lang.startsWith("cs") -> StringsCzech() | ||
lang.startsWith("da") -> StringsDanish() | ||
lang.startsWith("de") -> StringsGerman() | ||
lang.startsWith("el") -> StringsGreek() | ||
lang.startsWith("es") -> StringsSpanish() | ||
lang.startsWith("fi") -> StringsFinnish() | ||
lang.startsWith("fr") -> StringsFrench() | ||
lang.startsWith("he") -> StringsHebrew() | ||
lang.startsWith("hi") -> StringsHindi() | ||
lang.startsWith("hr") -> StringsCroatian() | ||
lang.startsWith("hu") -> StringsHungarian() | ||
lang.startsWith("id") -> StringsIndonesian() | ||
lang.startsWith("it") -> StringsItalian() | ||
lang.startsWith("ja") -> StringsJapanese() | ||
lang.startsWith("ko") -> StringsKorean() | ||
lang.startsWith("nb") -> StringsNorwegian() | ||
lang.startsWith("nl") -> StringsDutch() | ||
lang.startsWith("pl") -> StringsPolish() | ||
lang.startsWith("pt-BR") -> StringsPortugueseBR() | ||
lang.startsWith("pt") -> StringsPortuguesePT() | ||
lang.startsWith("ro") -> StringsRomanian() | ||
lang.startsWith("ru") -> StringsRussian() | ||
lang.startsWith("sk") -> StringsSlovak() | ||
lang.startsWith("sv") -> StringsSwedish() | ||
lang.startsWith("tr") -> StringsTurkish() | ||
lang.startsWith("vi") -> StringsVietnamese() | ||
lang.startsWith("zh-Hans") -> StringsChineseCN() | ||
lang.startsWith("zh-Hant") -> StringsChineseTW() | ||
else -> Strings() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.