- Fixed shop issue when showing ads. TC - 66 - TC 40 done. - added test ads on games. Intestial ad for ludo and reward ads for carrom - added error handling for karaoke listing - added error handling for audio books listing - fixed a bug where session expired message was show in dialog, and dialog was getting dismissed when clicked outside
49 lines
1.6 KiB
Swift
49 lines
1.6 KiB
Swift
//
|
|
// ConstantString.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 06/05/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
|
|
struct ConstantString{
|
|
static let dollar = "$"
|
|
|
|
static let passRequirement = "- Be at least 8 characters in length. \n- Contain both upper and lowercase alphabetic characters (e.g. A-Z, a-z). \n- Have at least one numerical character (e.g. 0-9). \n- Have at least one special character (e.g. ~!@#$%^&*()_-+=)."
|
|
|
|
static let unRecognised = "Unrecognised error"
|
|
|
|
static let noInternet = "Make sure you are connected to the internet!"
|
|
|
|
static let minAge = "Minimum age requirement is 18 or above"
|
|
|
|
static let genderSel = "Please select Gender."
|
|
static let shortPass = "Password is too short."
|
|
static let shortUsername = "Username is too short."
|
|
static let shortName = "Name is too short."
|
|
|
|
static let required = "Required."
|
|
static let enterUserName = "Enter your username."
|
|
static let enterName = "Enter your Name."
|
|
static let enterPass = "Enter your password"
|
|
static let userNameVerify = "Verifying Username"
|
|
static let intrest = "Please select intrest"
|
|
static let avatar = "Please select avatar"
|
|
static let dob = "Please select DOB."
|
|
static let registerUser = "Please wait registering user."
|
|
|
|
static let userType = "Please select user type."
|
|
|
|
static let error = "Error"
|
|
|
|
static let rupeeSign = "₹"
|
|
|
|
static let sync = "Syncing..."
|
|
|
|
static let errorTime: Double = 1.6
|
|
}
|
|
}
|