mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-30 20:22:54 +08:00
28 lines
958 B
Swift
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}"
|
|
|
|
}
|