mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-04-21 18:51:47 +08:00
58 lines
3.0 KiB
Swift
58 lines
3.0 KiB
Swift
//
|
|
// Constants.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 5/15/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum Constants {
|
|
|
|
enum URLs {
|
|
static let website = "http://www.githawk.com/"
|
|
static let blog = "http://blog.githawk.com/"
|
|
}
|
|
|
|
enum Strings {
|
|
static let all = NSLocalizedString("All", comment: "")
|
|
static let markRead = NSLocalizedString("Mark Read", comment: "")
|
|
static let unread = NSLocalizedString("Unread", comment: "")
|
|
static let ok = NSLocalizedString("OK", comment: "")
|
|
static let cancel = NSLocalizedString("Cancel", comment: "")
|
|
static let yes = NSLocalizedString("Yes", comment: "")
|
|
static let no = NSLocalizedString("No", comment: "")
|
|
static let signin = NSLocalizedString("Sign in", comment: "")
|
|
static let signout = NSLocalizedString("Sign out", comment: "")
|
|
static let open = NSLocalizedString("Open", comment: "")
|
|
static let close = NSLocalizedString("Close", comment: "")
|
|
static let closed = NSLocalizedString("Closed", comment: "")
|
|
static let reopen = NSLocalizedString("Reopen", 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 newIssue = NSLocalizedString("New Issue", comment: "")
|
|
static let bullet = "\u{2022}"
|
|
static let bulletHollow = "\u{25E6}"
|
|
static let moreOptions = NSLocalizedString("More options", comment: "")
|
|
static let search = NSLocalizedString("Search", comment: "")
|
|
static let searchGitHub = NSLocalizedString("Search GitHub", comment: "Used as a placeholder for the searchbar when searching for repositories.")
|
|
static let searchBookmarks = NSLocalizedString("Search Bookmarks", comment: "Used as a placeholder for the searchbar when searching within bookmarks.")
|
|
static let clearAll = NSLocalizedString("Clear All", comment: "")
|
|
static let delete = NSLocalizedString("Delete", comment: "")
|
|
static let inbox = NSLocalizedString("Inbox", comment: "")
|
|
static let upload = NSLocalizedString("Upload", comment: "")
|
|
static let pullRequest = NSLocalizedString("Pull Request", comment: "")
|
|
static let issue = NSLocalizedString("Issue", comment: "")
|
|
static let bookmark = NSLocalizedString("Bookmark", comment: "")
|
|
static let removeBookmark = NSLocalizedString("Remove Bookmark", comment: "")
|
|
static let bookmarks = NSLocalizedString("Bookmarks", comment: "")
|
|
static let labels = NSLocalizedString("Labels", comment: "")
|
|
static let milestone = NSLocalizedString("Milestone", comment: "")
|
|
static let assignees = NSLocalizedString("Assignees", comment: "")
|
|
static let reviewers = NSLocalizedString("Reviewers", comment: "")
|
|
}
|
|
}
|