﻿using UnityEngine;

[CreateAssetMenu(fileName = "EC_Lang_", menuName = "EasyCoppa/Add Translation")]
public class EC_Lang : ScriptableObject {

    //Age check dialog
    public string EC_COPPA_TITLE = "Notice";
    public string EC_COPPA_DESCRIPTION = "Please enter your date of birth";    

    //Default terms dialog
    public string EC_DEFAULT_TITLE = "Terms of Use";
    public string EC_DEFAULT_DESCRIPTION = "By using %APP_NAME% you accept %COMPANY_NAME%'s Terms of Service and Privacy Policy";

    //Rejection dialog
    public string EC_REJECT_TITLE = "Notice";
    public string EC_REJECT_DESCRIPTION = "There has been an issue when setting up the game data. Please try again later. For more information please contact %SUPPORT_MAIL%";
    public string EC_REJECT_ACCEPT = "Accept";

    //Common strings
    public string EC_COMMON_TERMS = "Terms of Service";
    public string EC_COMMON_PRIVACY = "Privacy Policy";
    public string EC_COMMON_ACCEPT = "I have read and accept the terms and conditions";

}
