LocalizedTimeAgo is a time ago framework written in Swift and localized in 42 languages. It uses translations from the popular Objective-C library DateTools.
Amharic, Arabic, Basque, Bulgarian, Catalan, Chinese (Simplified), Chinese (Traditional), Croatian, Czech, Danish, Dutch, English, Finnish, French, German, Greek, Gujarati, Hebrew, Hindi, Hungarian, Icelandic, Indonesian, Italian, Japanese, Korean, Latvian, Malay, Norwegian, Polish, Portuguese (Brazil), Portuguese (Portugal), Romanian, Russian, Slovak, Slovenian, Spanish, Swedish, Thai, Turkish, Ukranian, Vietnamese, Welsh
Note: LocalizedTimeAgo requires Swift 3 (and Xcode 8) or greater.
Targets using LocalizedTimeAgo must support embedded Swift frameworks.
Swift Package Manager is Apple's official package manager for Swift frameworks. To install with Swift Package Manager:
-
Add LocalizedTimeAgo to your Package.swift file:
import PackageDescription let package = Package( name: "MyAppTarget", dependencies: [ .Package(url: "https://github.com/toddkramer/LocalizedTimeAgo", majorVersion: 1, minor: 2) ] )
-
Run
swift build
. -
Generate Xcode project:
swift package generate-xcodeproj
Carthage is a decentralized dependency manager for Cocoa projects. To install LocalizedTimeAgo with Carthage:
-
Make sure Carthage is installed.
-
Add LocalizedTimeAgo to your Cartfile:
github "toddkramer/LocalizedTimeAgo" ~> 1.2.0
-
Run
carthage update
and add the appropriate framework.
CocoaPods is a centralized dependency manager for Cocoa projects. To install LocalizedTimeAgo with CocoaPods:
-
Make sure the latest version of CocoaPods is installed.
-
Add LocalizedTimeAgo to your Podfile:
use_frameworks! pod 'LocalizedTimeAgo', '~> 1.2.0'
-
Run
pod install
.