Skip to content

Instantly share code, notes, and snippets.

@guillaumealgis
Created December 7, 2017 12:21
Show Gist options
  • Save guillaumealgis/046da1de8d77c49ecd18c7b859eb0de1 to your computer and use it in GitHub Desktop.
Save guillaumealgis/046da1de8d77c49ecd18c7b859eb0de1 to your computer and use it in GitHub Desktop.
// rdar://35906830
import Foundation
var cal = Calendar.current
cal.locale = Locale(identifier: "fr_FR")
let df = DateComponentsFormatter()
df.calendar = cal
df.unitsStyle = .short
var dc = DateComponents()
dc.minute = 45
print(df.string(from: dc)!) // Expected "45 min", prints "45 mn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment