Remove Todoroo EULA

pull/25/head
Alex Baker 11 years ago
parent 524a129236
commit 5140e32fb4

@ -1,130 +0,0 @@
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.todoroo.astrid.activity;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import org.tasks.R;
import com.todoroo.andlib.service.Autowired;
import com.todoroo.andlib.service.DependencyInjectionService;
import com.todoroo.andlib.utility.AndroidUtilities;
import com.todoroo.andlib.utility.Preferences;
import com.todoroo.astrid.service.StatisticsConstants;
import com.todoroo.astrid.service.TaskService;
/**
* Displays an EULA ("End User License Agreement") that the user has to accept
* before using the application. Your application should call
* {@link Eula#showEula(android.app.Activity)} in the onCreate() method of the
* first activity. If the user accepts the EULA, it will never be shown again.
* If the user refuses, {@link android.app.Activity#finish()} is invoked on your
* activity.
*/
public final class Eula {
public static final String PREFERENCE_EULA_ACCEPTED = "eula.accepted"; //$NON-NLS-1$
@Autowired TaskService taskService;
/**
* Displays the EULA if necessary. This method should be called from the
* onCreate() method of your main Activity.
*
* @param activity
* The Activity to finish if the user rejects the EULA
*/
public static void showEula(final Activity activity) {
if(!new Eula().shouldShowEula(activity)) {
return;
}
final AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle(R.string.DLG_eula_title);
builder.setCancelable(true);
builder.setPositiveButton(R.string.DLG_accept,
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
accept(activity);
}
});
builder.setNegativeButton(R.string.DLG_decline,
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
refuse(activity);
}
});
builder.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
refuse(activity);
}
});
builder.setMessage(AndroidUtilities.readFile(activity, R.raw.eula));
builder.show();
}
public static void showEulaBasic(Activity activity) {
final AlertDialog.Builder builder = new AlertDialog.Builder(activity);
builder.setTitle(R.string.DLG_eula_title);
builder.setMessage(AndroidUtilities.readFile(activity, R.raw.eula));
builder.setNeutralButton(android.R.string.ok, null);
builder.show();
}
private boolean shouldShowEula(Activity activity) {
if(Preferences.getBoolean(PREFERENCE_EULA_ACCEPTED, false)) {
return false;
}
SharedPreferences p = activity.getSharedPreferences("eula", Activity.MODE_PRIVATE); //$NON-NLS-1$
if(p.getBoolean(PREFERENCE_EULA_ACCEPTED, false)) {
return false;
}
if(taskService.countTasks() > 0) {
return false;
}
return true;
}
private static void accept(Activity activity) {
if (activity instanceof EulaCallback) {
((EulaCallback)activity).eulaAccepted();
}
Preferences.setBoolean(PREFERENCE_EULA_ACCEPTED, true);
}
private static void refuse(Activity activity) {
if (activity instanceof EulaCallback) {
((EulaCallback)activity).eulaRefused();
}
activity.finish();
}
public static interface EulaCallback {
public void eulaAccepted();
public void eulaRefused();
}
private Eula() {
// don't construct me
DependencyInjectionService.getInstance().inject(this);
}
}

@ -28,7 +28,6 @@ import com.todoroo.astrid.actfm.sync.EmptyTitleOutstandingEntryMigration;
import com.todoroo.astrid.actfm.sync.messages.ConvertSelfUserIdsToZero;
import com.todoroo.astrid.actfm.sync.messages.NameMaps;
import com.todoroo.astrid.activity.AstridActivity;
import com.todoroo.astrid.activity.Eula;
import com.todoroo.astrid.activity.TaskListFragment;
import com.todoroo.astrid.api.AstridApiConstants;
import com.todoroo.astrid.core.PluginServices;
@ -716,7 +715,6 @@ public final class UpgradeService {
if(gtasksPreferenceService.isLoggedIn()) {
taskService.clearDetails(Criterion.all);
}
Preferences.setBoolean(Eula.PREFERENCE_EULA_ACCEPTED, true);
}
if(from >= V3_0_0 && from < V3_6_0) {
newVersionString(changeLog, "3.6.0 (11/13/10)", new String[] {

@ -1,131 +0,0 @@
Todoroo Inc. ("Todoroo", or "we") provides services through our software applications for various devices and platforms ("Todoroo Applications") and the Todoroo.com domain, and any sub domains thereto (the "Sites"). Individually or collectively, Todoroo Applications and Sites may be referred to as the "Services".
Please read the following terms and conditions ("Terms of Service") carefully. These Terms of Service govern your access to and use of the Services and Todoroo Content (defined below) and set forth the legally binding terms for your use of the Services and Todoroo Content, whether or not you have registered as a Member.
Certain areas of the Services (and your access to or use of Todoroo Content) may have different terms and conditions posted or may require you to agree with and accept additional terms and conditions. If there is a conflict between these Terms of Service and terms and conditions posted for a specific area of the Services or Todoroo Content, the latter terms and conditions will take precedence with respect to your use of or access to that area of the Services or Todoroo Content.
YOU ACKNOWLEDGE AND AGREE THAT, BY CLICKING ON THE "I AGREE" OR "I ACCEPT" BUTTON, OR BY ACCESSING OR USING THE SERVICES OR BY DOWNLOADING OR POSTING ANY CONTENT FROM OR ON THE SITES OR THROUGH THE SERVICES, YOU ARE INDICATING THAT YOU HAVE READ, UNDERSTAND AND AGREE TO BE BOUND BY THESE TERMS, WHETHER OR NOT YOU HAVE REGISTERED AS A MEMBER, AND AGREE TO OUR PRIVACY POLICY AS DESCRIBED BELOW. IF YOU DO NOT AGREE TO THESE TERMS, THEN YOU HAVE NO RIGHT TO ACCESS OR USE THE SERVICES OR TODOROO CONTENT.
Modification
Todoroo reserves the right, at its sole discretion, to modify, discontinue or terminate the Services, including any portion thereof on a global or individual basis, or to modify these Terms of Service, at any time and without prior notice. If we modify these Terms of Service, we will update the "Last Updated Date" above and post the modification on the Sites and perhaps elsewhere within the Services. By continuing to access or use the Services after we have posted a modification to these Terms of Service or have provided you with notice of a modification, you are indicating that you agree to be bound by the modified Terms of Service. If the modified Terms of Service are not acceptable to you, your only recourse is to cease using the Services.
Eligibility and Todoroo Account Registration
In order to access certain features of the Sites and Services, and to post any Public User Content (defined below) on the Sites or through the Services, you must register to create an account ("Todoroo Account") and become a "Member". In compliance with privacy laws, we do not allow people below the age of 14 to create accounts; please see our Privacy Policy for further information. During the registration process, you will be required to provide certain information and you will establish a username and a password. You agree to provide accurate, current and complete information during the registration process and to update such information to keep it accurate, current and complete. Todoroo reserves the right to suspend or terminate your Todoroo Account if any information provided during the registration process or thereafter proves to be inaccurate, not current or incomplete. If you are not a Member you may browse all areas of the Sites or use the parts of the Services that are not limited to Members only. You are responsible for safeguarding your password. You agree not to disclose your password to any third party and to take sole responsibility for any activities or actions under your Todoroo Account, whether or not you have authorized such activities or actions. You agree to immediately notify Todoroo of any unauthorized use of your Todoroo Account. We are not liable for any damages or losses caused by someone using your account without your permission.
Privacy
Astrid uses Flurry Analytics (http://www.flurry.com) to collect anonymous user statistics. This behavior can be disabled through the settings menu. See Todoroo's Privacy Policy at http://www.todoroo.com/privacy for information and notices concerning Todoroo's collection and use of your personal information. If you have any questions about the Todoroo Privacy Policy, please contact Todoroo at privacy@todoroo.com. By accessing the Services you are agreeing to the terms of our Privacy Policy.
Content
Certain types of content are made available through the Services. "Todoroo Content" means, collectively, the text, data, graphics, images, illustrations, forms and look and feel attributes, Todoroo trademarks and logos and other content made available through the Services, including any technology or code making up the Services, excluding Public User Content. "Public User Content" means the text, data, graphics, images, photos, video or audiovisual content, hypertext links and any other content uploaded, transmitted or submitted by a Member via the Services with the intent to share with other users. "Private User Content" means data created through the services exclusively for personal use or private sharing. This includes tasks and related data created in Astrid Tasks that have not been explicitly shared publicly. You understand that by using any of the Services, you may encounter content that may be deemed offensive, indecent, or objectionable, which content may or may not be identified as having explicit language, and that the results of any search or entering of a particular URL may automatically and unintentionally generate links or references to objectionable material. Nevertheless, you agree to use the Services at your sole risk and that we shall not have any liability to you for content that may be found to be offensive, indecent, or objectionable.
Ownership
The Services and Todoroo Content are protected by copyright, trademark, and other laws of the United States and foreign countries. Except as expressly provided in these Terms of Service, Todoroo and its licensors exclusively own all right, title and interest in and to the Services and Todoroo Content, including all associated intellectual property rights. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Services or Todoroo Content.
Todoroo License
Subject to your compliance with the terms and conditions of these Terms of Service, Todoroo grants you a limited, non-exclusive, non-transferable license, without the right to sublicense, to access, use, view, download and print, where applicable, the Services and any Todoroo Content solely for your personal and non-commercial purposes. You will not use, copy, adapt, modify, prepare derivative works based upon, distribute, license, sell, transfer, publicly display, publicly perform, transmit, stream, broadcast or otherwise exploit the Services or Todoroo Content, except as expressly permitted in these Terms of Service. No licenses or rights are granted to you by implication or otherwise under any intellectual property rights owned or controlled by Todoroo or its licensors, except for the licenses and rights expressly granted in these Terms of Service. With respect to Todoroo Applications, your license is limited to use of such applications on platforms and devices that you own or control, and you may not distribute or make the Todoroo Applications available over a network where it could be used by multiple devices at the same time.
Public User Content
By making available any Public User Content through the Services, you hereby grant to Todoroo a worldwide, irrevocable, perpetual, non-exclusive, transferable, royalty-free license, with the right to sublicense, to use, copy, adapt, modify, distribute, license, sell, transfer, publicly display, publicly perform, transmit, stream, broadcast and otherwise exploit such Public User Content only on, through or by means of the Services. Todoroo does not claim any ownership rights in any such Public User Content and nothing in these Terms of Service will be deemed to restrict any rights that you may have to use and exploit any such Public User Content.
You acknowledge and agree that you are solely responsible for all Public User Content that you make available through the Services. Accordingly, you represent and warrant that: (i) you either are the sole and exclusive owner of all Public User Content that you make available through the Services or you have all rights, licenses, consents and releases that are necessary to grant to Todoroo the rights in such Public User Content, as contemplated under these Terms of Service; and (ii) neither the Public User Content nor your posting, uploading, publication, submission or transmittal of the Public User Content or Todoroo's use of the Public User Content (or any portion thereof) on, through or by means of the Services will infringe, misappropriate or violate a third party's patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy, or result in the violation of any applicable law or regulation.
Copyrighted Materials: No Infringing Use. You will not use the Services to offer, display, distribute, transmit, route, provide connections to or store any material that infringes copyrighted works or otherwise violates or promotes the violation of the intellectual property rights of any third party. Todoroo has adopted and implemented a policy that provides for the termination in appropriate circumstances of the accounts of users who repeatedly infringe or are believed to be or are charged with repeatedly infringing the rights of copyright holders.
Notify Us of Infringers
If you believe that something on the Services violates your copyright, notify our copyright agent in writing. The contact information for our copyright agent is at the bottom of this section.
In order for us to take action, you must do the following in your notice:
(1) provide your physical or electronic signature; (2) identify the copyrighted work that you believe is being infringed; (3) identify the item on the Services that you think is infringing your work and include sufficient information about where the material is located on the Services (including which website and URL) so that we can find it; (4) provide us with a way to contact you, such as your address, telephone number, or e-mail; (5) provide a statement that you believe in good faith that the item you have identified as infringing is not authorized by the copyright owner, its agent, or the law to be used on the Services; and (6) provide a statement that the information you provide in your notice is accurate, and that (under penalty of perjury), you are authorized to act on behalf of the copyright owner whose work is being infringed.
Here is the contact information for our copyright agent:
Copyright Enforcement
Todoroo Inc.
625 Market Street
5th Floor
San Francisco, CA 94105
Phone: (888) 832-7251
Fax: (888) 832-7251
E-Mail: copyright@todoroo.com
Again, we cannot take action unless you give us all the required information.
Ratings and Comments & Feedback.
You can rate and make comments about content made available through the Services ("Comments"). Todoroo advises you to exercise caution and good judgment when leaving such Comments. Once you complete and submit your Comments to the Services you will not be able to go back and edit your Comments. You should also be aware that you could be held legally responsible for damages to someone's reputation if your Comments are deemed to be defamatory. Without limiting any other terms of this Terms of Service, Todoroo may, but is under no obligation to, monitor or censor Comments and disclaims any and all liability relating thereto. Notwithstanding the foregoing, Todoroo does reserve the right, in its sole discretion, to remove any Comments that it deems to be improper, inappropriate or inconsistent with the online activities that are permitted under these Terms of Service.
We welcome and encourage you to provide feedback, comments and suggestions for improvements to the Services ("Feedback"). You may submit Feedback by emailing us at support@todoroo.com. You acknowledge and agree that all Comments and Feedback will be the sole and exclusive property of Todoroo and you hereby irrevocably assign to Todoroo and agree to irrevocably assign to Todoroo all of your right, title, and interest in and to all Comments and Feedback, including without limitation all worldwide patent rights, copyright rights, trade secret rights, and other proprietary or intellectual property rights therein. At Todoroo's request and expense, you will execute documents and take such further acts as Todoroo may reasonably request to assist Todoroo to acquire, perfect, and maintain its intellectual property rights and other legal protections for the Comments and Feedback.
Interactions between Users
You are solely responsible for your interactions (including any disputes) with other users. You understand that Todoroo does not in any way screen Todoroo users, except to only allow people aged 14 and over to create accounts. You are solely responsible for, and will exercise caution, discretion, common sense and judgment in, using the Services and disclosing personal information to other Todoroo users. You agree to take reasonable precautions in all interactions with other Todoroo users, particularly if you decide to meet a Todoroo user offline, or in person. Your use of the Services, Todoroo Content and any other content made available through the Services is at your sole risk and discretion and Todoroo hereby disclaims any and all liability to you or any third party relating thereto. Todoroo reserves the right to contact Members, in compliance with applicable law, in order to evaluate compliance with the rules and policies in these Terms of Service. You will cooperate fully with Todoroo to investigate any suspected unlawful, fraudulent or improper activity, including, without limitation, granting authorized Todoroo representatives access to any password-protected portions of your Todoroo Account.
General Prohibitions
You agree not to do any of the following while using the Services or Todoroo Content:
- Post, upload, publish, submit or transmit any text, graphics, images, software, music, audio, video, information or other material that: (i) infringes, misappropriates or violates a third party's patent, copyright, trademark, trade secret, moral rights or other intellectual property rights, or rights of publicity or privacy; (ii) violates, or encourages any conduct that would violate, any applicable law or regulation or would give rise to civil liability; (iii) is fraudulent, false, misleading or deceptive; (iv) is defamatory, obscene, pornographic, vulgar or offensive; (v) promotes discrimination, bigotry, racism, hatred, harassment or harm against any individual or group; (vi) is violent or threatening or promotes violence or actions that are threatening to any other person; or (vii) promotes illegal or harmful activities or substances (including but not limited to activities that promote or provide instructional information regarding the manufacture or purchase of illegal weapons or illegal substances).
- Use, display, mirror, frame or utilize framing techniques to enclose the Services, or any individual element or materials within the Services, Todoroo's name, any Todoroo trademark, logo or other proprietary information, the content of any text or the layout and design of any page or form contained on a page, without Todoroo's express written consent;
- Access, tamper with, or use non-public areas of the Services, Todoroo's computer systems, or the technical delivery systems of Todoroo's providers;</li>
- Attempt to probe, scan, or test the vulnerability of any Todoroo system or network or breach any security or authentication measures;
- Avoid, bypass, remove, deactivate, impair, descramble or otherwise circumvent any technological measure implemented by Todoroo or any of Todoroo's providers or any other third party (including another user) to protect the Services or Todoroo Content;
- Attempt to access or search the Services or Todoroo Content or download Todoroo Content from the Services through the use of any engine, software, tool, agent, device or mechanism (including spiders, robots, crawlers, data mining tools or the like) other than the software and/or search agents provided by Todoroo or other generally available third party web browsers (such as Google Chrome, Microsoft Internet Explorer, Mozilla Firefox, Safari or Opera);
- Send any unsolicited or unauthorized advertising, promotional materials, email, junk mail, spam, chain letters or other form of solicitation;
- Use any meta tags or other hidden text or metadata utilizing a Todoroo trademark, logo URL or product name without Todoroo's express written consent;
- Use the Services or Todoroo Content for any commercial purpose or the benefit of any third party or in any manner not permitted by these Terms of Service;
- Forge any TCP/IP packet header or any part of the header information in any email or newsgroup posting, or in any way use the Services or Todoroo Content to send altered, deceptive or false source-identifying information;
- Attempt to decipher, decompile, disassemble or reverse engineer any of the software used to provide the Services or Todoroo Content;
- Interfere with, or attempt to interfere with, the access of any user, host or network, including, without limitation, sending a virus, overloading, flooding, spamming, or mail-bombing the Services;
- Collect or store any personally identifiable information from the Services from other users of the Services without their express permission;
- Impersonate or misrepresent your affiliation with any person or entity; Violate any applicable law or regulation; or - Encourage or enable any other individual to do any of the foregoing.
Todoroo will have the right to investigate and prosecute violations of any of the above, including intellectual property rights infringement and Services security issues, to the fullest extent of the law. Todoroo may involve and cooperate with law enforcement authorities in prosecuting users who violate these Terms of Service. You acknowledge that Todoroo has no obligation to monitor your access to or use of the Services or Todoroo Content or to review or edit any Public User Content, but has the right to do so for the purpose of operating the Services, to ensure your compliance with these Terms of Service, or to comply with applicable law or the order or requirement of a court, administrative agency or other governmental body. Todoroo reserves the right, at any time and without prior notice, to remove or disable access to any Todoroo Content, including, any Public User Content, that Todoroo, in its sole discretion, considers to be in violation of these Terms of Service or otherwise harmful to the Services.
Links
The Services may contain links to third-party websites or resources. You acknowledge and agree that Todoroo is not responsible or liable for: (i) the availability or accuracy of such websites or resources; or (ii) the content, products, or services on or available from such websites or resources. Links to such websites or resources do not imply any endorsement by Todoroo of such websites or resources or the content, products, or services available from such websites or resources. You acknowledge sole responsibility for and assume all risk arising from your use of any such websites or resources.
Termination and Todoroo Account; Cancellation
Without limiting other remedies, Todoroo may at any time suspend or terminate your Todoroo Account and refuse to provide access to the Services. In addition, Todoroo may notify authorities or take any actions it deems appropriate, without notice to you, if Todoroo suspects or determines, in its own discretion, that you may have or there is a significant risk that you have (i) failed to comply with any provision of these Terms of Service or any policies or rules established by Todoroo; or (ii) engaged in actions relating to or in the course of using the Services that may be illegal or cause liability, harm, embarrassment, harassment, abuse or disruption for you, Todoroo Users, Todoroo or any other third parties or the Services.
You may terminate your Todoroo Account at any time and for any reason by sending email to support@todoroo.com. Upon any termination by a Member, the related account will no longer be accessible.
After any termination, you understand and acknowledge that we will have no further obligation to provide the Services and all licenses and other rights granted to you by these Terms of Service will immediately cease. Todoroo will not be liable to you or any third party for termination of the Services or termination of your use of either. UPON ANY TERMINATION OR SUSPENSION, ANY CONTENT, MATERIALS OR INFORMATION (INCLUDING PUBLIC USER CONTENT) THAT YOU HAVE SUBMITTED ON THE SERVICES OR THAT WHICH IS RELATED TO YOUR ACCOUNT MAY NO LONGER BE ACCESSED BY YOU. Furthermore, Todoroo will have no obligation to maintain any information stored in our database related to your account or to forward any information to you or any third party.
Any suspension, termination or cancellation will not affect your obligations to Todoroo under these Terms of Service (including, without limitation, proprietary rights and ownership, indemnification and limitation of liability), which by their sense and context are intended to survive such suspension, termination or cancellation.
Disclaimers
THE SERVICES, TODOROO CONTENT AND Public User Content ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT LIMITING THE FOREGOING, TODOROO EXPLICITLY DISCLAIMS ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT, AND ANY WARRANTIES ARISING OUT OF COURSE OF DEALING OR USAGE OF TRADE.
TODOROO MAKES NO WARRANTY THAT THE SERVICES, TODOROO CONTENT OR PUBLIC USER CONTENT WILL MEET YOUR REQUIREMENTS OR BE AVAILABLE ON AN UNINTERRUPTED, SECURE, OR ERROR-FREE BASIS. TODOROO MAKES NO WARRANTY REGARDING THE QUALITY OF ANY PRODUCTS, SERVICES OR CONTENT PURCHASED OR OBTAINED THROUGH THE SERVICES OR THE ACCURACY, TIMELINESS, TRUTHFULNESS, COMPLETENESS OR RELIABILITY OF ANY CONTENT OBTAINED THROUGH THE SERVICES.
NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM TODOROO OR THROUGH THE SERVICES, TODOROO CONTENT OR Public User Content, WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.
Indemnity
You agree to defend, indemnify, and hold Todoroo, its officers, directors, employees and agents, harmless from and against any claims, liabilities, damages, losses, and expenses, including, without limitation, reasonable legal and accounting fees, arising out of or in any way connected with Public User Content you submit to Todoroo, your access to or use of the Services or Todoroo Content, or your violation of these Terms of Service.
Limitation of Liability
YOU ACKNOWLEDGE AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE ENTIRE RISK ARISING OUT OF YOUR ACCESS TO AND USE OF THE SERVICES AND CONTENT THEREIN REMAINS WITH YOU. NEITHER TODOROO NOR ANY OTHER PARTY INVOLVED IN CREATING, PRODUCING, OR DELIVERING THE SERVICES OR TODOROO CONTENT WILL BE LIABLE FOR ANY INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, LOSS OF DATA OR LOSS OF GOODWILL, SERVICE INTERRUPTION, COMPUTER DAMAGE OR SYSTEM FAILURE OR THE COST OF SUBSTITUTE PRODUCTS OR SERVICES, ARISING OUT OF OR IN CONNECTION WITH THESE TERMS OR FROM THE USE OF OR INABILITY TO USE THE SERVICES OR CONTENT THEREIN, WHETHER BASED ON WARRANTY, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY, AND WHETHER OR NOT TODOROO HAS BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGE, EVEN IF A LIMITED REMEDY SET FORTH HEREIN IS FOUND TO HAVE FAILED OF ITS ESSENTIAL PURPOSE. YOU SPECIFICALLY ACKNOWLEDGE THAT TODOROO IS NOT LIABLE FOR THE DEFAMATORY, OFFENSIVE OR ILLEGAL CONDUCT OF OTHER USERS OR THIRD PARTIES AND THAT THE RISK OF INJURY FROM THE FOREGOING RESTS ENTIRELY WITH YOU. FURTHER, TODOROO WILL HAVE NO LIABILITY TO YOU OR TO ANY THIRD PARTY FOR ANY PUBLIC USER CONTENT OR THIRD-PARTY CONTENT UPLOADED ONTO OR DOWNLOADED FROM THE SITES OR THROUGH THE SERVICES.
IN NO EVENT WILL TODOROO'S AGGREGATE LIABILITY ARISING OUT OF OR IN CONNECTION WITH THESE TERMS OF SERVICE OR FROM THE USE OF OR INABILITY TO USE THE SITE, SERVICES OR CONTENT THEREIN EXCEED ONE HUNDRED U.S. DOLLARS ($100). THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN TODOROO AND YOU. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, SO THE ABOVE LIMITATION MAY NOT APPLY TO YOU.
Proprietary Rights Notices
All trademarks, service marks, logos, trade names and any other proprietary designations of Todoroo used herein are trademarks or registered trademarks of Todoroo. Any other trademarks, service marks, logos, trade names and any other proprietary designations are the trademarks or registered trademarks of their respective parties.
Controlling Law and Jurisdiction
These Terms of Service and any action related thereto will be governed by the laws of the State of California without regard to its conflict of laws provisions. The exclusive jurisdiction and venue of any action with respect to the subject matter of these Terms of Service will be the courts having jurisdiction over disputes arising in Santa Clara County, California, and each of the parties hereto waives any objection to jurisdiction and venue in such courts.
YOU AGREE THAT IF YOU WANT TO SUE US, YOU MUST FILE YOUR LAWSUIT WITHIN ONE YEAR AFTER THE EVENT THAT GAVE RISE TO YOUR LAWSUIT. OTHERWISE, YOUR LAWSUIT WILL BE PERMANENTLY BARRED.
Export Control
You may not use or otherwise export or re-export the Services except as authorized by United States law and the laws of the jurisdiction in which the Services were obtained. In particular, but without limitation, the Services may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Services, you represent and warrant that you are not located in any such country or on any such list. You also agree that you will not use these products for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of nuclear, missiles, or chemical or biological weapons.
Entire Agreement
These Terms of Service constitute the entire and exclusive understanding and agreement between Todoroo and you regarding the Services and Todoroo Content, and these Terms of Service supersede and replace any and all prior oral or written understandings or agreements between Todoroo and you regarding the Services and Todoroo Content.
Assignment
You may not assign or transfer these Terms of Service, by operation of law or otherwise, without Todoroo's prior written consent. Any attempt by you to assign or transfer these Terms of Service, without such consent, will be null and of no effect. Todoroo may freely assign these Terms of Service. Subject to the foregoing, these Terms of Service will bind and inure to the benefit of the parties, their successors and permitted assigns.
Notices
You consent to the use of: (i) electronic means to complete these Terms of Service and to deliver any notices or other communications permitted or required hereunder; and (ii) electronic records to store information related to these Terms of Service or your use of the Services. Any notices or other communications permitted to required hereunder, including those regarding modifications to these Terms of Service, will be in writing and given: (x) by Todoroo via email (in each case to the address that you provide) or (y) by posting to the Sites or Services. For notices made by e-mail, the date of receipt will be deemed the date on which such notice is transmitted.
General
The failure of Todoroo to enforce any right or provision of these Terms of Service will not constitute a waiver of future enforcement of that right or provision. The waiver of any such right or provision will be effective only if in writing and signed by a duly authorized representative of Todoroo. Except as expressly set forth in these Terms of Service, the exercise by either party of any of its remedies under these Terms of Service will be without prejudice to its other remedies under these Terms of Service or otherwise. If for any reason a court of competent jurisdiction finds any provision of these Terms of Service invalid or unenforceable, that provision will be enforced to the maximum extent permissible and the other provisions of these Terms of Service will remain in full force and effect.
Contacting Us
If you have any questions about these Terms of Service, please contact Todoroo at support@todoroo.com.

@ -75,9 +75,6 @@
<string name="DLG_delete_this_item_question">Voleu suprimir aquest element: %s?</string>
<string name="DLG_upgrading">S\'estan actualitzant les vostres tasques...</string>
<string name="DLG_hour_minutes">Temps (hores : minuts)</string>
<string name="DLG_accept">Accepto</string>
<string name="DLG_decline">Declino</string>
<string name="DLG_eula_title">Condicions d\'ús de l\'Tasks</string>
<string name="DLG_loading">S\'està carregant…</string>
<string name="DLG_ok">Accepta</string>
<string name="DLG_cancel">Cancel·la</string>

@ -72,9 +72,6 @@
<string name="DLG_delete_this_item_question">Smazat tuto položku: %s?</string>
<string name="DLG_upgrading">Obnovování vašich úkolů...</string>
<string name="DLG_hour_minutes">Čas (hodin : minut)</string>
<string name="DLG_accept">Souhlasím</string>
<string name="DLG_decline">Odmítám</string>
<string name="DLG_eula_title">Podmínky užívání programu Tasks</string>
<string name="DLG_loading">Nahrávám...</string>
<string name="DLG_cancel">Storno</string>
<string name="DLG_undo">Vrátit změny</string>

@ -58,9 +58,6 @@
<string name="DLG_delete_this_item_question">Slet dette element: %s?</string>
<string name="DLG_upgrading">Opgraderer dine opgaver...</string>
<string name="DLG_hour_minutes">Tid (timer : minutter)</string>
<string name="DLG_accept">Jeg accepterer</string>
<string name="DLG_decline">Jeg accepterer ikke</string>
<string name="DLG_eula_title">Tasks Brugsbetingelser</string>
<string name="DLG_loading">Indlæser...</string>
<string name="WID_dateButtonUnset">Tryk for at indstille</string>
<string name="TLA_menu_sort">Sorter &amp; skjulte</string>

@ -93,9 +93,6 @@
<string name="DLG_delete_this_item_question">Dieses Element löschen: %s?</string>
<string name="DLG_upgrading">Ihre Aufgaben werden aktualisiert …</string>
<string name="DLG_hour_minutes">Zeit (Stunden : Minuten)</string>
<string name="DLG_accept">Ich akzeptiere</string>
<string name="DLG_decline">Ich akzeptiere nicht</string>
<string name="DLG_eula_title">Tasks Nutzungsbedingungen</string>
<string name="DLG_loading">Ladevorgang…</string>
<string name="DLG_cancel">Abbrechen</string>
<string name="DLG_undo">Rückgängig</string>

@ -99,9 +99,6 @@
<string name="DLG_delete_this_item_question">¿Eliminar este elemento: %s?</string>
<string name="DLG_upgrading">Actualizando sus tareas....</string>
<string name="DLG_hour_minutes">Tiempo (horas : minutos)</string>
<string name="DLG_accept">Acepto</string>
<string name="DLG_decline">No acepto</string>
<string name="DLG_eula_title">Términos de uso de Tasks</string>
<string name="DLG_loading">Cargando...</string>
<string name="DLG_ok">Aceptar</string>
<string name="DLG_cancel">Cancelar</string>

@ -96,9 +96,6 @@
<string name="DLG_delete_this_item_question">Effacer cet élément: %s</string>
<string name="DLG_upgrading">Mise à jour de vos tâches…</string>
<string name="DLG_hour_minutes">Temps (heures : minutes)</string>
<string name="DLG_accept">J\'accepte</string>
<string name="DLG_decline">Je refuse</string>
<string name="DLG_eula_title">Conditions d\'utilisation d\'Tasks</string>
<string name="DLG_loading">Chargement…</string>
<string name="DLG_cancel">Annuler</string>
<string name="DLG_undo">Annuler Action</string>

@ -89,9 +89,6 @@
<string name="DLG_delete_this_item_question">Cancella questo articolo: %s?</string>
<string name="DLG_upgrading">Aggiornare le attività ...</string>
<string name="DLG_hour_minutes">Tempo (ore : minuti)</string>
<string name="DLG_accept">Accetto</string>
<string name="DLG_decline">Rifiuto</string>
<string name="DLG_eula_title">Termini di Utilizzo di Tasks</string>
<string name="DLG_loading">Caricamento...</string>
<string name="DLG_cancel">Annulla</string>
<string name="DLG_undo">Annulla l\'ultima azione</string>

@ -91,9 +91,6 @@
<string name="DLG_delete_this_item_question">למחוק את %s?</string>
<string name="DLG_upgrading">משדרגת את משימותיך...</string>
<string name="DLG_hour_minutes">זמן (שעות : דקות)</string>
<string name="DLG_accept">אני מסכים</string>
<string name="DLG_decline">אינני מסכים</string>
<string name="DLG_eula_title">Tasks תנאי שימוש</string>
<string name="DLG_loading">טוענת...</string>
<string name="DLG_ok">אישור</string>
<string name="DLG_cancel">בטל</string>

@ -73,9 +73,6 @@
<string name="DLG_delete_this_item_question">項目 %s を削除しますか?</string>
<string name="DLG_upgrading">タスクを更新しています</string>
<string name="DLG_hour_minutes">時間 (時:分)</string>
<string name="DLG_accept">同意する</string>
<string name="DLG_decline">同意しない</string>
<string name="DLG_eula_title">Tasks 利用規定</string>
<string name="DLG_loading">読み込んでいます・・・</string>
<string name="DLG_cancel">取り消す</string>
<string name="DLG_undo">動作を取り消す</string>

@ -101,9 +101,6 @@
<string name="DLG_delete_this_item_question">이 항목을 삭제할까요: %s?</string>
<string name="DLG_upgrading">일정 업그레이드 중...</string>
<string name="DLG_hour_minutes">시간 (시 : 분)</string>
<string name="DLG_accept">동의합니다</string>
<string name="DLG_decline">거절합니다</string>
<string name="DLG_eula_title">Tasks 사용 약관</string>
<string name="DLG_loading">불러오는 중...</string>
<string name="DLG_ok">확인</string>
<string name="DLG_cancel">취소</string>

@ -40,9 +40,6 @@
<string name="DLG_delete_this_item_question">Slett følgende: %s?</string>
<string name="DLG_upgrading">Oppgraderer oppgavene dine...</string>
<string name="DLG_hour_minutes">Tid (timer : minutter)</string>
<string name="DLG_accept">Jeg godkjenner</string>
<string name="DLG_decline">Jeg godkjenner ikke</string>
<string name="DLG_eula_title">Tasks Brukervilkår</string>
<string name="DLG_loading">Laster ...</string>
<string name="WID_dateButtonUnset">Klikk for å sette</string>
<string name="TLA_menu_sort">Sorter &amp; Skjult</string>

@ -96,9 +96,6 @@
<string name="DLG_delete_this_item_question">Dit item verwijderen: %s?</string>
<string name="DLG_upgrading">Taken bijwerken...</string>
<string name="DLG_hour_minutes">Tijd (uren : minuten)</string>
<string name="DLG_accept">Accoord</string>
<string name="DLG_decline">Afwijzen</string>
<string name="DLG_eula_title">Algemene Voorwaarden</string>
<string name="DLG_loading">Laden…</string>
<string name="DLG_cancel">Annuleren</string>
<string name="DLG_undo">Ongedaan Maken</string>

@ -95,9 +95,6 @@
<string name="DLG_delete_this_item_question">Usunąć element: %s?</string>
<string name="DLG_upgrading">Uaktualniam Twoje zadania...</string>
<string name="DLG_hour_minutes">Czas (godziny : minuty)</string>
<string name="DLG_accept">Zgadzam się</string>
<string name="DLG_decline">Nie zgadzam się</string>
<string name="DLG_eula_title">Warunki użytkowania Tasks</string>
<string name="DLG_loading">Ładowanie...</string>
<string name="DLG_cancel">Anuluj</string>
<string name="DLG_undo">Cofnij</string>

@ -90,9 +90,6 @@
<string name="DLG_delete_this_item_question">Excluir este item: %s?</string>
<string name="DLG_upgrading">Atualizando suas tarefas...</string>
<string name="DLG_hour_minutes">Horário (horas:minutos)</string>
<string name="DLG_accept">Eu aceito</string>
<string name="DLG_decline">Recusar</string>
<string name="DLG_eula_title">Termos de uso do Tasks</string>
<string name="DLG_loading">Carregando...</string>
<string name="DLG_cancel">Cancelar</string>
<string name="DLG_undo">Desfazer</string>

@ -60,8 +60,6 @@
<string name="DLG_delete_this_item_question">Apagar este item: %s?</string>
<string name="DLG_upgrading">A actualizar as suas tarefas...</string>
<string name="DLG_hour_minutes">Tempo (horas : minutos)</string>
<string name="DLG_accept">Eu Aceito</string>
<string name="DLG_decline">Eu Recuso</string>
<string name="DLG_loading">Carregando...</string>
<string name="WID_dateButtonUnset">Pressione para confirmar</string>
<string name="TLA_no_items">Sem Tarefas!</string>

@ -95,9 +95,6 @@
<string name="DLG_delete_this_item_question">Удалить этот элемент: %s?</string>
<string name="DLG_upgrading">Обновление ваших задач…</string>
<string name="DLG_hour_minutes">Время (час : мин)</string>
<string name="DLG_accept">Принимаю</string>
<string name="DLG_decline">Отказываюсь</string>
<string name="DLG_eula_title">Условия использования Tasks</string>
<string name="DLG_loading">Загрузка...</string>
<string name="DLG_ok">ОК</string>
<string name="DLG_cancel">Отмена</string>

@ -86,9 +86,6 @@
<string name="DLG_delete_this_item_question">Radera följande: %s?</string>
<string name="DLG_upgrading">Uppgraderar dina uppgifter...</string>
<string name="DLG_hour_minutes">Tid (timmar : minuter)</string>
<string name="DLG_accept">Jag godkänner</string>
<string name="DLG_decline">Jag godkänner inte</string>
<string name="DLG_eula_title">Tasks Användarvillkor</string>
<string name="DLG_loading">Laddar...</string>
<string name="DLG_cancel">Avbryt</string>
<string name="DLG_undo">Ångra</string>

@ -30,9 +30,6 @@
<string name="DLG_delete_this_task_question">ลบงานนี้?</string>
<string name="DLG_delete_this_item_question">ลบรายการนี้: %s?</string>
<string name="DLG_hour_minutes">เวลา (ชั่วโมง : นาที)</string>
<string name="DLG_accept">ฉันยอมรับ</string>
<string name="DLG_decline">ฉันปฏิเสธ</string>
<string name="DLG_eula_title">เงื่อนไขการใช้งาน Tasks</string>
<string name="DLG_loading">กำลังโหลด...</string>
<string name="WID_dateButtonUnset">คลิก เพื่อตั้งค่า</string>
<string name="TLA_no_items">ไม่มีแผนงานใดๆ !</string>

@ -86,9 +86,6 @@
<string name="DLG_delete_this_item_question">Öğe silinsin mi: %s?</string>
<string name="DLG_upgrading">Görevleriniz güncelleniyor...</string>
<string name="DLG_hour_minutes">Zaman (saat : dakika)</string>
<string name="DLG_accept">Kabul Et</string>
<string name="DLG_decline">Reddet</string>
<string name="DLG_eula_title">Tasks Kullanım Koşulları</string>
<string name="DLG_loading">Yükleniyor...</string>
<string name="DLG_ok">Tamam</string>
<string name="DLG_cancel">Vazgeç</string>

@ -99,9 +99,6 @@
<string name="DLG_delete_this_item_question">Видалити цей пункт: %s?</string>
<string name="DLG_upgrading">Оновлення ваших завдань...</string>
<string name="DLG_hour_minutes">Час (години : хвилини)</string>
<string name="DLG_accept">Приймаю</string>
<string name="DLG_decline">Відхиляю</string>
<string name="DLG_eula_title">Умови використання</string>
<string name="DLG_loading">Завантаження...</string>
<string name="DLG_ok">Так</string>
<string name="DLG_cancel">Відміна</string>

@ -89,9 +89,6 @@
<string name="DLG_delete_this_item_question">删除此项目:%s</string>
<string name="DLG_upgrading">升级您的任务...</string>
<string name="DLG_hour_minutes">时间(小时:分钟)</string>
<string name="DLG_accept">接受</string>
<string name="DLG_decline">不接受</string>
<string name="DLG_eula_title">清单小助理使用条款</string>
<string name="DLG_loading">载入中...</string>
<string name="DLG_ok">确定(O)</string>
<string name="DLG_cancel">取消</string>

@ -89,9 +89,6 @@
<string name="DLG_delete_this_item_question">刪除此項目: %s?</string>
<string name="DLG_upgrading">升級您的工作...</string>
<string name="DLG_hour_minutes">時間 (小時:分鐘)</string>
<string name="DLG_accept">接受</string>
<string name="DLG_decline">不接受</string>
<string name="DLG_eula_title">Tasks 使用條款</string>
<string name="DLG_loading">載入中...</string>
<string name="DLG_ok">確定(O)</string>
<string name="DLG_cancel">取消</string>

@ -32,15 +32,6 @@
<!-- Title for dialog selecting a time (hours and minutes) -->
<string name="DLG_hour_minutes">Time (hours : minutes)</string>
<!-- Button for accepting EULA -->
<string name="DLG_accept">I Accept</string>
<!-- Button for declining EULA -->
<string name="DLG_decline">I Decline</string>
<!-- EULA title -->
<string name="DLG_eula_title">Terms Of Use</string>
<!-- Dialog - loading -->
<string name="DLG_loading">Loading...</string>

Loading…
Cancel
Save