22 lines
787 B
Swift
22 lines
787 B
Swift
//
|
|
// Strings.swift
|
|
// wallet
|
|
//
|
|
// Created by Jason on 8/23/20.
|
|
// Copyright © 2020 Jason. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension String {
|
|
|
|
public static let defaultError = NSLocalizedString("DEFAULT_ERROR", comment: "A fallback error")
|
|
public static let request = NSLocalizedString("REQUEST", comment: "Request")
|
|
public static let note = NSLocalizedString("NOTE", comment: "Note")
|
|
public static let next = NSLocalizedString("NEXT", comment: "Next")
|
|
public static let createQR = NSLocalizedString("CREATE_QR", comment: "Create a QR code")
|
|
public static let forLabel = NSLocalizedString("FOR", comment: "For")
|
|
public static let requestNotePlaceholder = NSLocalizedString("NOTE_PLACEHOLDER", comment: "Placeholder for the note")
|
|
|
|
}
|