blob: 6e3577cc3b54ddc2efc0f5c29316825e3476bff5 (
plain)
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
|
//
// AppProperties.swift
// SmartDeviceLink-iOS
//
// Copyright © 2017 smartdevicelink. All rights reserved.
//
import Foundation
struct AppConstants {
static let sdlAppName = "Hello SDL Swift"
static let sdlShortAppName = "SDL Swift"
static let sdl = "SDL"
static let testApp = "Test App"
static let appIconName = "AppIcon"
static let buttonText = "Press"
static let sdlAppID = "9998"
static let PointingSoftButtonArtworkName = "PointingSoftButtonIcon"
static let mainArtwork = "sdl_logo_green"
static let menuNameOnlyChoice = "Only Choice"
static let pushButtonText = "You pushed the button!"
static let speakAppNameText = "Speak App Name"
static let performInteractionText = "Perform Interaction"
static let initialTextInteraction = "Choose the only one! You have 5 seconds..."
static let doItText = "Do It"
static let tooLateText = "Too Late"
// TTS Text Chunks
static let chooseOneTTS = "Choose One"
static let goodJobTTS = "Good Job"
static let missedItTTS = "You Missed It"
static let sdlTTS = "S D L Swift Example App"
}
|