`,append:`
`},css:{form:"transparent",display:"flex",append:`
audio {
position: absolute;
top: -1000px;
opacity: 0;
}
.status-indicator {
width: 50vw;
height: 50vw;
max-width: 200px;
max-height: 200px;
border-radius: 50%;
background-color: #ddd;
margin: -100px auto 1rem;
transition: background-color 0.3s ease;
}
.status-indicator.listening {
background-color: var(--frtnd-spinner-color);
animation: pulse 1.5s infinite;
}
.status-indicator.speaking {
background-color: var(--frtnd-spinner-ring);
animation: pulse 1.5s infinite;
}
.status-indicator.processing {
background-color: transparent;
border-bottom: 2px solid var(--frtnd-spinner-ring);
border-left: 2px solid var(--frtnd-spinner-ring);
border-radius: 100%;
border-right: 2px solid var(--frtnd-spinner-ring);
border-top: 2px solid var(--frtnd-spinner-color);
box-sizing: border-box;
font: inherit;
animation: rot 1.2s infinite cubic-bezier(.23,1.2,.32,1);
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.2); }
100% { transform: scale(1); }
}
@keyframes rot {
from { transform: rotate(0) }
to { transform: rotate(359deg) }
}
.control-btn {
background-color: #646cff;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
font-size: 1rem;
margin: 1rem 0;
transition: background-color 0.3s ease;
display: none;
}
.control-btn:hover {
background-color: #535bf2;
}
.text-input-container {
display: none /*flex*/;
gap: 0.5rem;
margin: 1rem 0;
}
.text-input {
flex: 1;
padding: 0.6em 1.2em;
font-size: 1em;
font-family: inherit;
background-color: #1a1a1a;
border: 1px solid #444;
border-radius: 8px;
color: white;
transition: border-color 0.25s;
}
.text-input:focus {
outline: none;
border-color: #646cff;
}
.send-btn {
margin: 0;
padding: 0.6em 1.2em;
}
.transcript {
position: absolute;
left: 0;
margin-top: 2rem;
padding: 0 2rem;
width: calc(100% - 4rem);
font-size: 1rem;
font-weight: 600;
text-align: center;
text-transform: uppercase;
}`}})}attributeChangedCallback(name,oldValue,newValue){(this.force||null!==oldValue&&oldValue!==newValue)&&this.connectedCallback()}connectedCallback(){var attributes=this.getAttributeNames(),content=this.html.content.cloneNode(!0);content.querySelector.bind(content),content.querySelectorAll.bind(content);this.shadowRoot.replaceChildren(this.css),attributes.forEach(name=>{"context"===name?this.context=this.getAttribute(name):this.removeAttribute(name)}),this.shadowRoot.appendChild(content),FRTND.component.load(this)}show(){}hide(){}drop(){}focus(){}view(){}close(context=0){FRTND.component.close(this),this.socket.disconnect(),this.stopListening(),this.activated=!1}load(admin=!1){this.setupUI(admin),this.setupUX(admin)}setupUI(admin=0){this.isListening=!1,this.isSpeaking=!1,this.$("nav").onclick=()=>this.expand("assistant"),this.startBtn=this.$("#startBtn"),this.statusIndicator=this.$(".status-indicator"),this.textInput=this.$("#textInput"),this.sendBtn=this.$("#sendBtn"),this.audio=this.$("audio"),this.startBtn.addEventListener("click",()=>{this.isListening?this.stopListening(!1):this.startListening()}),this.sendBtn.addEventListener("click",()=>{this.handleTextInput()}),this.textInput.addEventListener("keypress",e=>{"Enter"===e.key&&this.handleTextInput()})}setupUX(admin=0){this.socket?(this.instructions="Please assist the user.",this.voice=new PCMPlayer({encoding:"16bitInt",channels:1,sampleRate:24e3,flushingTime:2e3,component:this}),this.socket.on("connect",()=>{console.log("Websocket connected"),this.socket.emit("realtime-session",this.instructions)}),this.socket.on("voice-reply",data=>{data=(base64=>{var binaryString=atob(base64),len=binaryString.length,bytes=new Uint8Array(len);for(let i=0;i{console.log("event",data),this.close()}),this.socket.on("disconnect",()=>{console.log("Disconnected"),this.close()})):(console.log("Websocket not ready"),setTimeout(()=>this.setupUX(),1e3))}async init(){this.activated=!0,this.socket?.disconnected&&this.socket.connect(),setTimeout(()=>this.startListening(),1500)}async startListening(){if(this.activated)try{this.isSpeaking=!1,this.isListening=!0,this.mediaStream=null,this.sampleRate=24e3,this.stereo=!1,this.context=new AudioContext,this.recorder=null,this.recordingLength=0,this.leftChannel=[],this.rightChannel=[],this.blob=null,this.soundDetected=!1,this.minVoiceDecibels=-45,this.minPromptDuration=5e3,this.maxPromptDuration=15e3,this.maxPromptSilenceDuration=1e3;var stream=await navigator.mediaDevices.getUserMedia({audio:!0});if(!stream.active)throw"TODO: Handle previously disallowed access to microphone...";{console.log("User consented"),this.mediaStream=this.context.createMediaStreamSource(stream);this.context.createScriptProcessor?this.recorder=this.context.createScriptProcessor(2048,2,2):this.recorder=this.context.createJavaScriptNode(2048,2,2),this.recorder.onaudioprocess=mic=>{this.leftChannel.push(new Float32Array(mic.inputBuffer.getChannelData(0))),this.rightChannel.push(new Float32Array(mic.inputBuffer.getChannelData(1))),this.recordingLength+=2048};let analyser=this.context.createAnalyser(),bufferLength=(analyser.minDecibels=this.minVoiceDecibels,analyser.frequencyBinCount),domainData=new Uint8Array(bufferLength),startTime=(this.mediaStream.connect(analyser),this.mediaStream.connect(this.recorder),this.recorder.connect(this.context.destination),(new Date).getTime()),currentTime=(new Date).getTime(),lastDetectedTime=(new Date).getTime(),detectSound=()=>{if((currentTime=(new Date).getTime())>startTime+this.maxPromptDuration)console.log("timeout"),this.stopListening();else if(currentTime>lastDetectedTime+this.maxPromptSilenceDuration&¤tTime>startTime+this.minPromptDuration)console.log("silence"),this.stopListening();else{analyser.getByteFrequencyData(domainData);for(let i=0;i{track.stop()}),this.context.close(),process)&&this.soundDetected?this.processRecording(this.leftChannel,this.rightChannel,this.recordingLength,this.sampleRate,this.stereo):this.updateUI())}processRecording(leftChannel,rightChannel,recordingLength,sampleRate,inStereo){this.statusIndicator.classList.add("processing"),this.$("button[commit]").disabled=!0,this.$("button[commit]").textContent=FRTND.i18n.assistant.dialog.cta.wait;var flattenArray=(channelBuffer,bufferSize)=>{for(var result=new Float32Array(bufferSize),offset=0,i=0;i{for(var i=0;i{for(var length=leftBuff.length+rightBuff.length,result=new Float32Array(length),inputIndex=0,index=0;index{let binary="";var bytes=new Uint8Array(arrayBuffer);for(let i=0;i{this.isListening?this.stopListening(!0):this.startListening()}),FRTND.component.open(this,fromMenu)}});
;FRTND.i18n={"locales":[{"text":"en","description":"English - American","locale":"en_US","currency":"USD","enabled":true,"default":true},{"text":"es","description":"Spanish","locale":"es_ES","currency":"EUR","enabled":false},{"text":"es_PR","description":"Spanish - Puerto Rico","locale":"es_PR","currency":"USD","enabled":true},{"text":"fr","description":"French","locale":"fr_FR","currency":"EUR","enabled":false},{"text":"de","description":"German","locale":"de_DE","currency":"EUR","enabled":false},{"text":"it","description":"Italian","locale":"it_IT","currency":"EUR","enabled":false},{"text":"ja","description":"Japanese","locale":"ja_JP","currency":"JPY","enabled":false},{"text":"zh","description":"Chinese","locale":"zh_CN","currency":"CNY","enabled":false},{"text":"pt","description":"Portuguese","locale":"pt_BR","currency":"BRL","enabled":false},{"text":"ru","description":"Russian","locale":"ru_RU","currency":"RUB","enabled":false},{"text":"ar","description":"Arabic","locale":"ar_SA","currency":"SAR","enabled":false},{"text":"hi","description":"Hindi","locale":"hi_IN","currency":"INR","enabled":false},{"text":"tr","description":"Turkish","locale":"tr_TR","currency":"TRY","enabled":false},{"text":"nl","description":"Dutch","locale":"nl_NL","currency":"EUR","enabled":false},{"text":"sv","description":"Swedish","locale":"sv_SE","currency":"EUR","enabled":false},{"text":"no","description":"Norwegian","locale":"no_NO","currency":"EUR","enabled":false},{"text":"da","description":"Danish","locale":"da_DK","currency":"EUR","enabled":false},{"text":"fi","description":"Finnish","locale":"fi_FI","currency":"EUR","enabled":false},{"text":"pl","description":"Polish","locale":"pl_PL","currency":"EUR","enabled":false},{"text":"cs","description":"Czech","locale":"cs_CZ","currency":"EUR","enabled":false},{"text":"ro","description":"Romanian","locale":"ro_RO","currency":"EUR","enabled":false},{"text":"hu","description":"Hungarian","locale":"hu_HU","currency":"EUR","enabled":false},{"text":"bg","description":"Bulgarian","locale":"bg_BG","currency":"EUR","enabled":false},{"text":"el","description":"Greek","locale":"el_GR","currency":"EUR","enabled":false},{"text":"he","description":"Hebrew","locale":"he_IL","currency":"ILS","enabled":false},{"text":"id","description":"Indonesian","locale":"id_ID","currency":"IDR","enabled":false},{"text":"ms","description":"Malay","locale":"ms_MY","currency":"MYR","enabled":false},{"text":"th","description":"Thai","locale":"th_TH","currency":"THB","enabled":false},{"text":"vi","description":"Vietnamese","locale":"vi_VN","currency":"VND","enabled":false},{"text":"ko","description":"Korean","locale":"ko_KR","currency":"KRW","enabled":false}],"common":{"terms":{"login":"Login","loginSkipped":"Later","logout":"Logout","loginDesc":"Update Your Email or Password","add":"Add","edit":"Edit","update":"Update","delete":"Delete","deleteMe":"Delete Me","del":"Del","kill":"Delete","new":"New","email":"Email","sms":"SMS","emailpass":"Email ✕ Password","emailpass2":"Email ✕ Password ✕ 2FA","unknown":"Unknown","day":"Day","days":"Days","week":"Week","weeks":"Weeks","month":"Month","months":"Months","quarter":"Quarter","quarters":"Quarters","year":"Year","years":"Years","hour":"Hour","hours":"Hours","minute":"Minute","minutes":"Minutes","second":"Second","seconds":"Seconds","daysLeft":"Days Left","irreversable":"This is Irreversable!","confirmDeletion":"Yes, Delete It","confirmAccountDeletion":"Yes, Delete Me","areYouSure":"Are You Sure?","off":"Off","daily":"Daily","weekly":"Weekly","monthly":"Monthly","quarterly":"Quarterly","yearly":"Yearly","every":"Every","everyDay":"Every Day","everyWeek":"Every Week","everyMonth":"Every Month","everyQuarter":"Every Quarter","everyYear":"Every Year","every_day":"Every %s Days","every_week":"Every %s Weeks","every_month":"Every %s Months","every_quarter":"Every %s Quarters","every_year":"Every %s Years","from":"From","to":"To","today":"Today","now":"Now","default":"Default","cash":"Cash","warning":"WARNING","my":"My","me":"Me","the":"The","your":"Your","age":"%s %s of Activity","loading":"loading...","logo":"Calendollar™ Logo","updated":"Last Updated","soldOut":"Sold Out","acked":"Saving...","logoAlt":"Calendollar™ Logo","comingSoon":"Coming Soon","appstoreDownload":"Download Calendollar on the App Store","playstoreDownload":"Download Calendollar on Google Play","continue":"Continue","loggingIn":"Logging In...","loggingOut":"Logging Out...","skip":"Skip","forgot":"I Forgot","checkEmail":"Please check your email for further instructions.","customize":"Customize your %s experience...","income":"Income","expense":"Expense","customAccount":"Custom Account","accept":"I Accept","locale":"Locale","profile":"Profile","localizing":"Localizing...","disclosures":"Disclosures","disclosuresDesc":"Privacy & Terms of Service","dropped":"Version %s Dropped!"},"errors":{"general":"An error occurred. Please try again.","youtube":"An error occurred during video playback:"},"alerts":{"install":{"title":"Install","body":"Tap options and select Add to Home Screen It's that easy!"},"offline":{"warning":{"title":"Device Offline","body":"Please check your network connection.","footer":"","cta":""}},"pending":{"envelope-o":{"title":"Verification Pending","body":"Please check your email to verify your account.","footer":"","cta":""}},"locked":{"lock":{"title":"Timeout","body":"You've been logged out due to inactivity!","footer":"We %sCARE%s about your %sPRIVACY%s","cta":"Login"}},"expired":{"unlink":{"title":"Sorry","body":"This link has expired.","footer":"","cta":"Continue"}},"disabled":{"lock":{"title":"Account Locked","body":"Please check your email for more information.","footer":"","cta":""}},"notFound":{"":{"title":"Oops...","body":"Something went wrong.","footer":"","cta":"Start Over"}}},"forms":{"validation":{"password":"Must Contain 1 Of The Following: ! @ _ +","email":"Invalid Email Address","match":"%ss Do NOT Match","length":"Must Be Between %s Characters","maxlength":"Max %s Characters"}}},"auth":{"terms":{"verify":"A verification code was sent to your email.","reset":"Account recovery successful.","contactingProvider":"Waiting For %s...","signInWith":"Sign in with %s","signUpWith":"Sign up with %s"},"errors":{},"forms":{"signin":{"fields":{"email":{"text":"Email Address","required":"Enter Your Email Address"}},"cta":"Continue With Email","footer":{"pretext":"Don't have an account","cta":"Sign-Up"}},"password":{"fields":{"email":{"text":"Email Address","required":"Enter Your Email Address"},"password":{"password":"Password","required":"Enter Your Password","help":true}},"cta":"Login","footer":{"pretext":"Don't have an account","cta":"Sign-Up"}},"signup":{"fields":{"email":{"text":"Email Address","required":"Enter Your New Email Address"},"password":{"password":"Password","required":"Enter Your Password"},"password-match":{"password":"Confirm Password","required":"Re-Enter Your New Password"},"tos":{"checkbox":"I accept Calendollar™ Terms","required":"You Must Accept These Terms"}},"cta":"Continue With Email","footer":{"pretext":"Already have an account","cta":"Login"}},"verify":{"fields":{"recovery":{"hidden":true},"code":{"text":"Verification Code","required":"Verification Code Required"}},"cta":"Verify"},"forgot":{"fields":{"email":{"text":"Email Address","required":"Enter Your Email Address"}},"cta":"Recover"},"recover":{"fields":{"recovery":{"hidden":true},"code":{"hidden":true},"password":{"password":"Password","required":"Enter Your New Password"},"password-match":{"password":"Confirm Password","required":"Re-Enter Your New Password"}},"cta":"Reset"}}},"user":{"terms":{"history":"Account & History","myAccount":"My Account","me":"Me","localize":"Localize","locale":"Select Your Preferred Language"},"errors":{},"controls":[{"label":" Profile","context":{"user":true},"expand":{"profile":true},"options":[]}],"dialog":{"deleteMe":"Proceeding further will delete your account and all associated data including your purchase history.","deleteMeConfirm":"If you wish to end your relationship with %s, please confirm this acction by typing %s DELETE ME %s below:","deleteMeConfirmPassword":"If you wish to end your relationship with %s, please confirm this acction by entering your password below:"},"forms":{"delete":{"fields":{"password":{"password":"Password","required":"Enter Your Password","ignore":true}},"edit":"Delete"}}},"admin":{"forms":{"events":{"header":{"add":{"heading":"New Event","subheading":"Add Your New Event's Details Below...","detail":""},"edit":{"heading":"Update Event","subheading":"Edit This Event's Details Below...","detail":""}},"fields":{"flyer":{"image":"Event Flyer","required":""},"name":{"text":"Event Name","required":"Please Enter A Name"},"venue":{"text":"Venue Name","required":"Please Enter A Venue or City"},"location":{"text":"Location","required":"Please Enter A Location: City, State"},"start":{"date":"Start Date","required":"Select Start Date"},"end":{"date":"End Date","required":"Select End Date"}},"add":"Create","edit":"Save"}}},"mgr":{"terms":{"history":"Account & History","myAccount":"My Account","me":"Me","localize":"Localize","locale":"Select Your Preferred Language","customize":"Control the Calendollar™ experience..."},"errors":{},"controls":[{"label":"Admin Calendollar™","context":{"admin":true},"expand":{"settings":true},"options":[{"id":{"events":true},"class":"","title":"Events","description":"Add, edit, delete events...","info":"","task":"list"},{"id":{"playlist":true},"class":"tbd","title":"Playlist","description":"Configure your playlist here...","info":"","task":"list"}]}],"dialog":{"deleteMe":"Proceeding further will delete your account and all associated data including your purchase history.","deleteMeConfirm":"If you wish to end your relationship with %s, please confirm this acction by typing %s DELETE ME %s below:","deleteMeConfirmPassword":"If you wish to end your relationship with %s, please confirm this acction by entering your password below:"},"forms":{"events":{"task":{"add":{"heading":"New Event","subheading":"Add The Event's Details Below...","detail":"","cta":"Create Event"},"edit":{"heading":"Update Event","subheading":"Edit This Event's Details Below...","detail":"","cta":"Update Event"}},"fields":{"flyer":{"image":"Event Flyer","required":""},"name":{"text":"Event Name","required":"Please Enter A Name"},"venue":{"text":"Venue Name","required":"Please Enter A Venue or City"},"location":{"text":"Location","required":"Please Enter A Location: City, State"},"start":{"date":"Start Date","required":"Select Start Date"},"end":{"date":"End Date","required":"Select End Date"}}},"delete":{"fields":{"password":{"password":"Password","required":"Enter Your Password","ignore":true}},"edit":"Delete"}}},"assistant":{"terms":{},"errors":{"dictation":"Please enable dictation on this device to use this feature.","micSilenced":"We're you speaking? Try again or check your microphone's volume.","micDisabled":"Access to your microphone is required to use this feature!","type":{"start":"Error starting recognition:","process":"Speech recognition error:"}},"prompts":["What would you like to know about your forecast?"],"dialog":{"heading":"CPAi","subheading":"BETA","description":"Meet your Personal Assistant. You can ask anything about your forecast such as when should you make a purchase, take a vacation or how you can increase savings.","cta":{"start":"Ask A Question","stop":"Cancel","disabled":"Responding","wait":"One Momment..."}}},"calendar":{"terms":{"thisDay":"this day","afterThisDay":"and thereafter","span":"over the next","end":"from today","year":"Year","years":"Years","day":"Day","days":"Days","event":"Event","events":"Events","account":"Account","balance":"Balance","accounts":"Accounts","balances":"Balances","budgeted":"Budgeted","lastKnownBalance":"Last Known Balance","currentBalance":"Current Balance","availableCredit":"Available Credit","projectedCredit":"Projected Credit","income":"Expected Income","expenses":"Planned Expenses","potential":"Potential NET","spendable":"Spending Potential","netspendable":"NET Spending Potential","available":"Available Funds","projected":"Projected","schedule":"Event Schedule","scheduled":"Scheduled Events","pending":"Pending Events","norepeat":"Does Not Repeat","defaultAccount":"Default Account","dayAway":"%s Day Away","daysAway":"%s Days Away","excluded":"Account exluded from your Spending Potential","protected":"Balance Protection Enabled","overdraftRisk":"Overdraft Risk","overdraftRiskDesc1":"A Money Event on","overdraftRiskDesc2":"may send this account into overdraft!","balanceRefresh":"Retrieving Balances","earliest":"Earliest Pending Event","onlythis":"Just The Event Scheduled For","thisandfuture":"Starting From","connection":"Connected Institution","growth":"Projected Growth","reduction":"Projected Reduction","pausedevent":"Event Paused","pausedaccount":"Account Disabled","removedaccount":"Account Deleted","allEvents":"All Money Events","forecasting":"Predicting Your Future...","timeline":"Timeline","time":"Time","line":"Line","limit":"Credit Limit","newEvent":"NEW EVENT"},"errors":{},"controls":[{"label":"Money Events","detail":"income & expense schedule","context":{"event":true},"expand":{"manage":true}},{"label":"Bank Accounts","detail":"The forecast starts here","context":{"account":true},"expand":{"manage":true}},{"label":"My Forecast","detail":"income & expense schedule","close":true}],"profile":[{"class":"","title":"Timeline","description":"Set Your Forecast Window","expand":{"timeline":true}}],"dialog":{"event":{"none":"You don't have any Money Events planned for this day...","none2":"You don't have any Money Events...","list":"All Money Events scheduled below have been factored into your Spending Potential.","manyinactive":"Several Money Events scheduled below have been excluded form your forecast.","oneinactive":"A Money Event scheduled below has been excluded form your forecast.","empty":"Money Events expected to occur on this day will be displayed below when scheduled.","empty2":"All Money Events expected to occur will be displayed below when scheduled.","new":"This Money Event will be used to help calculate your future Spending Potential.","review":"This Money Event is being used to calculate your Spending Potential.","paused":"This Money Event is paused and has been excluded from your Forecast.","delete":"The following Money Event will be removed from your Forecast.","loss":"You plan to spend this amount on","net":"You're projected to NET this amount after","gain":"You expect to earn this amount via","available":"You're projected to have this available to spend on","noaccount":"The Account used for this Event was deleted!","reenable":"You should delete the Event or change it's Account to reuse it in your Forecast.","disabled":"This event is paused. Re-enable to include in your Forecast.","blocked":"This event is paused because the account has been disabled. Enable the account or update the event to include this event in your Forecast.","repair":"This event is paused because it's account has been deleted. Update the event's account to include this event in your Forecast.","wrapup":"Timeline projections if all of your Money Events execute as scheduled."},"account":{"add":"Add Account","list":"Your forecast begins today with any funds you currently have available...","generic":"This is your Default Account and should be used when you are unable to connect your Bank. It's balance will auto-update after a scheduled event.","custom":"This is a Custom Account and should be used when you are unable to connect your Bank. It's balance will auto-update after a scheduled event.","delete":"This action will remove your account from Calendollar™. All Money Events associated with this account will be paused.","connected":"This account is connected to Calendollar™. It's balance will be refreshed in 24 hours.","protected":"Balance Protection: Your Spending Potential will be reduced by the amount specified, helping you to maintain a healthy balance.","excluded":"† Investment & Loan account balances are exluded from being factored into your Spending Potential.","projected":"Your Spending Potential for this day will adjust automatically with your Money Events.","growth":"This account is projected to NET this amount after","credit":"This account's credit limit is projected to rise to this amount after","reduction":"This account's balance owed is projected to fall to this amount after","nogrowth":"This account does not have any scheduled Money Events.","getConnect":"now to seamlessly connect to your Accounts and begin automating your forecast!","tryConnect":"Connect Your First Bank Account","whyConnect":"to start automating your available funds.","errorConnecting":"We're unable to communicate with your Bank. You can resolve this by attempting to Reconnect below or by trying again later.","disabled":"This account has been disabled. Enable the account to include it in your Forecast.","addCustom":"Custom Account"},"timeline":{"description":"This setting changes how far out we will forecast your Event Schedule. You can specify a value between 1 and 5 years."}},"forms":{"event":{"fields":{"id":{"number":"id","default":0,"hidden":true},"start":{"date":"Start","min":1,"max":365,"required":"Select A New Start Date","hidden":false},"title":{"text":"Event Name","required":"Required"},"type":{"select":{"debit":"Expense","credit":"Income"},"label":"Type","default":false},"source":{"select":{},"label":"Account","default":"Default"},"amount":{"number":"Amount","required":"Must Be Greater Than 0","min":1,"max":9999999999,"default":1},"recurring":{"select":{"all":"All Events","this":"This Event ONLY","future":"This + Future Events"},"label":"This Is A Recurring Event","hidden":true,"before":"Apply To","toggle":{"frequency":true,"interval":true}},"frequency":{"select":{"off":"Off","daily":"Daily","weekly":"Weekly","monthly":"Monthly","quarterly":"Quarterly","yearly":"Yearly"},"label":"Repeat","toggle":{"interval":true},"hidden":true},"interval":{"select":{"1":1,"2":2,"3":3,"4":4,"5":5,"6":6},"label":"Every","default":1,"hidden":true}},"add":"Add New Event","save":"Schedule Event","delete":"Delete","edit":"Edit","update":"Update"},"account":{"fields":{"id":{"text":"id","default":0,"hidden":true},"nickname":{"text":"Nickname","required":"Required","hidden":true,"default":"Custom Account"},"balance":{"number":"Available Funds (Cash or Other Sources...)","required":"Required","min":0,"default":1234,"hidden":true},"protect":{"number":"Balance Protection","required":"Required","min":0,"default":0,"hidden":true},"related":{"select":{"this":"This Account Only","all":"All Accounts"},"label":"This Is A Mulit-Account Connection","hidden":true,"before":""},"link":{"text":"","default":"","hidden":true}},"connect":"Connect Account","save":"Save Account","delete":"Delete","edit":"Edit","update":"Update","fix":"Reconnect"},"timeline":{"fields":{"length":{"number":"Years","required":"Between 1 - 5","min":1,"max":5,"default":1}},"add":"Add Event","save":"Save","delete":"Delete","edit":"Edit","update":"Update"}}},"legal":{"documents":{"":{"title":"Privacy & Terms","modified":"2025-01-28","sections":{"":{"content":"Thank you for choosing the Calendollar™ platform and the products, services and features we make available to you as part of the platform. In order to proceed, please review and accept the following documents:
","bullets":[{"title":"Terms of Service","cta":"SUPPORT_LEGAL_TOS"},{"title":"Privacy Policy","cta":"SUPPORT_LEGAL_PRIVACY"},{"title":"EULA","cta":"SUPPORT_LEGAL_EULA"}]}}},"tos":{"title":"Terms of Use","modified":"2024-02-19","sections":{"Overview":{"title":"Overview","content":"These Terms of Use constitute a legally binding agreement made between you, whether personally or on behalf of an entity (\"you\") and Calendollar (\"Company\", \"we\", \"us\", or \"our\"), concerning your access to and use of the Calendollar website as well as any other media form, media channel, mobile website or mobile application related, linked, or otherwise connected thereto (collectively, the \"Site\"). You agree that by accessing the Site, you have read, understood, and agreed to be bound by all of these Terms of Use. IF YOU DO NOT AGREE WITH ALL OF THESE TERMS OF USE, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SITE AND YOU MUST DISCONTINUE USE IMMEDIATELY.
Supplemental terms and conditions or documents that may be posted on the Site from time to time are hereby expressly incorporated herein by reference. We reserve the right, in our sole discretion, to make changes or modifications to these Terms of Use at any time and for any reason. We will alert you about any changes by updating the \"Last updated\" date of these Terms of Use, and you waive any right to receive specific notice of each such change. It is your responsibility to periodically review these Terms of Use to stay informed of updates. You will be subject to, and will be deemed to have been made aware of and to have accepted, the changes in any revised Terms of Use by your continued use of the Site after the date such revised Terms of Use are posted.
The information provided on the Site is not intended for distribution to or use by any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation or which would subject us to any registration requirement within such jurisdiction or country. Accordingly, those persons who choose to access the Site from other locations do so on their own initiative and are solely responsible for compliance with local laws, if and to the extent local laws are applicable."},"Intellectual Property Rights":{"title":"Intellectual Property Rights","content":"Unless otherwise indicated, the Site is our proprietary property and all source code, databases, functionality, software, website designs, audio, video, text, photographs, and graphics on the Site (collectively, the \"Content\") and the trademarks, service marks, and logos contained therein (the \"Marks\") are owned or controlled by us or licensed to us, and are protected by copyright and trademark laws and various other intellectual property rights and unfair competition laws of the United States, international copyright laws, and international conventions. The Content and the Marks are provided on the Site \"AS IS\" for your information and personal use only. Except as expressly provided in these Terms of Use, no part of the Site and no Content or Marks may be copied, reproduced, aggregated, republished, uploaded, posted, publicly displayed, encoded, translated, transmitted, distributed, sold, licensed, or otherwise exploited for any commercial purpose whatsoever, without our express prior written permission.
Provided that you are eligible to use the Site, you are granted a limited license to access and use the Site and to download or print a copy of any portion of the Content to which you have properly gained access solely for your personal, non-commercial use. We reserve all rights not expressly granted to you in and to the Site, the Content and the Marks."},"User Representations":{"title":"User Representations","content":"By using the Site, you represent and warrant \"that\": (1) you have the legal capacity and you agree to comply with these Terms of Use; (2) you are not a minor in the jurisdiction in which you reside; (3) you will not access the Site through automated or non-human means, whether through a bot, script, or otherwise; (4) you will not use the Site for any illegal or unauthorized purpose; and (5) your use of the Site will not violate any applicable law or regulation.
If you provide any information that is untrue, inaccurate, not current, or incomplete, we have the right to suspend or terminate your account and refuse any and all current or future use of the Site (or any portion thereof)."},"Prohibited Activities":{"title":"Prohibited Activities","content":"You may not access or use the Site for any purpose other than that for which we make the Site available. The Site may not be used in connection with any commercial endeavors except those that are specifically endorsed or approved by us."},"Contribution License":{"title":"Contribution License","content":"You and the Site agree that we may access, store, process, and use any information and personal data that you provide following the terms of the Privacy Policy and your choices (including settings).
By submitting suggestions or other feedback regarding the Site, you agree that we can use and share such feedback for any purpose without compensation to you.
We do not assert any ownership over your Contributions. You retain full ownership of all of your Contributions and any intellectual property rights or other proprietary rights associated with your Contributions. We are not liable for any statements or representations in your Contributions provided by you in any area on the Site. You are solely responsible for your Contributions to the Site and you expressly agree to exonerate us from any and all responsibility and to refrain from any legal action against us regarding your Contributions."},"Submissions":{"title":"Submissions","content":"You acknowledge and agree that any questions, comments, suggestions, ideas, feedback, or other information regarding the Site (\"Submissions\") provided by you to us are non-confidential and shall become our sole property. We shall own exclusive rights, including all intellectual property rights, and shall be entitled to the unrestricted use and dissemination of these Submissions for any lawful purpose, commercial or otherwise, without acknowledgment or compensation to you. You hereby waive all moral rights to any such Submissions, and you hereby warrant that any such Submissions are original with you or that you have the right to submit such Submissions. You agree there shall be no recourse against us for any alleged or actual infringement or misappropriation of any proprietary right in your Submissions."},"Site Management":{"title":"Site Management","content":"We reserve the right, but not the obligation, \"to\": (1) monitor the Site for violations of these Terms of Use; (2) take appropriate legal action against anyone who, in our sole discretion, violates the law or these Terms of Use, including without limitation, reporting such user to law enforcement authorities; (3) in our sole discretion and without limitation, refuse, restrict access to, limit the availability of, or disable (to the extent technologically feasible) any of your Contributions or any portion thereof; (4) in our sole discretion and without limitation, notice, or liability, to remove from the Site or otherwise disable all files and content that are excessive in size or are in any way burdensome to our systems; and (5) otherwise manage the Site in a manner designed to protect our rights and property and to facilitate the proper functioning of the Site."},"Term and Termination":{"title":"Term and Termination","content":"These Terms of Use shall remain in full force and effect while you use the Site. WITHOUT LIMITING ANY OTHER PROVISION OF THESE TERMS OF USE, WE RESERVE THE RIGHT TO, IN OUR SOLE DISCRETION AND WITHOUT NOTICE OR LIABILITY, DENY ACCESS TO AND USE OF THE SITE (INCLUDING BLOCKING CERTAIN IP ADDRESSES), TO ANY PERSON FOR ANY REASON OR FOR NO REASON, INCLUDING WITHOUT LIMITATION FOR BREACH OF ANY REPRESENTATION, WARRANTY, OR COVENANT CONTAINED IN THESE TERMS OF USE OR OF ANY APPLICABLE LAW OR REGULATION. WE MAY TERMINATE YOUR USE OR PARTICIPATION IN THE SITE OR DELETE ANY CONTENT OR INFORMATION THAT YOU POSTED AT ANY TIME, WITHOUT WARNING, IN OUR SOLE DISCRETION. If we terminate or suspend your account for any reason, you are prohibited from registering and creating a new account under your name, a fake or borrowed name, or the name of any third party, even if you may be acting on behalf of the third party. In addition to terminating or suspending your account, we reserve the right to take appropriate legal action, including without limitation pursuing civil, criminal, and injunctive redress."},"Modifications and Interruptions":{"title":"Modifications and Interruptions","content":"We reserve the right to change, modify, or remove the contents of the Site at any time or for any reason at our sole discretion without notice. However, we have no obligation to update any information on our Site. We also reserve the right to modify or discontinue all or part of the Site without notice at any time. We will not be liable to you or any third party for any modification, price change, suspension, or discontinuance of the Site.
We cannot guarantee the Site will be available at all times. We may experience hardware, software, or other problems or need to perform maintenance related to the Site, resulting in interruptions, delays, or errors. We reserve the right to change, revise, update, suspend, discontinue, or otherwise modify the Site at any time or for any reason without notice to you. You agree that we have no liability whatsoever for any loss, damage, or inconvenience caused by your inability to access or use the Site during any downtime or discontinuance of the Site. Nothing in these Terms of Use will be construed to obligate us to maintain and support the Site or to supply any corrections, updates, or releases in connection therewith."},"Governing Law":{"title":"Governing Law","content":"These Terms shall be governed by and defined following the laws of United States of America. Calendollar and yourself irrevocably consent that the courts of XXX14XXX shall have exclusive jurisdiction to resolve any dispute which may arise in connection with these terms."},"Dispute Resolution":{"title":"Dispute Resolution","content":" Informal Negotiations To expedite resolution and control the cost of any dispute, controversy, or claim related to these Terms of Use (each a \"Dispute\" and collectively, the “Disputes”) brought by either you or us (individually, a “Party” and collectively, the “Parties”), the Parties agree to first attempt to negotiate any Dispute (except those Disputes expressly provided below) informally for at least 90 days before initiating arbitration. Such informal negotiations commence upon written notice from one Party to the other Party.
Restrictions The Parties agree that any arbitration shall be limited to the Dispute between the Parties individually. To the full extent permitted by law, (a) no arbitration shall be joined with any other proceeding; (b) there is no right or authority for any Dispute to be arbitrated on a class-action basis or to utilize class action procedures; and (c) there is no right or authority for any Dispute to be brought in a purported representative capacity on behalf of the general public or any other persons.
Exceptions to Informal Negotiations and Arbitration The Parties agree that the following Disputes are not subject to the above provisions concerning binding \"arbitration\": (a) any Disputes seeking to enforce or protect, or concerning the validity of, any of the intellectual property rights of a Party; (b) any Dispute related to, or arising from, allegations of theft, piracy, invasion of privacy, or unauthorized use; and (c) any claim for injunctive relief. If this provision is found to be illegal or unenforceable, then neither Party will elect to arbitrate any Dispute falling within that portion of this provision found to be illegal or unenforceable and such Dispute shall be decided by a court of competent jurisdiction within the courts listed for jurisdiction above, and the Parties agree to submit to the personal jurisdiction of that court."},"Corrections":{"title":"Corrections","content":"There may be information on the Site that contains typographical errors, inaccuracies, or omissions, including descriptions, pricing, availability, and various other information. We reserve the right to correct any errors, inaccuracies, or omissions and to change or update the information on the Site at any time, without prior notice."},"Disclaimer":{"title":"Disclaimer","content":"THE SITE IS PROVIDED ON AN AS-IS AND AS-AVAILABLE BASIS. YOU AGREE THAT YOUR USE OF THE SITE AND OUR SERVICES WILL BE AT YOUR SOLE RISK. TO THE FULLEST EXTENT PERMITTED BY LAW, WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, IN CONNECTION WITH THE SITE AND YOUR USE THEREOF, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. WE MAKE NO WARRANTIES OR REPRESENTATIONS ABOUT THE ACCURACY OR COMPLETENESS OF THE SITE’S CONTENT OR THE CONTENT OF ANY WEBSITES LINKED TO THE SITE AND WE WILL ASSUME NO LIABILITY OR RESPONSIBILITY FOR ANY (1) ERRORS, MISTAKES, OR INACCURACIES OF CONTENT AND MATERIALS, (2) PERSONAL INJURY OR PROPERTY DAMAGE, OF ANY NATURE WHATSOEVER, RESULTING FROM YOUR ACCESS TO AND USE OF THE SITE, (3) ANY UNAUTHORIZED ACCESS TO OR USE OF OUR SECURE SERVERS AND/OR ANY AND ALL PERSONAL INFORMATION AND/OR FINANCIAL INFORMATION STORED THEREIN, (4) ANY INTERRUPTION OR CESSATION OF TRANSMISSION TO OR FROM THE SITE, (5) ANY BUGS, VIRUSES, TROJAN HORSES, OR THE LIKE WHICH MAY BE TRANSMITTED TO OR THROUGH THE SITE BY ANY THIRD PARTY, AND/OR (6) ANY ERRORS OR OMISSIONS IN ANY CONTENT AND MATERIALS OR FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF ANY CONTENT POSTED, TRANSMITTED, OR OTHERWISE MADE AVAILABLE VIA THE SITE. WE DO NOT WARRANT, ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR ANY PRODUCT OR SERVICE ADVERTISED OR OFFERED BY A THIRD PARTY THROUGH THE SITE, ANY HYPERLINKED WEBSITE, OR ANY WEBSITE OR MOBILE APPLICATION FEATURED IN ANY BANNER OR OTHER ADVERTISING, AND WE WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR MONITORING ANY TRANSACTION BETWEEN YOU AND ANY THIRD-PARTY PROVIDERS OF PRODUCTS OR SERVICES. AS WITH THE PURCHASE OF A PRODUCT OR SERVICE THROUGH ANY MEDIUM OR IN ANY ENVIRONMENT, YOU SHOULD USE YOUR BEST JUDGMENT AND EXERCISE CAUTION WHERE APPROPRIATE."},"Limitations of Liability":{"title":"Limitations of Liability","content":"LIMITATIONS OF LIABILITY IN NO EVENT WILL WE OR OUR DIRECTORS, EMPLOYEES, OR AGENTS BE LIABLE TO YOU OR ANY THIRD PARTY FOR ANY DIRECT, INDIRECT, CONSEQUENTIAL, EXEMPLARY, INCIDENTAL, SPECIAL, OR PUNITIVE DAMAGES, INCLUDING LOST PROFIT, LOST REVENUE, LOSS OF DATA, OR OTHER DAMAGES ARISING FROM YOUR USE OF THE SITE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. NOTWITHSTANDING ANYTHING TO THE CONTRARY CONTAINED HEREIN, OUR LIABILITY TO YOU FOR ANY CAUSE WHATSOEVER AND REGARDLESS OF THE FORM OF THE ACTION, WILL AT ALL TIMES BE LIMITED TO THE LESSER OF THE AMOUNT PAID, IF ANY, BY YOU TO US OR $1. CERTAIN US STATE LAWS AND INTERNATIONAL LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE DISCLAIMERS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MAY HAVE ADDITIONAL RIGHTS. "},"Idemnification":{"title":"Idemnification","content":"You agree to defend, indemnify, and hold us harmless, including our subsidiaries, affiliates, and all of our respective officers, agents, partners, and employees, from and against any loss, damage, liability, claim, or demand, including reasonable attorneys’ fees and expenses, made by any third party due to or arising out \"of\": (1) use of the Site; (2) breach of these Terms of Use; (3) any breach of your representations and warranties set forth in these Terms of Use; (4) your violation of the rights of a third party, including but not limited to intellectual property rights; or (5) any overt harmful act toward any other user of the Site with whom you connected via the Site. Notwithstanding the foregoing, we reserve the right, at your expense, to assume the exclusive defense and control of any matter for which you are required to indemnify us, and you agree to cooperate, at your expense, with our defense of such claims. We will use reasonable efforts to notify you of any such claim, action, or proceeding which is subject to this indemnification upon becoming aware of it."},"User Data":{"title":"User Data","content":"We will maintain certain data that you transmit to the Site for the purpose of managing the performance of the Site, as well as data relating to your use of the Site. Although we perform regular routine backups of data, you are solely responsible for all data that you transmit or that relates to any activity you have undertaken using the Site. You agree that we shall have no liability to you for any loss or corruption of any such data, and you hereby waive any right of action against us arising from any such loss or corruption of such data."},"Electronic Communications, Transactions and Signatures":{"title":"Electronic Communications, Transactions and Signatures","content":"Visiting the Site, sending us emails, and completing online forms constitute electronic communications. You consent to receive electronic communications, and you agree that all agreements, notices, disclosures, and other communications we provide to you electronically, via email and on the Site, satisfy any legal requirement that such communication be in writing. YOU HEREBY AGREE TO THE USE OF ELECTRONIC SIGNATURES, CONTRACTS, ORDERS, AND OTHER RECORDS, AND TO ELECTRONIC DELIVERY OF NOTICES, POLICIES, AND RECORDS OF TRANSACTIONS INITIATED OR COMPLETED BY US OR VIA THE SITE. You hereby waive any rights or requirements under any statutes, regulations, rules, ordinances, or other laws in any jurisdiction which require an original signature or delivery or retention of non-electronic records, or to payments or the granting of credits by any means other than electronic means."},"Miscellaneous":{"title":"Miscellaneous","content":"These Terms of Use and any policies or operating rules posted by us on the Site or in respect to the Site constitute the entire agreement and understanding between you and us. Our failure to exercise or enforce any right or provision of these Terms of Use shall not operate as a waiver of such right or provision. These Terms of Use operate to the fullest extent permissible by law. We may assign any or all of our rights and obligations to others at any time. We shall not be responsible or liable for any loss, damage, delay, or failure to act caused by any cause beyond our reasonable control. If any provision or part of a provision of these Terms of Use is determined to be unlawful, void, or unenforceable, that provision or part of the provision is deemed severable from these Terms of Use and does not affect the validity and enforceability of any remaining provisions. There is no joint venture, partnership, employment or agency relationship created between you and us as a result of these Terms of Use or use of the Site. You agree that these Terms of Use will not be construed against us by virtue of having drafted them. You hereby waive any and all defenses you may have based on the electronic form of these Terms of Use and the lack of signing by the parties hereto to execute these Terms of Use."},"Contact Us":{"title":"Contact Us","content":"In order to resolve a complaint regarding the Site or to receive further information regarding use of the Site, please contact us \"at\":
Calendollar XXX13XXX
"}}},"eula":{"title":"EULA","modified":"2024-02-19","sections":{"Overview":{"title":"Overview","content":"This End-User License Agreement (\"EULA\") is a legal agreement between you and Calendollar.
This EULA agreement governs your acquisition and use of our Calendollar software directly from Calendollar or indirectly through a Calendollar authorized reseller or distributor (a \"Reseller\").
Please read this EULA agreement carefully before completing the installation process and using the Calendollar software. It provides a license to use the Calendollar software and contains warranty information and liability disclaimers.
If you register for a free trial of the Calendollar software, this EULA agreement will also govern that trial. By clicking \"accept\" or installing and/or using the Calendollar software, you are confirming your acceptance of the Application and agreeing to become bound by the terms of this EULA agreement.
If you are entering into this EULA agreement on behalf of a company or other legal entity, you represent that you have the authority to bind such entity and its affiliates to these terms and conditions. If you do not have such authority or if you do not agree with the terms and conditions of this EULA agreement, do not install or use the Application, and you must not accept this EULA agreement.
This EULA agreement shall apply only to the Application supplied by Calendollar herewith regardless of whether other software is referred to or described herein. The terms also apply to any Calendollar updates, supplements, Internet-based services, and support services for the Application, unless other terms accompany those items on delivery. If so, those terms apply."},"The Application":{"title":"The Application","content":"Calendollar is licensed to You (End-User) by Calendollar, located at XXX13XXX (\"hereinafter\": Licensor), for use only under the terms of this License Agreement.
By downloading the Application from a Reseller (for example the Apple AppStore or Google Play Store), and any update thereto (as permitted by this License Agreement), You indicate that You agree to be bound by all of the terms and conditions of this License Agreement, and that You accept this License Agreement.
The parties of this License Agreement acknowledge that a Reseller is not a Party to this License Agreement and is not bound by any provisions or obligations with regard to the Application, such as warranty, liability, maintenance and support thereof. Calendollar, not a Reseller, is solely responsible for the licensed Application and the content thereof.
This License Agreement may not provide for usage rules for the Application that are in conflict with the latest Reseller's App Store Terms of Service (for example Apple's AppStore Terms of Service). Calendollar acknowledges that it had the opportunity to review said terms and this License Agreement is not conflicting with them.
All rights not expressly granted to You are reserved."},"License Grant":{"title":"License Grant","content":"Calendollar (\"hereinafter\": Application) is a piece of software created to help users to visualize the future of their cashflow - and customized for Apple mobile devices. It is used to combine a user's bank balances with their expected income/expense schedule and superimpose the resulting cashflow over a multi-year calendar; revealing the user’s projected balance at any point in time in the future. Calendollar hereby grants you a personal, non-transferable, non-exclusive licence to use the Calendollar software on your devices in accordance with the terms of this EULA agreement.
You are permitted to load the Calendollar software on a supported device (for example a PC, laptop, mobile phone or tablet) under your control. You are responsible for ensuring your device meets the minimum requirements of the Calendollar software.
You are NOT permitted \"to\":
Edit, alter, modify, adapt, translate or otherwise change the whole or any part of the Application nor permit the whole or any part of the Application to be combined with or become incorporated in any other software, nor decompile, disassemble or reverse engineer the Application or attempt to do any such things;
Reproduce, copy, distribute, resell or otherwise use the Application for any commercial purpose;
Allow any third party to use the Application on behalf of or for the benefit of any third party;
Use the Application in any way which breaches any applicable local, national or international law;
Use the Application for any purpose that Calendollar considers is a breach of this EULA agreement.
"},"No Maintenance or Support":{"title":"No Maintenance or Support","content":"Calendollar is not obligated, expressed or implied, to provide any maintenance, technical or other support for the Application.
Calendollar and the End-User acknowledge that a Reseller has no obligation whatsoever to furnish any maintenance and support services with respect to the licensed Application."},"Warranty":{"title":"Warranty","content":"Calendollar warrants that the Application is free of spyware, trojan horses, viruses, or any other malware at the time of Your download. Calendollar warrants that the Application works as described in the user documentation.
No warranty is provided for the Application that is not executable on the device, that has been unauthorizedly modified, handled inappropriately or culpably, combined or installed with inappropriate hardware or software, used with inappropriate accessories, regardless if by Yourself or by third parties, or if there are any other reasons outside of Calendollar's sphere of influence that affect the executability of the Application.
You are required to inspect the Application immediately after installing it and notify Calendollar about issues discovered without delay by e-mail provided in Product Claims. The defect report will be taken into consideration and further investigated if it has been mailed within a period of 15 days after discovery.
If we confirm that the Application is defective, Calendollar reserves a choice to remedy the situation either by means of solving the defect or substitute delivery.
In the event of any failure of the Application to conform to any applicable warranty, You may notify the Reseller, and Your Application purchase price will be refunded to You. To the maximum extent permitted by applicable law, the Reseller will have no other warranty obligation whatsoever with respect to the Application, and any other losses, claims, damages, liabilities, expenses and costs attributable to any negligence to adhere to any warranty.
If the user is an entrepreneur, any claim based on faults expires after a statutory period of limitation amounting to twelve (12) months after the Application was made available to the user. The statutory periods of limitation given by law apply for users who are consumers."},"Product Claims":{"title":"Product Claims","content":"Calendollar and the End-User acknowledge that Calendollar, and not a Reseller, is responsible for addressing any claims of the End-User or any third party relating to the licensed Application or the End-User’s possession and/or use of that licensed Application, including, but not limited \"to\":
product liability claims;
any claim that the licensed Application fails to conform to any applicable legal or regulatory requirement; and
claims arising under consumer protection, privacy, or similar legislation, including in connection with Your Licensed Application’s use of the HealthKit and HomeKit.
"},"Legal Compliance":{"title":"Legal Compliance","content":"You represent and warrant that You are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a \"terrorist supporting\" country; and that You are not listed on any U.S. Government list of prohibited or restricted parties."},"Third-Party Terms of Agreements and Beneficiary":{"title":"Third-Party Terms of Agreements and Beneficiary","content":"Calendollar represents and warrants that Calendollar will comply with applicable third-party terms of agreement when using licensed Application.
In Accordance with Section 9 of the \"Instructions for Minimum Terms of Developer's End-User License Agreement\", Apple and Apple's subsidiaries shall be third-party beneficiaries of this End User License Agreement and - upon Your acceptance of the terms and conditions of this license agreement, Apple will have the right (and will be deemed to have accepted the right) to enforce this End User License Agreement against You as a third-party beneficiary thereof."},"Intellectual Property and Ownership":{"title":"Intellectual Property and Ownership","content":"Calendollar and the End-User acknowledge that, in the event of any third-party claim that the licensed Application or the End-User's possession and use of that licensed Application infringes on the third party's intellectual property rights, Calendollar, and not Apple, will be solely responsible for the investigation, defense, settlement and discharge or any such intellectual property infringement claims.
Calendollar shall at all times retain ownership of the Application as originally downloaded by You and all subsequent downloads of the Application by You. The Application (and the copyright, and other intellectual property rights of whatever nature in the Application, including any modifications made thereto) are and shall remain the property of Calendollar.
Calendollar reserves the right to grant licences to use the Application to third parties."},"Termination":{"title":"Termination","content":"This EULA agreement is effective from the date you first use the Application and shall continue until terminated. The license is valid until terminated by Calendollar or by You. You may terminate it at any time upon written notice to Calendollar. Your rights under this license will terminate automatically and without notice from Calendollar if You fail to adhere to any term(s) of this license. Upon License termination, You shall stop all use of the Application, and destroy all copies, full or partial, of the Application.
The provisions that by their nature continue and survive will survive any termination of this EULA agreement."},"Governing Law":{"title":"Governing Law","content":"This EULA agreement, and any dispute arising out of or in connection with this EULA agreement, shall be governed by and construed in accordance with the laws of the United States of America."},"Miscellaneous":{"title":"Miscellaneous","content":"If any of the terms of this agreement should be or become invalid, the validity of the remaining provisions shall not be affected. Invalid terms will be replaced by valid ones formulated in a way that will achieve the primary purpose.
Collateral agreements, changes and amendments are only valid if laid down in writing. The preceding clause can only be waived in writing."}}},"privacy":{"title":"Privacy Policy","modified":"2024-02-19","sections":{"Overview":{"title":"Overview","content":"The Calendollar application (collectively \"App\" or \"Website\" or \"Site\") is produced and maintained by Calendollar (collectively \"Company\" or \"we\", \"us\", or \"our\").
We collect, protect, share and use both personal and anonymous information within our media platform, including, without limitation, our Apps, Websites, web pages, interactive features, applications, Twitter and Facebook pages, and Mobile Application (\"Platforms\").
The policies below are applicable to the Platforms (however accessed and/or used), whether via personal computers, mobile devices or otherwise, and other interactive features, applications or downloads that are operated, produced, maintained and made available by us in addition to the Content in the App (collectively \"Services\").
We are strongly committed to protecting the privacy of your personal information obtained via our Services. We have established this privacy policy (\"Privacy Policy\") to let you know the kinds of personal information we may gather during your use of our Platforms, why we gather your information, what we use your personal information for, when we might disclose your personal information, and how you can manage your personal information.
Please be advised that the practices described in this Privacy Policy apply only to information gathered online through our Services. It does not apply to information that you may submit to us offline, or to websites maintained by other companies or organizations to which we may link or who may link to us.
By using our App, you are accepting the practices described in our Privacy Policy. If you do not agree to the terms of this Privacy Policy, please do not use the App. We reserve the right to modify or amend the terms of our Privacy Policy from time to time without notice. Your continued use of our App and our Services following the posting of changes to these terms will mean you accept those changes. If we intend to apply the modifications or amendments to this Privacy Policy retroactively, we will provide you with notice of the modifications or amendments.
If you have any questions about this Privacy Policy or don't see your concerns addressed here, you should contact us by email at privacy@calendollar.app."},"Information Collected and Stored":{"title":"Information Collected and Stored","content":"Company adheres to the highest standards of ethical practices in all of our operations and is dedicated to protecting the privacy of all users of our App. Our privacy policy is \"simple\": except as disclosed below, we don't sell, barter, give away, or rent your personal information to any company outside of Company."},"Personal Information":{"title":"Personal Information","content":"Unless you provide comments on the App, submit information to Company, or register for updates from Company, we do not collect any personally identifiable information from you. If you submit comments or information or register to receive updates or send us e-mail, we collect identifiable information about you and your authorized users such as your name, user ID, and email address and may collect telephone numbers, billing information, and demographic information such as age, gender and zip code.
We also collect and store information that you enter into this App or that you provide to any of our representatives, or in conjunction with requests for more information. Registration may also be required and Personal Information may also be collected if there are certain portions of the App in which you specifically and knowingly provide such information. We also may collect and store information about you that we receive from other sources, to enable us to update and correct the information contained in our database."},"Anonymous Information":{"title":"Anonymous Information","content":"In addition, when you interact with the App, our servers may keep an activity log that does not identify you individually (\"Anonymous Information\"). Generally, this information is collected through \"traffic data\". We collect and store certain administrative and traffic information with each use of our App or Services \"including\": source IP address, time of access, date of access, web page(s), software crash reports, type of browser used, session identification number, search terms, search results, access times and referring websites addresses."},"Device Identifier":{"title":"Device Identifier","content":"We automatically collect your IP address or other unique identifier (\"Device Identifier\") for the Device (computer, mobile phone, tablet or other device) you use to access the Platforms. A Device Identifier is a number that is assigned to your Device when you access the App or its servers, and our computers identify your Device by its Device Identifier. We may use a Device Identifier to, among other things, administer Services, help diagnose problems with our servers, analyze trends, track users’ web page movements, help identify you and your shopping cart, and gather broad demographic information for aggregate use."},"Use Of Cookies, Pixel Tags And Spyware":{"title":"Use Of Cookies, Pixel Tags And Spyware","content":"The technologies used in our Services to collect Usage Information, including Device Identifiers, include but are not limited \"to\": cookies (data files placed on a Device when it is used to make use of our Services), mobile analytics software and pixel tags (transparent graphic image, sometimes called a web beacon or tracking beacon, placed on a web page or in an email, which indicates that a page or email has been viewed). Cookies may also be used to associate you with social networking sites like Facebook and Twitter and, if you so choose, enable interaction between your activities with our Services and your activities on such social networking sites. We, or our vendors, may place cookies or similar files on your Device for security purposes, to facilitate site navigation and to personalize your experience while using our App. A pixel tag may tell your browser to get content from another server.
To learn how you may be able to reduce the number of cookies you receive from us, or delete cookies that have already been installed in your browser’s cookie folder, please refer to your browser’s help menu or other instructions related to your browser. If you do disable or opt out of receiving cookies, please be aware that some features and Services may not work properly because we may not be able to recognize and associate your device with the requested Services. In addition, the offers we provide when you visit us may not be as relevant to you or tailored to your interests.
We never use or install spyware on your computer, nor do we use spyware to retrieve information from your computer. Like many Websites, we use \"cookies\", which are small text files that are stored on your computer or equipment when you visit certain online pages that record your preferences. We use cookies to track use of our Website and online services. We may also use cookies to monitor traffic, improve the Website and make it easier and/or relevant for your use. You may occasionally get cookies from companies advertising on our behalf. We do not control these cookies, and these cookies are not subject to this cookie policy. You have the ability to accept or decline cookies. Most web browsers automatically accept cookies, but, if you prefer, you can usually modify your browser setting to decline cookies. For more information on cookies and how to disable them, you can consult the information provided by the Interactive Advertising Bureau at www.allaboutcookies.org."},"Information Collected From Children":{"title":"Information Collected From Children","content":"This is not a App directed to children under the age of 13, and Company does not knowingly collect personal identifiable information from children under 13 years of age. If you are under 13 years of age you should not use this App, and under no circumstance should you provide personally identifiable information to Company. If Company discovers that a child under the age of 13 has provided Company with personally identifiable information, Company will immediately delete that child's information from the App."},"How We Use Your Information":{"title":"How We Use Your Information","content":"We use the information we learn from you to help us personalize and continually improve your experience on the App. We use the information to communicate with you about orders, products, services, promotional offers, update our records and generally maintain your relationship with us. We also use this information to enable third parties to carry out technical, logistical or other functions on our behalf. We also use the information from the App on other Platforms. Except as disclosed in this Privacy Policy, we do not use or disclose information about your individual use of our App or your Personal Information collected online to any companies not affiliated with us."},"Customer Service And Feedback":{"title":"Customer Service And Feedback","content":"We may use your Personal Information to provide customer service, track your compliance with the App's rules and regulations, or for editorial and feedback purposes (to the extent that is explained when you provide the information). In the event we plan to publicly post any of your Personal Information, we will request your permission to provide such posting."},"Use Of Anonymous Information":{"title":"Use Of Anonymous Information","content":"We use Anonymous Information to help us determine how people use parts of the App and who our users are so we can improve our App and ensure that it is as appealing as we can make it for as many people as possible. We also use Anonymous Information to provide statistical \"ratings\" information in aggregated form to our partners and other third parties about how our users collectively use the App. We may also use or share Anonymous Information (or other information, other than Personal Information) in any other manner that we deem appropriate or necessary."},"Third-Party Agents":{"title":"Third-Party Agents","content":"We have third party agents, subsidiaries, affiliates and partners that perform functions on our behalf, such as hosting, billing, marketing, analytics, providing customer service, fraud protection, etc. These entities have access to the Personal Information needed to perform their functions and are contractually obligated to maintain the confidentiality and security of that Personal Information. They are restricted from using, selling, distributing or altering this data in any way other than to provide the requested services to the App."},"Transactional Partners":{"title":"Transactional Partners","content":"We may share non-personal information with our partners and others from time to time. Examples of such non-personal information include the number of users who used the App during a specific time period. This information generally is shared in an aggregated form."},"Your Provacy Rights, Choice and Access":{"title":"Your Provacy Rights, Choice and Access","content":"You may always direct us not to share your Personal Information with third parties (other than our service providers), not to use your Personal Information to provide you with information or offers, or not to send you newsletters, emails or other communications \"by\": (i) modifying your registered user information on the Platforms; (ii) sending us an email at privacy@calendollar.app.; (iii) contacting us by mail at Calendollar Customer Service, ; or (iv) following the removal instructions in the communication that you receive. Your opt-out request will be processed within 30 days of the date on which we receive it."},"Advertizing / Behavioral Targeting + How to Opt-Out":{"title":"Advertizing / Behavioral Targeting + How to Opt-Out","content":"If you do not want to receive the benefits of targeted advertising, you may opt out of some network advertising programs that use your information by visiting the TRUSTe Preference Manager at http://preferences-mgr.truste.com/. Please note that even if you choose to remove your information (opt out), you will still see advertisements while you’re browsing online. However the advertisements you see may be less relevant to you and your interests. Additionally, many network advertising programs allow you to view and manage the interest categories they have compiled from your online browsing activities. These interest categories help determine the types of targeted advertisements you may receive. The TRUSTe Preference Manager provides a tool that identifies its member companies that have cookies on your browser and provides a mechanism to opt out of receiving cookies from those companies."},"Emergency Situations":{"title":"Emergency Situations","content":"We may also use or disclose Personal Information if required to do so by law or in the good-faith belief that such action is necessary to (a) conform to applicable law or comply with legal process served on us or the App; (b) protect and defend our rights or property, the App or our users, and (c) act under emergency circumstances to protect the personal safety of us, our affiliates, agents, or the users of the App or the public."},"Steps Taken To Keep Personal Information Secure":{"title":"Steps Taken To Keep Personal Information Secure","content":"The importance of security for all Personal Information associated with you is of utmost concern to us. We exercise great care in providing secure transmission of your information from your PC to our servers. Personal Information collected by our App is stored in secure operating environments that are not available to the public. Our security procedures mean that we may occasionally request proof of identity before we disclose personal information to you. While we try our best to safeguard your Personal Information once we receive it, no transmission of data over the internet or any other public network can be guaranteed to be 100% secure."},"Links To or From Another Website":{"title":"Links To or From Another Website","content":"This App may contain links to other websites operated by affiliates of Company or third parties. Please be advised that the practices described in this Privacy Policy for Company do not apply to information gathered through these other websites. These other sites may also send their own cookies to you, collect your data or solicit your Personal Information. Always be aware of where you end up. We are not responsible for the actions and privacy policies of third parties and other websites. We encourage you to be aware of when you leave this Website and read the privacy policies of each and every website that you visit."},"Governing Law / Assignment":{"title":"Governing Law / Assignment","content":"The App is published in the United States. We make every effort to protect the personal identifiable information of all users of the App. We attempt to comply with local data protection and consumer rights laws to the extent they may apply to the Company services. If you are uncertain whether this privacy policy conflicts with the applicable local privacy laws where you are located, you should not submit your Personal Information to Company.
We may change its ownership or corporate organization while providing the App and services. As a result, please be aware that we may transfer your information to another Company that is affiliated with us or with which we have merged. Under such circumstances Company would to the extent possible require the acquiring party to follow the practices described in this Privacy Policy, as it may be amended from time to time."},"Notice to European Users":{"title":"Notice to European Users","content":"If you are located within the European Union, you should be aware that your personal identifiable information will be transferred to the United States of America, the laws of which may be deemed by the European Union to have inadequate data protection. If you are located in a country outside the United States of America and voluntarily submit personal information to us, you thereby consent to the general use of such information as provided in this privacy policy and to the transfer of that information to, and/or storage of that information in, the United States of America."},"Changes to This Policy":{"title":"Changes to This Policy","content":"As our App continues to develop, we may add new services and features to our App. In the event that these additions affect our Privacy Policy, this document will be updated appropriately. We will post those changes prominently so that you will always know what information we gather, how we might use that information and whether we will disclose it to anyone. We do, however, recommend that you read this Privacy Policy each time you use our App in case you missed our notice of changes to the Privacy Policy. We will never, however, materially change our policies and practices to make them less protective of customer information we have previously collected without your express consent."},"Opting Out or Correcting Information":{"title":"Opting Out or Correcting Information","content":"You may always opt out of receiving future e-mail messages and newsletters from Company. We provide you with the opportunity to opt-out of receiving communications from us at the point where we request information about you. We also give you access to a broad range of information about your account to permit you to correct or update Personal Information that you have previously provided to us. To do so, send an email to privacy@calendollar.app."},"Your California Privacy Rights":{"title":"Your California Privacy Rights","content":"California Civil Code Section 1798.83 permits customers of Company who are California residents to request certain information regarding its disclosure of personal information to third parties for their direct marketing purposes. To make such a request, send an email to privacy@calendollar.app."},"Controllers of Personal Information":{"title":"Controllers of Personal Information","content":"The Data Controller for the App and any services provided through it \"is\":
"}}},"faq":{"hide":true,"title":"Help Center","modified":"","sections":{"Getting Started":{"title":"Getting Started","content":"Calendollar™ is a financial forecasting app allowing you to visualize the future of your cashflow. We do this by combining your bank balances with your expected income/expense schedule and superimpose the resulting cashflow over a multi-year calendar; revealing your projected balance or \"Spending Potential\" at any point in time in the future.","bullets":[{"title":"Do I need to create an account?","content":"No, an account is not required to use Calendollar™ as you can Test Drive it right away. However, an account is required in order to save your forecast and connect your bank accounts. You can easily migrate your Test Drive data into to an account by tapping on Sign-Up at any point during your evaluation of the App!"},{"title":"How far can I see into my future?","content":"Up to 5 Years! However, Test Drives only allows for a 1 Year forecast."},{"title":"What are these colors I see on my calendar?","content":"This colorization exists for you to easily identify what is happening within your forecast. While GREEN indicates that you should have a positive balance after all your Money Events have occurred on a given day, RED indicates a negative balance may occur as a result of your scheuled events occuring on the respective day(s)."}]},"Money Events":{"title":"Money Events","content":"A Money Event represents when you expect to either receive money (eg. Paycheck, Wire Transfer etc...) or pay for something (eg. Rent, Student Loan etc...). Each Money Event will be added-to or subtracted-from today's available balance(s) to calculate your future balance(s)!","bullets":[{"title":"How do I add a Money Event?","content":"Tap on any future date on the the calendar and then \"Add Event\" to add an event for that specific day. Enter details about the Money Event such as the Type: Credit (income) or Debit (expense), when it should Start and it's Frequency (eg. One-Time, Monthly etc...). You can also add events via Money Events found in the main menu."},{"title":"How do I update or delete a Money Event?","content":"Tap any date that displays a balance to see the Money Events you have scheduled for that day and then tap on a Money Event to modify any of it's attributes or to delete it from your forecast."},{"title":"Where can I manage all of my Money Events?","content":"Access the main menu from the top left of the calendar and then tap \"Money Events\" to see your full Event Schedule. Each Money Event can be updated or removed by a quick tap on it's title."},{"title":"Why isn't my balance displayed on every day of the month?","content":"Your projected balance or \"Spending Potential\" is shown only on the days where you have a Money Event scheduled. This is intentional to indicate that you've scheduled one or more Money Events to occur on that day, and the potential impact those Money Events will have on your forecast."}]},"Bank Accounts":{"title":"Bank Accounts","content":"Calendollar™ allows you to connect your Bank Accounts to automatically update your available cash and keep you forecast current; removing the pain-point of you having to manually update your available funds consistently.","bullets":[{"title":"How do I connect my bank account(s)?","content":"Tap on \"Today's Date\" on the calendar then \"Connect Account\" and follow the prompts which will walk you through logging into your Financial Institution to Connect your Bank Accounts. If you have enabled MFA (Multi-Factor Authentication) with your bank (eg. Text-Message, Security Questions etc...], you will need complete the additional verification process that you have configured at your Bank. You can also connect accounts via Bank Accounts found in the main menu."},{"title":"How do I update or delete a bank account?","content":"Tap on \"Today's Date\" to view your Connected Accounts and then tap on a Connected Account to modify it's name or to delete it from your Calendollar."},{"title":"Where can I manage all of my bank account?","content":"Access the main menu from the top left of the calendar and then tap \"Bank Accounts\" to see all of your Connected Accounts. Each Account can be updated or removed by a quick tap on it's title. Your Default Account cannot be removed."},{"title":"Why are all of my accounts showing from my bank?","content":"Upon connecting your Calendollar™ to your Financial Institution, all of your active accounts within that Financial Institution will be available for you to use in your forecast. After connection, you can delete individual accounts (eg. Checking, Savings, Loans etc...) that you do not want to be a part of your forecast: see \"Where can I manage all of my Bank Account?\"."},{"title":"Why is Calendollar™ not matching what my bank says?","content":"Calendollar™ will attempt to fetch your Connected Account balance(s) daily and at varying times throughout the day; so there may be instances when it's a couple hours behind. For some institutions, we may not be able update your account(s) in an automated fashion if you have enabled 2FA (Two-Factor Authentication) with your bank (eg. Text-Message, Security Questions etc...) -- We are aware of this an will be introducing a feature soon that will overcome this potential nuisance."}]}}}}},"prompt":{"context":{"admin":{"title":"Admin","notification":"..."},"offline":{"title":"Service Unavailable","notification":"You appear to be offline. Please check your internet connection..."},"locale":{"heading":"Locale","subheading":"Customization","title":"Welcome","notification":"Select your preferred language"},"update":{"title":"Update Available","notification":"We're proud to announce that we've just released a new version of the App!","cta":"Update Now"}},"forms":{"locale":{"fields":{"locale":{"select":{},"label":"Language Preference","default":""}},"cta":"Continue","footer":{"pretext":"Don't have an account","cta":"Sign-Up"}}}}}