This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathConstants.swift
59 lines (56 loc) · 3.33 KB
/
Constants.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//
// Constants.swift
// Freetime
//
// Created by Ryan Nystrom on 5/15/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import Foundation
enum Constants {
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 unlock = NSLocalizedString("Unlock", comment: "")
static let lock = NSLocalizedString("Lock", 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: "")
static let clear = NSLocalizedString("Clear", comment: "")
static let preview = NSLocalizedString("Preview", comment: "")
static let overview = NSLocalizedString("Overview", comment: "")
static let edit = NSLocalizedString("Edit", comment: "")
static let save = NSLocalizedString("Save", comment: "")
}
}