Files
GitHawk/Classes/Views/Strings.swift
2017-07-31 07:37:48 -06:00

28 lines
958 B
Swift

//
// Strings.swift
// Freetime
//
// Created by Ryan Nystrom on 5/15/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import Foundation
enum Strings {
static let all = NSLocalizedString("All", comment: "")
static let unread = NSLocalizedString("Unread", comment: "")
static let ok = NSLocalizedString("OK", comment: "")
static let cancel = NSLocalizedString("Cancel", comment: "")
static let signout = NSLocalizedString("Sign out", comment: "")
static let open = NSLocalizedString("Open", comment: "")
static let closed = NSLocalizedString("Closed", comment: "")
static let reopened = NSLocalizedString("Reopened", comment: "")
static let unknown = NSLocalizedString("Unknown", comment: "")
static let merged = NSLocalizedString("Merged", comment: "")
static let locked = NSLocalizedString("Locked", comment: "")
static let bullet = "\u{2022}"
static let bulletHollow = "\u{25E6}"
}