├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── dialog ├── ca-es │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── ItIsNight.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── ParticularTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ └── ToCancelInstructions.dialog ├── de-de │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── en-us │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── es-es │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── eu-eu │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── ItIsNight.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── ParticularTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ └── ToCancelInstructions.dialog ├── fa-ir │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── fr-fr │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── gl-es │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── ItIsNight.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── ParticularTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ └── ToCancelInstructions.dialog ├── it-it │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── nl-nl │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── pl-pl │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── ItIsNight.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── ParticularTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ └── ToCancelInstructions.dialog ├── pt-br │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── ItIsNight.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── ParticularTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ └── ToCancelInstructions.dialog ├── ru-ru │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog └── sv-se │ ├── AboutWhat.dialog │ ├── AreYouSure.dialog │ ├── ByTheWay.dialog │ ├── ClearAll.dialog │ ├── ClearedAll.dialog │ ├── ConfirmRemoveDay.dialog │ ├── Fine.dialog │ ├── ItIsNight.dialog │ ├── My.dialog │ ├── NextOtherDate.dialog │ ├── NextToday.dialog │ ├── NextTomorrow.dialog │ ├── NoActive.dialog │ ├── NoDateTime.dialog │ ├── NoRemindersForDate.dialog │ ├── NoUpcoming.dialog │ ├── Ok.dialog │ ├── Our.dialog │ ├── ParticularTime.dialog │ ├── ReminderAtTime.dialog │ ├── ReminderCancelled.dialog │ ├── Reminding.dialog │ ├── RemindingInFifteen.dialog │ ├── SavingReminder.dialog │ ├── SavingReminderDate.dialog │ ├── SavingReminderTomorrow.dialog │ ├── SpecifyTime.dialog │ ├── ToCancelInstructions.dialog │ ├── Today.dialog │ ├── Tomorrow.dialog │ └── Your.dialog ├── test ├── __init__.py ├── behave │ ├── reminder.feature │ └── steps │ │ └── reminder.py └── intent │ ├── 001.reminder.in.2.days.json │ ├── 002.notify.on.friday.json │ ├── 003.check.reminders.today.json │ ├── 004.reminder.during.night.json │ ├── reminder.tomorrow.morning.json.deactivated │ └── show.all.reminders.json.deactivated ├── twoBeep.wav └── vocab ├── ca-es ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── de-de ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── en-us ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── es-es ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── eu-eu ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── fa-ir ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── fr-fr ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── gl-es ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── it-it ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── nl-nl ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── pl-pl ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── pt-br ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent ├── ru-ru ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent └── sv-se ├── CancelActiveReminder.intent ├── ClearReminders.intent ├── DeleteReminderForDay.intent ├── GetNextReminders.intent ├── GetRemindersForDay.intent ├── Reminder.intent ├── ReminderAt.intent ├── SnoozeReminder.intent ├── SomethingReminder.intent └── UnspecifiedReminderAt.intent /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | settings.json 3 | mycroft -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Set reminders 2 | Set single and repeating reminders for tasks 3 | 4 | ## About 5 | Flexible reminder Skill, allowing you to set single and repeating reminders for tasks. The reminders are set on the Device, and have no external dependencies. 6 | 7 | ## Examples 8 | * "Set a reminder every day to take my vitamin pill" 9 | * "Remind me to put the garbage out at 8pm" 10 | * "Remind me to walk the dog in an hour" 11 | * "Set a reminder every Friday at 2pm" 12 | * "Remind me to stretch in 10 minutes" 13 | 14 | ## Credits 15 | Mycroft AI (@MycroftAI) 16 | 17 | ## Category 18 | **Daily** 19 | 20 | ## Tags 21 | #reminder 22 | #reminders 23 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Mycroft AI Inc. 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | import re 16 | import time 17 | from os.path import dirname, join 18 | from datetime import datetime, timedelta 19 | from mycroft import MycroftSkill, intent_handler 20 | from mycroft.util.parse import extract_datetime, normalize 21 | from mycroft.util.time import now_local 22 | from mycroft.util.format import nice_time, nice_date 23 | from mycroft.util import play_wav 24 | from mycroft.messagebus.client import MessageBusClient 25 | 26 | REMINDER_PING = join(dirname(__file__), 'twoBeep.wav') 27 | 28 | MINUTES = 60 # seconds 29 | 30 | DEFAULT_TIME = now_local().replace(hour=8, minute=0, second=0) 31 | 32 | def deserialize(dt): 33 | return datetime.strptime(dt, '%Y%d%m-%H%M%S-%z') 34 | 35 | 36 | def serialize(dt): 37 | return dt.strftime('%Y%d%m-%H%M%S-%z') 38 | 39 | 40 | def is_today(d): 41 | return d.date() == now_local().date() 42 | 43 | 44 | def is_tomorrow(d): 45 | return d.date() == now_local().date() + timedelta(days=1) 46 | 47 | 48 | def contains_datetime(utterance, lang='en-us'): 49 | return extract_datetime(utterance) is not None 50 | 51 | 52 | class ReminderSkill(MycroftSkill): 53 | def __init__(self): 54 | super(ReminderSkill, self).__init__() 55 | self.notes = {} 56 | self.primed = False 57 | 58 | self.cancellable = [] # list of reminders that can be cancelled 59 | self.NIGHT_HOURS = [23, 0, 1, 2, 3, 4, 5, 6] 60 | 61 | def initialize(self): 62 | # Handlers for notifications after speak 63 | # TODO Make this work better in test 64 | if isinstance(self.bus, MessageBusClient): 65 | self.bus.on('speak', self.prime) 66 | self.bus.on('mycroft.skill.handler.complete', self.notify) 67 | self.bus.on('mycroft.skill.handler.start', self.reset) 68 | 69 | # Reminder checker event 70 | self.schedule_repeating_event(self.__check_reminder, datetime.now(), 71 | 0.5 * MINUTES, name='reminder') 72 | 73 | def add_notification(self, identifier, note, expiry): 74 | self.notes[identifier] = (note, expiry) 75 | 76 | def prime(self, _): 77 | """Prime the skill on speak messages. 78 | 79 | Will allow the skill to respond if a reminder is about to 80 | expire. 81 | """ 82 | time.sleep(1) 83 | self.primed = True 84 | 85 | def reset(self, _): 86 | """Reset primed state.""" 87 | self.primed = False 88 | 89 | def notify(self, message): 90 | """Notify event. 91 | 92 | If a user interacted with Mycroft and there is an upcoming reminder 93 | (in less than 10 minutes) notify about the upcoming reminder. 94 | """ 95 | # Sleep 10 seconds to provide the user to give further input. 96 | # this will reset the self.primed flag exiting quickly 97 | time.sleep(10) 98 | if self.name in message.data.get('name', ''): 99 | self.primed = False 100 | return 101 | 102 | handled_reminders = [] 103 | now = now_local() 104 | if self.primed: 105 | for r in self.settings.get('reminders', []): 106 | self.log.debug('Checking {}'.format(r)) 107 | dt = deserialize(r[1]) 108 | if now > dt - timedelta(minutes=10) and now < dt and \ 109 | r[0] not in self.cancellable: 110 | handled_reminders.append(r) 111 | self.speak_dialog('ByTheWay', data={'reminder': r[0]}) 112 | self.cancellable.append(r[0]) 113 | 114 | self.primed = False 115 | 116 | def __check_reminder(self, message): 117 | """Repeating event handler. 118 | 119 | Checking if a reminder time has been reached and presents the reminder. 120 | """ 121 | now = now_local() 122 | handled_reminders = [] 123 | for r in self.settings.get('reminders', []): 124 | dt = deserialize(r[1]) 125 | if now > dt: 126 | play_wav(REMINDER_PING) 127 | self.speak_dialog('Reminding', data={'reminder': r[0]}) 128 | handled_reminders.append(r) 129 | if now > dt - timedelta(minutes=10): 130 | self.add_notification(r[0], r[0], dt) 131 | self.remove_handled(handled_reminders) 132 | 133 | def remove_handled(self, handled_reminders): 134 | """The reminder is removed and rescheduled to repeat in 2 minutes. 135 | 136 | It is also marked as "cancellable" allowing "cancel current 137 | reminder" to remove it. 138 | 139 | Repeats a maximum of 3 times. 140 | """ 141 | for r in handled_reminders: 142 | if len(r) == 3: 143 | repeats = r[2] + 1 144 | else: 145 | repeats = 1 146 | self.settings['reminders'].remove(r) 147 | # If the reminer hasn't been repeated 3 times reschedule it 148 | if repeats < 3: 149 | self.speak_dialog('ToCancelInstructions') 150 | new_time = deserialize(r[1]) + timedelta(minutes=2) 151 | self.settings['reminders'].append( 152 | (r[0], serialize(new_time), repeats)) 153 | 154 | # Make the reminder cancellable 155 | if r[0] not in self.cancellable: 156 | self.cancellable.append(r[0]) 157 | else: 158 | # Do not schedule a repeat and remove the reminder from 159 | # the list of cancellable reminders 160 | self.cancellable = [c for c in self.cancellable if c != r[0]] 161 | 162 | def remove_by_name(self, name): 163 | for r in self.settings.get('reminders', []): 164 | if r[0] == name: 165 | break 166 | else: 167 | return False # No matching reminders found 168 | self.settings['reminders'].remove(r) 169 | return True # Matching reminder was found and removed 170 | 171 | def reschedule_by_name(self, name, new_time): 172 | """Reschedule the reminder by it's name 173 | 174 | Arguments: 175 | name: Name of reminder to reschedule. 176 | new_time: New time for the reminder. 177 | 178 | Returns (Bool): True if a reminder was found. 179 | """ 180 | serialized = serialize(new_time) 181 | for r in self.settings.get('reminders', []): 182 | if r[0] == name: 183 | break 184 | else: 185 | return False # No matching reminders found 186 | self.settings['reminders'].remove(r) 187 | self.settings['reminders'].append((r[0], serialized)) 188 | return True 189 | 190 | def date_str(self, d): 191 | if is_today(d): 192 | return self.translate('Today') 193 | elif is_tomorrow(d): 194 | return self.translate('Tomorrow') 195 | else: 196 | return nice_date(d.date()) 197 | 198 | def change_pronouns(self, reminder): 199 | """Change my / our into you / your, etc. 200 | 201 | This would change "my dentist appointment" to 202 | "your dentist appointment" when Mycroft refers to the reminder. 203 | 204 | Arguments: 205 | reminder (str): reminder text 206 | """ 207 | my_regex = r'\b{}\b'.format(self.translate('My')) 208 | our_regex = r'\b{}\b'.format(self.translate('Our')) 209 | your_word = self.translate('Your') 210 | reminder = re.sub(my_regex, your_word, reminder) 211 | reminder = re.sub(our_regex, your_word, reminder) 212 | return reminder 213 | 214 | @intent_handler('ReminderAt.intent') 215 | def add_new_reminder(self, msg=None): 216 | """Handler for adding a reminder with a name at a specific time.""" 217 | reminder = msg.data.get('reminder', None) 218 | if reminder is None: 219 | return self.add_unnamed_reminder_at(msg) 220 | 221 | # mogrify the response TODO: betterify! 222 | reminder = self.change_pronouns(reminder) 223 | utterance = msg.data['utterance'] 224 | reminder_time, rest = (extract_datetime(utterance, now_local(), 225 | self.lang, 226 | default_time=DEFAULT_TIME) or 227 | (None, None)) 228 | 229 | if reminder_time.hour in self.NIGHT_HOURS: 230 | self.speak_dialog('ItIsNight') 231 | if not self.ask_yesno('AreYouSure') == 'yes': 232 | return # Don't add if user cancels 233 | 234 | if reminder_time: # A datetime was extracted 235 | self.__save_reminder_local(reminder, reminder_time) 236 | else: 237 | self.speak_dialog('NoDateTime') 238 | 239 | def __save_reminder_local(self, reminder, reminder_time): 240 | """Speak verification and store the reminder.""" 241 | # Choose dialog depending on the date 242 | if is_today(reminder_time): 243 | self.speak_dialog('SavingReminder', 244 | {'timedate': nice_time(reminder_time)}) 245 | elif is_tomorrow(reminder_time): 246 | self.speak_dialog('SavingReminderTomorrow', 247 | {'timedate': nice_time(reminder_time)}) 248 | else: 249 | self.speak_dialog('SavingReminderDate', 250 | {'time': nice_time(reminder_time), 251 | 'date': nice_date(reminder_time)}) 252 | 253 | # Store reminder 254 | serialized = serialize(reminder_time) 255 | if 'reminders' in self.settings: 256 | self.settings['reminders'].append((reminder, serialized)) 257 | else: 258 | self.settings['reminders'] = [(reminder, serialized)] 259 | 260 | def __save_unspecified_reminder(self, reminder): 261 | if 'unspec' in self.settings: 262 | self.settings['unspec'].append(reminder) 263 | else: 264 | self.settings['unspec'] = [reminder] 265 | self.speak_dialog('Ok') 266 | 267 | def response_is_affirmative(self, response): 268 | return self.voc_match(response, 'yes', self.lang) 269 | 270 | @intent_handler('Reminder.intent') 271 | def add_unspecified_reminder(self, msg=None): 272 | """Starts a dialog to add a reminder when no time was supplied.""" 273 | reminder = msg.data['reminder'] 274 | # Handle the case where padatious misses the time/date 275 | if contains_datetime(msg.data['utterance']): 276 | return self.add_new_reminder(msg) 277 | 278 | response = self.get_response('ParticularTime') 279 | # Check if a time was in the response 280 | dt, rest = extract_datetime(response) or (None, None) 281 | if dt or self.response_is_affirmative(response): 282 | if not dt: 283 | # No time specified 284 | response = self.get_response('SpecifyTime') or '' 285 | dt, rest = extract_datetime(response) or None, None 286 | if not dt: 287 | self.speak_dialog('Fine') 288 | return 289 | 290 | self.__save_reminder_local(reminder, dt) 291 | else: 292 | self.log.debug('put into general reminders') 293 | self.__save_unspecified_reminder(reminder) 294 | 295 | @intent_handler('SomethingReminder.intent') 296 | def add_unnamed_reminder_with_no_time(self, msg=None): 297 | """Add a reminder when no topic or time was stated.""" 298 | response = self.get_response('AboutWhat') 299 | if response is None: 300 | return 301 | else: 302 | msg.data['reminder'] = response 303 | self.add_unspecified_reminder(msg) 304 | 305 | @intent_handler('UnspecifiedReminderAt.intent') 306 | def add_unnamed_reminder_at(self, msg=None): 307 | """Handles the case where a time was given but no reminder name.""" 308 | utterance = msg.data['timedate'] 309 | reminder_time, _ = (extract_datetime(utterance, now_local(), self.lang, 310 | default_time=DEFAULT_TIME) or 311 | (None, None)) 312 | 313 | response = self.get_response('AboutWhat') 314 | if response and reminder_time: 315 | self.__save_reminder_local(response, reminder_time) 316 | 317 | @intent_handler('DeleteReminderForDay.intent') 318 | def remove_reminders_for_day(self, msg=None): 319 | """Remove all reminders for the specified date.""" 320 | if 'date' in msg.data: 321 | date, _ = extract_datetime(msg.data['date'], lang=self.lang) 322 | else: 323 | date, _ = extract_datetime(msg.data['utterance'], lang=self.lang) 324 | 325 | date_str = self.date_str(date or now_local().date()) 326 | 327 | # If no reminders exists for the provided date return; 328 | for r in self.settings['reminders']: 329 | if deserialize(r[1]).date() == date.date(): 330 | break 331 | else: # Let user know that no reminders were removed 332 | self.speak_dialog('NoRemindersForDate', {'date': date_str}) 333 | return 334 | 335 | answer = self.ask_yesno('ConfirmRemoveDay', data={'date': date_str}) 336 | if answer == 'yes': 337 | if 'reminders' in self.settings: 338 | self.settings['reminders'] = [ 339 | r for r in self.settings['reminders'] 340 | if deserialize(r[1]).date() != date.date()] 341 | 342 | @intent_handler('GetRemindersForDay.intent') 343 | def get_reminders_for_day(self, msg=None): 344 | """ List all reminders for the specified date. """ 345 | if 'date' in msg.data: 346 | date, _ = extract_datetime(msg.data['date'], lang=self.lang) 347 | else: 348 | date, _ = extract_datetime(msg.data['utterance'], lang=self.lang) 349 | 350 | if 'reminders' in self.settings: 351 | reminders = [r for r in self.settings['reminders'] 352 | if deserialize(r[1]).date() == date.date()] 353 | if len(reminders) > 0: 354 | for r in reminders: 355 | reminder, dt = (r[0], deserialize(r[1])) 356 | dialog_data = {'reminder': reminder, 'time': nice_time(dt)} 357 | self.speak_dialog('ReminderAtTime', data=dialog_data) 358 | return 359 | self.speak_dialog('NoUpcoming') 360 | 361 | @intent_handler('GetNextReminders.intent') 362 | def get_next_reminder(self, msg=None): 363 | """ Get the first upcoming reminder. """ 364 | if len(self.settings.get('reminders', [])) > 0: 365 | reminders = [(r[0], deserialize(r[1])) 366 | for r in self.settings['reminders']] 367 | next_reminder = sorted(reminders, key=lambda tup: tup[1])[0] 368 | 369 | if is_today(next_reminder[1]): 370 | self.speak_dialog('NextToday', 371 | data={'time': nice_time(next_reminder[1]), 372 | 'reminder': next_reminder[0]}) 373 | elif is_tomorrow(next_reminder[1]): 374 | self.speak_dialog('NextTomorrow', 375 | data={'time': nice_time(next_reminder[1]), 376 | 'reminder': next_reminder[0]}) 377 | else: 378 | self.speak_dialog('NextOtherDate', 379 | data={'time': nice_time(next_reminder[1]), 380 | 'date': nice_date(next_reminder[1]), 381 | 'reminder': next_reminder[0]}) 382 | else: 383 | self.speak_dialog('NoUpcoming') 384 | 385 | def __cancel_active(self): 386 | """ Cancel all active reminders. """ 387 | remove_list = [] 388 | ret = len(self.cancellable) > 0 # there were reminders to cancel 389 | for c in self.cancellable: 390 | if self.remove_by_name(c): 391 | remove_list.append(c) 392 | for c in remove_list: 393 | self.cancellable.remove(c) 394 | return ret 395 | 396 | @intent_handler('CancelActiveReminder.intent') 397 | def cancel_active(self, message): 398 | """ Cancel a reminder that's been triggered (and is repeating every 399 | 2 minutes. """ 400 | if self.__cancel_active(): 401 | self.speak_dialog('ReminderCancelled') 402 | else: 403 | self.speak_dialog('NoActive') 404 | 405 | @intent_handler('SnoozeReminder.intent') 406 | def snooze_active(self, message): 407 | """ Snooze the triggered reminders for 15 minutes. """ 408 | remove_list = [] 409 | for c in self.cancellable: 410 | if self.reschedule_by_name(c, 411 | now_local() + timedelta(minutes=15)): 412 | self.speak_dialog('RemindingInFifteen') 413 | remove_list.append(c) 414 | for c in remove_list: 415 | self.cancellable.remove(c) 416 | 417 | @intent_handler('ClearReminders.intent') 418 | def clear_all(self, message): 419 | """ Clear all reminders. """ 420 | if self.ask_yesno('ClearAll') == 'yes': 421 | self.__cancel_active() 422 | self.settings['reminders'] = [] 423 | self.speak_dialog('ClearedAll') 424 | 425 | def stop(self, message=None): 426 | if self.__cancel_active(): 427 | self.speak_dialog('ReminderCancelled') 428 | return True 429 | else: 430 | return False 431 | 432 | def shutdown(self): 433 | if isinstance(self.bus, MessageBusClient): 434 | self.bus.remove('speak', self.prime) 435 | self.bus.remove('mycroft.skill.handler.complete', self.notify) 436 | self.bus.remove('mycroft.skill.handler.start', self.reset) 437 | 438 | 439 | def create_skill(): 440 | return ReminderSkill() 441 | -------------------------------------------------------------------------------- /dialog/ca-es/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Sobre què? 2 | És clar, què he de recordar-te? 3 | -------------------------------------------------------------------------------- /dialog/ca-es/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | N'estàs segur? 2 | és realment quan vols que t'ho recordi 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, per cert, {{reminder}} 2 | Tens un esdeveniment d'aquí poc: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Vols eliminar tots els recordatoris seleccionats? 2 | Vols netejar la llista sencera de recordatoris? 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | S'han suprimit tots els recordatoris 2 | S'han esborrat tots els recordatoris 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Segur que vols eliminar tots els recordatoris pel dia {date} 2 | -------------------------------------------------------------------------------- /dialog/ca-es/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Això és a mitja nit 2 | Això és molt tard 3 | -------------------------------------------------------------------------------- /dialog/ca-es/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} el dia {date} a les {time} 2 | -------------------------------------------------------------------------------- /dialog/ca-es/NextToday.dialog: -------------------------------------------------------------------------------- 1 | El teu proper recordatori és {reminder} a les {time} 2 | -------------------------------------------------------------------------------- /dialog/ca-es/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Tens el|la {reminder} demà a (la|les) {time} 2 | -------------------------------------------------------------------------------- /dialog/ca-es/NoActive.dialog: -------------------------------------------------------------------------------- 1 | No hi ha recordatoris actius 2 | -------------------------------------------------------------------------------- /dialog/ca-es/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Ho sento, però no he apuntat l'hora, 2 | Podries dirm-me l'hora d'una altra manera. 3 | -------------------------------------------------------------------------------- /dialog/ca-es/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | No hi ha recordatoris pel dia {date} 2 | Sembla ser que no hi ha cap recordatori establert pel dia {date} 3 | -------------------------------------------------------------------------------- /dialog/ca-es/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | No hi ha recordatoris propers 2 | No tens recordatoris propers 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Molt bé, vols que t'ho recordi en algún moment concret? 2 | D'acord, vols qie t'ho recordi a una hora en concret? 3 | -------------------------------------------------------------------------------- /dialog/ca-es/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | S'ha cancel·lat el recordatori. 2 | Cancel·lant el recordatori 3 | S'ha desactivat el recordatori 4 | S'ha cancel·lat el recordatori 5 | S'ha detingut el recordatori 6 | -------------------------------------------------------------------------------- /dialog/ca-es/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Recordatori, {{reminder}} . 2 | Hi ha un recordatori, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/ca-es/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | D'acord, t'ho recordaré en quinze minuts 2 | És clar, t'ho recordaré en quinze minuts 3 | Molt bé, t'ho tornaré a recordar en un moment 4 | -------------------------------------------------------------------------------- /dialog/ca-es/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Perfecte, guardant un recordatori pel dia {{timedate}} 2 | He posat un recordatori pel dia {{timedate}} 3 | Recordatori establert pel dia {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/ca-es/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Perfecte, guardant un recordatori pel dia {date}} (a la|a les) {{time}} 2 | He posat un recordatori pel dia {{date}} {{time}} 3 | Recordatori programat (a la|a les) {{time}} del dia {{date}} 4 | -------------------------------------------------------------------------------- /dialog/ca-es/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | És clar, guardant un recordatori per demà a la|les {{timedate}} 2 | He posat un recordatori a la|les de demà 3 | Recordatori programat per demà a la|les {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/ca-es/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | D'acord, quan? 2 | D'acord, quan? 3 | A quina hora? 4 | A quina hora? 5 | A quina hora vols que t'ho recordi? 6 | -------------------------------------------------------------------------------- /dialog/ca-es/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Per a cancel·lar un recordatori, digues "cancel·la el recordatori" 2 | -------------------------------------------------------------------------------- /dialog/de-de/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Worüber? 2 | Klar, woran soll ich dich erinnern? 3 | -------------------------------------------------------------------------------- /dialog/de-de/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | bist du sicher 2 | willst du wirklich zu dieser Zeit daran erinnert werden 3 | -------------------------------------------------------------------------------- /dialog/de-de/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, übrigens, {{reminder}} 2 | Ein Ereignis steht an: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/de-de/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Willst du alle gespeicherten Erinnerungen entfernen 2 | Willst du die ganze Erinnerungs-Liste leeren 3 | -------------------------------------------------------------------------------- /dialog/de-de/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Alle Erinnerungen wurden entfernt 2 | Alle Erinnerungen wurden gelöscht 3 | -------------------------------------------------------------------------------- /dialog/de-de/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Bist du sicher dass du alle Erinnerungen für {date} löschen möchtest 2 | -------------------------------------------------------------------------------- /dialog/de-de/Fine.dialog: -------------------------------------------------------------------------------- 1 | Gut, sei so 2 | großartig 3 | -------------------------------------------------------------------------------- /dialog/de-de/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Das ist mitten in der Nacht 2 | Das ist sehr spät 3 | -------------------------------------------------------------------------------- /dialog/de-de/My.dialog: -------------------------------------------------------------------------------- 1 | meine 2 | -------------------------------------------------------------------------------- /dialog/de-de/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} um {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/de-de/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Deine nächste Erinnerung ist {reminder} um {time} 2 | -------------------------------------------------------------------------------- /dialog/de-de/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Du hast {reminder} morgen um {time} 2 | -------------------------------------------------------------------------------- /dialog/de-de/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Es gibt keine aktiven Erinnerungen 2 | -------------------------------------------------------------------------------- /dialog/de-de/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Entschuldigung, ich habe die Zeit nicht verstanden. 2 | Kannst du die Zeit anders sagen. 3 | -------------------------------------------------------------------------------- /dialog/de-de/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Du hast keine Erinnerungen für {date} 2 | Es scheint als hättest du keine Erinnerungen für {date} 3 | -------------------------------------------------------------------------------- /dialog/de-de/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Es gibt keine bevorstehenden Erinnerungen 2 | Du hast keine bevorstehenden Erinnerungen 3 | -------------------------------------------------------------------------------- /dialog/de-de/Ok.dialog: -------------------------------------------------------------------------------- 1 | okey 2 | Fertig 3 | -------------------------------------------------------------------------------- /dialog/de-de/Our.dialog: -------------------------------------------------------------------------------- 1 | unser 2 | -------------------------------------------------------------------------------- /dialog/de-de/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Richtig, möchtest du, dass ich dich zu einem bestimmten Zeitpunkt daran erinnere? 2 | Okay, willst du zu einer bestimmten Zeit erinnert werden? 3 | -------------------------------------------------------------------------------- /dialog/de-de/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} um {time} 2 | -------------------------------------------------------------------------------- /dialog/de-de/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Die Erinnerung wurde abgebrochen. 2 | Breche Erinnerung ab. 3 | die erinnerung wurde deaktiviert 4 | die erinnerung wurde abgeschaltet 5 | die erinnerung wurde gestoppt 6 | -------------------------------------------------------------------------------- /dialog/de-de/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Erinnerung, {{reminder}} . 2 | Es gibt eine Erinnerung, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/de-de/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Okay, ich werde dich in fünfzehn Minuten (daran|) erinnern 2 | Klar, ich werde dich in fünfzehn Minuten (daran|) erinnern 3 | Sehr gut, ich werde dich bald (daran|) erinnern 4 | -------------------------------------------------------------------------------- /dialog/de-de/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Klar, speichere eine Erinnerung für {{timedate}} 2 | Ich habe eine Erinnerung für {{timedate}} gesetzt 3 | Erinnerung eingestellt für {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/de-de/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Klar, speichere eine Erinnerung für {{date}} um {{time}} 2 | Ich habe eine Erinnerung für {{date}} {{time}} gesetzt 3 | Erinnerung gesetzt für {{time}} (an|am) {{date}} 4 | -------------------------------------------------------------------------------- /dialog/de-de/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Klar, speichere eine Erinnerung für morgen um {{timedate}} 2 | Ich habe für {{timedate}} morgen eine Erinnerung gesetzt 3 | Erinnerung gesetzt für morgen um {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/de-de/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Okay wann? 2 | Okay wann? 3 | Zu welcher Zeit? 4 | Zu welcher Zeit? 5 | Wann möchtest du erinnert werden? 6 | -------------------------------------------------------------------------------- /dialog/de-de/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Zum Abbrechen sage "Erinnerung abbrechen" 2 | -------------------------------------------------------------------------------- /dialog/de-de/Today.dialog: -------------------------------------------------------------------------------- 1 | Heute 2 | -------------------------------------------------------------------------------- /dialog/de-de/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | Morgen 2 | -------------------------------------------------------------------------------- /dialog/de-de/Your.dialog: -------------------------------------------------------------------------------- 1 | dein 2 | -------------------------------------------------------------------------------- /dialog/en-us/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | About what? 2 | Sure, What should I remind you about? 3 | -------------------------------------------------------------------------------- /dialog/en-us/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | are you sure 2 | is that really when you want to be reminded 3 | -------------------------------------------------------------------------------- /dialog/en-us/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, by the way, {{reminder}} 2 | There's an upcoming event: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/en-us/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Do you want to remove all saved reminders 2 | Do you want to clear the entire list of reminders 3 | -------------------------------------------------------------------------------- /dialog/en-us/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | All reminders have been removed 2 | All reminders have been cleared 3 | -------------------------------------------------------------------------------- /dialog/en-us/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Are you sure you want to delete all reminders for {date} 2 | -------------------------------------------------------------------------------- /dialog/en-us/Fine.dialog: -------------------------------------------------------------------------------- 1 | Fine, be that way 2 | Great 3 | -------------------------------------------------------------------------------- /dialog/en-us/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | That's in the middle of the night 2 | That's very late 3 | -------------------------------------------------------------------------------- /dialog/en-us/My.dialog: -------------------------------------------------------------------------------- 1 | my 2 | -------------------------------------------------------------------------------- /dialog/en-us/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} at {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/en-us/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Your next reminder is {reminder} at {time} 2 | -------------------------------------------------------------------------------- /dialog/en-us/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | You have {reminder} tomorrow at {time} 2 | -------------------------------------------------------------------------------- /dialog/en-us/NoActive.dialog: -------------------------------------------------------------------------------- 1 | There are no active reminders 2 | -------------------------------------------------------------------------------- /dialog/en-us/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Sorry, I didn't catch the time. 2 | Can you say the time in an other way. 3 | -------------------------------------------------------------------------------- /dialog/en-us/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | There are no reminders for {date} 2 | There don't seem to be any reminders set for {date} 3 | -------------------------------------------------------------------------------- /dialog/en-us/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | There are no upcoming reminders 2 | You have no upcoming reminders 3 | -------------------------------------------------------------------------------- /dialog/en-us/Ok.dialog: -------------------------------------------------------------------------------- 1 | Okey 2 | Done 3 | -------------------------------------------------------------------------------- /dialog/en-us/Our.dialog: -------------------------------------------------------------------------------- 1 | our 2 | -------------------------------------------------------------------------------- /dialog/en-us/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Right-o, do you want me to remind you at any particular time? 2 | Okay, do you want to be reminded at a specific time? 3 | -------------------------------------------------------------------------------- /dialog/en-us/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} at {time} 2 | -------------------------------------------------------------------------------- /dialog/en-us/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | The reminder was cancelled. 2 | Cancelling reminder. 3 | the reminder has been turned off 4 | the reminder has been shut off 5 | the reminder has been stopped 6 | -------------------------------------------------------------------------------- /dialog/en-us/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Reminder, {{reminder}} . 2 | There's a reminder, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/en-us/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Okay, I'll remind you in fifteen minutes 2 | Sure, I'll remind you in fifteen minutes 3 | Very well, I'll remind you again in a bit 4 | -------------------------------------------------------------------------------- /dialog/en-us/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Sure, saving a reminder for {{timedate}} 2 | I've set a reminder for {{timedate}} 3 | Reminder set for {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/en-us/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Sure, saving a reminder for {{date}} at {{time}} 2 | I've set a reminder for {{date}} {{time}} 3 | Reminder set for {{time}} on {{date}} 4 | 5 | -------------------------------------------------------------------------------- /dialog/en-us/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Sure, saving a reminder for tomorrow at {{timedate}} 2 | I've set a reminder for {{timedate}} tomorrow 3 | Reminder set for tomorrow at {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/en-us/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Okay, when? 2 | At what time? 3 | Okay, when? 4 | At what time? 5 | At what time would you like to be reminded? 6 | -------------------------------------------------------------------------------- /dialog/en-us/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | To cancel, say "cancel the reminder" 2 | -------------------------------------------------------------------------------- /dialog/en-us/Today.dialog: -------------------------------------------------------------------------------- 1 | today 2 | -------------------------------------------------------------------------------- /dialog/en-us/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | tomorrow 2 | -------------------------------------------------------------------------------- /dialog/en-us/Your.dialog: -------------------------------------------------------------------------------- 1 | your 2 | -------------------------------------------------------------------------------- /dialog/es-es/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | ¿Sobre qué? 2 | Claro. ¿Qué debo recordarte? 3 | -------------------------------------------------------------------------------- /dialog/es-es/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | lo tienes claro? 2 | es realmente cuando quieres que te lo recuerde 3 | -------------------------------------------------------------------------------- /dialog/es-es/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, por cierto, {{reminder}} 2 | Hay un evento próximamente: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/es-es/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | ¿Deseas eliminar todos los recordatorios guardados? 2 | ¿Quieres borrar toda la lista de recordatorios? 3 | -------------------------------------------------------------------------------- /dialog/es-es/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Todos los recordatorios han sido eliminados 2 | Todos los recordatorios han sido borrados 3 | -------------------------------------------------------------------------------- /dialog/es-es/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Estás seguro de querer eliminar todos los recordatorios para {date} 2 | -------------------------------------------------------------------------------- /dialog/es-es/Fine.dialog: -------------------------------------------------------------------------------- 1 | De acuerdo, que así sea 2 | Genial 3 | -------------------------------------------------------------------------------- /dialog/es-es/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Eso es en mitad de la noche 2 | Eso es muy tarde 3 | -------------------------------------------------------------------------------- /dialog/es-es/My.dialog: -------------------------------------------------------------------------------- 1 | mi 2 | -------------------------------------------------------------------------------- /dialog/es-es/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} {date} a las {time} 2 | -------------------------------------------------------------------------------- /dialog/es-es/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Tu próximo recordatorio es {reminder} a las {time} 2 | -------------------------------------------------------------------------------- /dialog/es-es/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Tienes {reminder} mañana a las {time} 2 | -------------------------------------------------------------------------------- /dialog/es-es/NoActive.dialog: -------------------------------------------------------------------------------- 1 | No hay recordatorios activos 2 | -------------------------------------------------------------------------------- /dialog/es-es/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Lo siento, no he anotado la hora. 2 | Puedes decir la hora de otra manera. 3 | -------------------------------------------------------------------------------- /dialog/es-es/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | No hay recordatorios para {date} 2 | Parece no haber ningún recordatorio establecido para {date} 3 | -------------------------------------------------------------------------------- /dialog/es-es/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | No hay próximos recordatorios 2 | No tienes próximos recordatorios 3 | -------------------------------------------------------------------------------- /dialog/es-es/Ok.dialog: -------------------------------------------------------------------------------- 1 | De acuerdo 2 | Hecho 3 | -------------------------------------------------------------------------------- /dialog/es-es/Our.dialog: -------------------------------------------------------------------------------- 1 | nuestro|nuestra 2 | -------------------------------------------------------------------------------- /dialog/es-es/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Bien, ¿quieres que te lo recuerde en algún momento en particular? 2 | Vale, ¿quieres que te lo recuerde a una hora concreta? 3 | -------------------------------------------------------------------------------- /dialog/es-es/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} a las {time} 2 | -------------------------------------------------------------------------------- /dialog/es-es/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Se ha cancelado el recordatorio. 2 | Cancelando recordatorio. 3 | El recordatorio se ha desactivado 4 | El recordatorio se a cancelado 5 | El recordatorio se ha detenido 6 | -------------------------------------------------------------------------------- /dialog/es-es/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Recordatorio, {{reminder}}. 2 | Hay un recordatorio, {{reminder}}. 3 | -------------------------------------------------------------------------------- /dialog/es-es/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Vale, te lo recuerdo en quince minutos. 2 | Claro, te lo recordaré en quince minutos. 3 | Muy bien, te lo recordaré de nuevo en un momento 4 | -------------------------------------------------------------------------------- /dialog/es-es/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Claro, guardando un recordatorio para {{timedate}} 2 | He puesto un recordatorio para {{timedate}} 3 | Recordatorio puesto para {{datetime}} 4 | -------------------------------------------------------------------------------- /dialog/es-es/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Claro, guardando un recordatorio para {{date}} a las {{time}} 2 | He puesto un recordatorio para {{date}} {{time}} 3 | Recordatorio configurado para las {{time}} del {{date}} 4 | -------------------------------------------------------------------------------- /dialog/es-es/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Claro, guardando un recordatorio para mañana a las {{timedate}} 2 | He puesto un recordatorio para {{timedate}} de mañana 3 | Recordatorio establecido para mañana a las {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/es-es/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Vale, ¿cuándo? 2 | Vale, ¿cuándo? 3 | ¿A qué hora? 4 | ¿A qué hora? 5 | ¿A qué hora quieres que te avise? 6 | -------------------------------------------------------------------------------- /dialog/es-es/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Para cancela, di "cancela el recordatorio" 2 | -------------------------------------------------------------------------------- /dialog/es-es/Today.dialog: -------------------------------------------------------------------------------- 1 | hoy 2 | -------------------------------------------------------------------------------- /dialog/es-es/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | mañana 2 | -------------------------------------------------------------------------------- /dialog/es-es/Your.dialog: -------------------------------------------------------------------------------- 1 | tu 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Zeri buruz? 2 | Noski. Zer gogorarazi behar dizut? -------------------------------------------------------------------------------- /dialog/eu-eu/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | Ziur zaude? 2 | (Benetan|) orduan gogoraraztea nahi duzu? -------------------------------------------------------------------------------- /dialog/eu-eu/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | (A|), bide batez, {{reminder}} 2 | Laster, hitzordu bat izango duzu: {{reminder}} 3 | Laster, zerbait duzu: {{reminder}} -------------------------------------------------------------------------------- /dialog/eu-eu/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Gordetako gogorarazle guztiak ezabatu nahi dituzu? 2 | (Gogorarazleen|) zerrenda osoa ezabatu nahi duzu? -------------------------------------------------------------------------------- /dialog/eu-eu/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Gogorarazle guztiak ezabatu dira 2 | Gogorarazle guztiak kendu dira -------------------------------------------------------------------------------- /dialog/eu-eu/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Ziur zaude {date} eguneko gogorarazle guztiak ezabatu nahi dituzula? -------------------------------------------------------------------------------- /dialog/eu-eu/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Hori gauaren erdian da 2 | Hori oso berandu da 3 | -------------------------------------------------------------------------------- /dialog/eu-eu/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} {date} egunean, {time} ordutan 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Zure hurrengo gogorarazlea {reminder}, {time} ordutan da. 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Bihar {reminder} daukazu {time} ordutan. 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Ez dago gogorarazlerik aktibo. -------------------------------------------------------------------------------- /dialog/eu-eu/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Sentitzen dut, ez dut ordua ulertu. 2 | Ordua beste modu batera esan dezakezu, mesedez? -------------------------------------------------------------------------------- /dialog/eu-eu/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Ez dago gogorarazlerik {date} egunerako. 2 | Ez dirudi gogorarazlerik ezarrita dagoenik {date}(e|)rako 3 | -------------------------------------------------------------------------------- /dialog/eu-eu/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Ez dago gogorarazlerik aurreikusita. 2 | Ez duzu gogorarazlerik aurreikusita. -------------------------------------------------------------------------------- /dialog/eu-eu/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Ondo da, ordu jakinen batean gogoraraztea nahi duzu? 2 | Ados, ordu jakinen batean gogoratzea nahi duzu? -------------------------------------------------------------------------------- /dialog/eu-eu/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Gogorarazlea desaktibatu egin da. 2 | Gogorarazlea bertan behera utzi da. 3 | Gogorarazlea ezabatu egin da. -------------------------------------------------------------------------------- /dialog/eu-eu/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Gogorarazlea, {{reminder}}. 2 | Gogorarazle bat dago, {{reminder}}. 3 | -------------------------------------------------------------------------------- /dialog/eu-eu/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Ados, hamabost minutu barru gogoratuko dizut. 2 | Bai noski, hamabost minutu barru gogoraziko dizut. 3 | Oso ondo, berehala gogoraraziko dizut. -------------------------------------------------------------------------------- /dialog/eu-eu/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Noski, {{timedate}} gogorarazlea gordetzen. 2 | Gogorarazle bat jarri dut {{timedate}}rako. 3 | Gogorarazlea {{timedate}}rako jarrita. -------------------------------------------------------------------------------- /dialog/eu-eu/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Bai noski, {{date}} egunean, {{time}} ordurako gogorarazlea gordetzen 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Gogorarazle bat jarri dut biharko {{timedate}} orduan 2 | -------------------------------------------------------------------------------- /dialog/eu-eu/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Ados, noiz? 2 | Bale, noiz? 3 | Zer ordutan? 4 | Zer ordutan nahi duzu (gogoraraztea|)? -------------------------------------------------------------------------------- /dialog/eu-eu/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Bertan behera uzteko, esan "utzi bertan behera gogorarazlea". 2 | Ezabatzeko, esan "ezabatu gogorarazlea". -------------------------------------------------------------------------------- /dialog/fa-ir/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | راجب به چی؟ 2 | حتما, راجب به چی باید یادآوری کنم بِهِت؟ 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | آیا مطمئنی 2 | آیا این واقعا همون زمانیه که میخوای بِهِت یادآوری کنم 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | اوه, راستی, {{reminder}} 2 | یک رویداد در انتظار دارید: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | آیا میخواهی همه ی یادآوری های ذخیره شده رُ پاک کنم 2 | آیا میخوای تا همه ی لیستِ یادآوری ها رُ پاک کنم 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | همه ی یادآوری ها برداشته شد 2 | همه ی یادآوری ها پاک شد 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | آیا مطمئنی که میخوای همه ی یاد آوری ها رُ برای تاریخ {date} حذف کنی 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/Fine.dialog: -------------------------------------------------------------------------------- 1 | باشه, اینجوری باش 2 | عالیه 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | این که وسط شبه 2 | اینکه خیلی دیره 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/My.dialog: -------------------------------------------------------------------------------- 1 | برای من 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} در {time} به تاریخ {date} 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/NextToday.dialog: -------------------------------------------------------------------------------- 1 | یادآوری بعدی {reminder} در {time} 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | شما {reminder} فردا در {time} 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/NoActive.dialog: -------------------------------------------------------------------------------- 1 | هیچ یادآوریِ جدیدی موجود نیست 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | ببخشید، زمان را متوجه نشدم. 2 | آیا میتونی زمان را به شکلِ دیگه ای بِگی. 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | هیچ یادآوری برای {date} موجود نیست 2 | مثل این که هیچ یادآوری ای برای {date} نیست 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | هیچ یادآوری ای نداری 2 | تو هیچ یادآوری در انتظار نداری 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/Ok.dialog: -------------------------------------------------------------------------------- 1 | باشه 2 | تمام 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/Our.dialog: -------------------------------------------------------------------------------- 1 | مال ما 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | درسته، آیا میخوای در زمان خاصی به تو یادآوری کنم؟ 2 | باشه آیا میخوای در زمانِ خاصی یادآوری بشه؟ 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} در {time} 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | یادآوری حذف شد. 2 | حذفِ یادآوری. 3 | یادآوری خاموش شد 4 | یادآوری خاموش شد 5 | یادآوری اِستاپ شد 6 | -------------------------------------------------------------------------------- /dialog/fa-ir/Reminding.dialog: -------------------------------------------------------------------------------- 1 | یادآوری، {{reminder}} . 2 | یک یادآوری موجود است، {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/fa-ir/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | اکِی پانزده دقیقه دیگر به تو یادآوری میکنم 2 | حتماً، من تو را پانزده دقیقه دیگر صدا میکنم 3 | خیلی خُب، یکم دیگه صدات میکنم 4 | -------------------------------------------------------------------------------- /dialog/fa-ir/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | حتما، ذخیره یادآوری برای {{timedate}} 2 | برای تاریخ {{timedate}} یادآوری قرار دادم 3 | یادآوری برای {{timedate}} ست شد 4 | -------------------------------------------------------------------------------- /dialog/fa-ir/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | صد البته، ذخیره یادآوری برای {{date}} در {{time}} 2 | من یک یادآوری برای {{date}} {{time}} ست کردم 3 | یادآوری ست شد برای {{time}} در {{date}} 4 | -------------------------------------------------------------------------------- /dialog/fa-ir/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | بسیار خب، ذخیره ی یادآوری برای فردا در {{timedate}} 2 | من یک یادآوری برای {{timedate}} فردا ست کردم 3 | یادآوری ست شد برای فردا {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/fa-ir/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | باشه، کِی 2 | باشه، کِی 3 | در چه زمانی؟ 4 | در چه زمانی؟ 5 | چه وقتی میخوای یادت بندازم؟ 6 | -------------------------------------------------------------------------------- /dialog/fa-ir/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | برای کنسل کردن، بگو "یادآوری رٌ حذف کن" 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/Today.dialog: -------------------------------------------------------------------------------- 1 | امروز 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | فردا 2 | -------------------------------------------------------------------------------- /dialog/fa-ir/Your.dialog: -------------------------------------------------------------------------------- 1 | مال تو 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | À propos de quoi? 2 | Bien sûr, que dois-je vous rappeler? 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | êtes-vous sûr 2 | est-ce vraiment à ce moment que vous voulez que je vous le rappelle 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, au fait, {{reminder}} 2 | Il y a un évènement à venir : {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Voulez-vous supprimer tous les rappels sauvegardés 2 | Voulez-vous effacer toute la liste des rappels 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Tous les rappels ont été supprimés 2 | Tous les rappels ont été effacés 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Êtes-vous sûr de vouloir supprimer tout les rappels pour {date} 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/Fine.dialog: -------------------------------------------------------------------------------- 1 | Bien, sois comme ça 2 | Bravo 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | C'est en plein milieu de la nuit 2 | C'est très tard 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/My.dialog: -------------------------------------------------------------------------------- 1 | (mon|ma) 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} à {time} le {date} 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Votre prochain rappel est {reminder} à {time} 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Vous avez {reminder} demain à {time} 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Il n'y a pas de rappel actif 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Désolé, je n'ai pas entendu l'heure. 2 | Pouvez-vous dire l'heure autrement. 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Il n'y a pas de rappels pour {date} 2 | Il n'y a pas l'air d'avoir de rappels pour {date} 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Il n'y a pas de rappel à venir 2 | Vous n'avez pas de rappel à venir 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/Ok.dialog: -------------------------------------------------------------------------------- 1 | Ok 2 | Terminé 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/Our.dialog: -------------------------------------------------------------------------------- 1 | (nos|notre) 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | D'accord, voulez-vous que je vous le rappelle à un moment particulier? 2 | Très bien, voulez-vous être prévenu à un moment précis? 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} à {time} 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Le rappel a été annulé. 2 | Annulation du rappel. 3 | le rappel a été désactivé 4 | le rappel a été arrêté 5 | le rappel a été arrêté 6 | -------------------------------------------------------------------------------- /dialog/fr-fr/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Rappel, {{reminder}} . 2 | Il y a un rappel, {{reminder}}. 3 | -------------------------------------------------------------------------------- /dialog/fr-fr/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Très bien, je vous le rappelle dans un quart d'heure 2 | Entendu, je vous le rappelle dans un quart d'heure 3 | Très bien, je vous le rappelle sous peu 4 | -------------------------------------------------------------------------------- /dialog/fr-fr/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Bien sûr, j'enregistre un rappel pour {{timedate}} 2 | J'ai mis un rappel pour {{timedate}} 3 | Rappel défini pour {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/fr-fr/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Ok, je met un rappel pour {{date}} à {{time}} 2 | J'ai mis un rappel pour le {{date}} à {{time}} 3 | Rappel défini pour {{time}} le {{date}} 4 | -------------------------------------------------------------------------------- /dialog/fr-fr/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Ok, je met un rappel pour demain à {{timedate}} 2 | J'ai positionné un rappel pour {{timedate}} demain 3 | Rappel mis pour demain à {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/fr-fr/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Très bien, quand? 2 | Très bien, quand? 3 | À quelle heure? 4 | À quelle heure? 5 | À quelle heure aimeriez-vous être informé? 6 | -------------------------------------------------------------------------------- /dialog/fr-fr/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Pour annuler, dîtes "annuler le rappel" 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/Today.dialog: -------------------------------------------------------------------------------- 1 | aujourd'hui 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | demain 2 | -------------------------------------------------------------------------------- /dialog/fr-fr/Your.dialog: -------------------------------------------------------------------------------- 1 | votre 2 | -------------------------------------------------------------------------------- /dialog/gl-es/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Sobre que? 2 | Claro, de que queres que che faga unha lembranza? 3 | -------------------------------------------------------------------------------- /dialog/gl-es/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | estás seguro 2 | é cando realmente queres que cho lembre 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Ai, por certo, {{reminder}} 2 | Hai un evento futuro: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Queres eminiar todos os recordatorios gardados 2 | Queres eliminar toda a lista de recordatorios 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Todos os recordatorios foron eliminados 2 | Todos os recordatorios foron eliminados 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Estás seguro de querer eliminar todos os recordatorios de {date} 2 | -------------------------------------------------------------------------------- /dialog/gl-es/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Isto é no medio da noite 2 | Iso é moi tarde 3 | -------------------------------------------------------------------------------- /dialog/gl-es/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} en {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/gl-es/NextToday.dialog: -------------------------------------------------------------------------------- 1 | O teu próximo recordatorio é {reminder} en {time} 2 | -------------------------------------------------------------------------------- /dialog/gl-es/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Tes {reminder} mañá ás {time} 2 | -------------------------------------------------------------------------------- /dialog/gl-es/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Non hai recordatorios activos 2 | -------------------------------------------------------------------------------- /dialog/gl-es/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Perdoa, non entendín a hora. 2 | Poderías dicir a hora doutra forma. 3 | -------------------------------------------------------------------------------- /dialog/gl-es/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Non hai recordatorios para {date} 2 | Non parece haber ningún recordatorio definido para {date} 3 | -------------------------------------------------------------------------------- /dialog/gl-es/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Non hai recordatorios activos 2 | Non hai recordatorios activos 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Certo, queres que eu che lembre nalgunha hora en particular? 2 | Moi ben, queres que cho lembre nalgún horario en específico? 3 | -------------------------------------------------------------------------------- /dialog/gl-es/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | O recordatorio foi cancelado. 2 | Cancelando recordatorio. 3 | o recordatorio foi desactivado 4 | o recordatorio foi apagado 5 | o recordatorio foi parado 6 | -------------------------------------------------------------------------------- /dialog/gl-es/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Recordatorio, {{reminder}} . 2 | Hai un recordatorio, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/gl-es/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Moi ben, lembrareicho en quince minutos 2 | Claro, lembrareicho en quince minutos 3 | Moi ben, lembrareicho novamente dentro dun pouco 4 | -------------------------------------------------------------------------------- /dialog/gl-es/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Claro, gardando un recordatorio para {{timedate}} 2 | Definín un recordatorio para {{timedate}} 3 | Recordatorio definido para {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/gl-es/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Vale, gardando un recordatorio para {{date}} ás {{time}} 2 | Definín un recordatorio para {{date}} ás {{time}} 3 | Recordatorio definido para {{time}} en {{date}} 4 | -------------------------------------------------------------------------------- /dialog/gl-es/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Vale, gardando un recordatorio para mañá ás {{timedate}} 2 | Definín un recordatorio para {{timedate}} mañá 3 | Recordatorio definido para mañá ás {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/gl-es/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Moi ben, cando? 2 | Moi ben, cando? 3 | A que hora? 4 | A que hora? 5 | A que hora che gustaría que cho lembrase? 6 | -------------------------------------------------------------------------------- /dialog/gl-es/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Para cancelar, dime "cancelar o recordatorio" 2 | -------------------------------------------------------------------------------- /dialog/it-it/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Riguardo a cosa? 2 | Certo, cosa dovrei ricordarti? 3 | -------------------------------------------------------------------------------- /dialog/it-it/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | sei sicuro 2 | è davvero quando vuoi che te lo ricordo 3 | -------------------------------------------------------------------------------- /dialog/it-it/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, a proposito, {{reminder}} 2 | C'è un evento imminente: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/it-it/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Vuoi rimuovere tutti i promemoria salvati 2 | Vuoi cancellare l'intero elenco di promemoria 3 | -------------------------------------------------------------------------------- /dialog/it-it/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Tutti i promemoria sono stati rimossi 2 | Tutti i promemoria sono stati cancellati 3 | -------------------------------------------------------------------------------- /dialog/it-it/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Sei sicuro di voler eliminare tutti i promemoria per {date} 2 | -------------------------------------------------------------------------------- /dialog/it-it/Fine.dialog: -------------------------------------------------------------------------------- 1 | A posto 2 | Ottimo 3 | -------------------------------------------------------------------------------- /dialog/it-it/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Questo è nel mezzo della notte 2 | È molto tardi 3 | -------------------------------------------------------------------------------- /dialog/it-it/My.dialog: -------------------------------------------------------------------------------- 1 | mio 2 | -------------------------------------------------------------------------------- /dialog/it-it/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} alle {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/it-it/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Il tuo prossimo promemoria è {reminder} alle {time} 2 | -------------------------------------------------------------------------------- /dialog/it-it/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Hai {reminder} domani alle {time} 2 | -------------------------------------------------------------------------------- /dialog/it-it/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Non ci sono promemoria attivi 2 | -------------------------------------------------------------------------------- /dialog/it-it/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Scusami, non l'ho capito l'orario. 2 | Puoi dire l'orario in un altro modo. 3 | -------------------------------------------------------------------------------- /dialog/it-it/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Non ci sono promemoria per {date} 2 | Sembra che non ci siano promemoria (|impostati) per {date} 3 | -------------------------------------------------------------------------------- /dialog/it-it/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Non ci sono promemoria imminenti 2 | Non hai promemoria imminenti 3 | -------------------------------------------------------------------------------- /dialog/it-it/Ok.dialog: -------------------------------------------------------------------------------- 1 | Okey 2 | Fatto 3 | -------------------------------------------------------------------------------- /dialog/it-it/Our.dialog: -------------------------------------------------------------------------------- 1 | nostro 2 | -------------------------------------------------------------------------------- /dialog/it-it/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Bene, vuoi che te lo rammenti ad un orario particolare? 2 | Ok, vuoi essere avvisato in un orario specifico? 3 | -------------------------------------------------------------------------------- /dialog/it-it/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {{reminder}} alle {{time}} 2 | -------------------------------------------------------------------------------- /dialog/it-it/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Il promemoria è stato cancellato. 2 | Cancellazione promemoria. 3 | il promemoria è stato disattivato 4 | il promemoria è stato spento 5 | il promemoria è stato (fermato|arrestato|interrotto|bloccato) 6 | -------------------------------------------------------------------------------- /dialog/it-it/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Promemoria, {{reminder}} . 2 | C'è un promemoria, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/it-it/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Ok, te lo ​​ricorderò tra quindici minuti 2 | Certo, te lo ricorderò tra quindici minuti 3 | Molto bene, te lo ricorderò di nuovo tra un pò 4 | -------------------------------------------------------------------------------- /dialog/it-it/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Certo, sto salvando un promemoria per {{timedate}} 2 | Ho impostato un promemoria per {{timedate}} 3 | Promemoria impostato per {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/it-it/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Certo, sto salvando un promemoria per {{date}} alle {{time}} 2 | Ho impostato un promemoria per {{date}} {{time}} 3 | Promemoria impostato per le {{time}} di {{date}} 4 | -------------------------------------------------------------------------------- /dialog/it-it/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Certo, sto salvando un promemoria per domani alle {{timedate}} 2 | Ho impostato un promemoria per domani {{timedate}} 3 | Promemoria impostato domani alle {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/it-it/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Ok, quando? 2 | Ok, quando? 3 | A che ora? 4 | A che ora? 5 | A che ora ti piacerebbe essere avvisato? 6 | -------------------------------------------------------------------------------- /dialog/it-it/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Per annullare, dì "cancella il promemoria" 2 | -------------------------------------------------------------------------------- /dialog/it-it/Today.dialog: -------------------------------------------------------------------------------- 1 | oggi 2 | -------------------------------------------------------------------------------- /dialog/it-it/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | domani 2 | -------------------------------------------------------------------------------- /dialog/it-it/Your.dialog: -------------------------------------------------------------------------------- 1 | tuo 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Waarover? 2 | Tuurlijk, waar moet ik je aan herinneren? 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | weet je zeker 2 | weet je zeker dat je er dan aan herinnerd wilt worden 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Oh, trouwens, {{reminder}} 2 | {{reminder}} staat op de rol 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Wil je alle opgeslagen (herinneringen|reminders) verwijderen 2 | Wil je de hele lijst met (herinneringen|reminders) wissen 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Alle herinneringen zijn verwijderd 2 | Alle herinneringen zijn geschrapt 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Weet u zeker of ik alle herinneringen voor {date} zal verwijderen 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/Fine.dialog: -------------------------------------------------------------------------------- 1 | Prima, wees zo 2 | Uitstekend 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Dat is midden in de nacht 2 | Da's behoorlijk laat 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/My.dialog: -------------------------------------------------------------------------------- 1 | mijn 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} om {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Je volgende herinnering is {reminder} om {time} 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Morgen om {time} heb je {reminder} 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Er zijn geen herinneringen ingesteld 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Excuseer, die tijd kreeg ik niet mee. 2 | Kun je de tijd op een andere manier zeggen? 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Er zijn geen herinneringen voor {date} 2 | Het lijkt er op dat er geen herinneringen voor {date} zijn gezet 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Er staan geen herinneringen gepland 2 | Je hebt geen herinneringen staan 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/Ok.dialog: -------------------------------------------------------------------------------- 1 | ok 2 | Klaar 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/Our.dialog: -------------------------------------------------------------------------------- 1 | onze 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Oké, wil je er op een specifiek moment aan herinnered worden? 2 | Oké, wil je een herinnering op een zeker moment? 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} om {time} 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | De herinnering is geannuleerd 2 | Herinnering annuleren 3 | de herinnering is uitgezet 4 | de herinnering is uitgezet 5 | de herinnering is stopgezet 6 | -------------------------------------------------------------------------------- /dialog/nl-nl/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Herinnering {{reminder}}. 2 | Er staat een herinnering, {{reminder}}. 3 | -------------------------------------------------------------------------------- /dialog/nl-nl/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Oké, ik waarschuw je over een kwartiertje 2 | Prima, ik herinner je in vijftien minuten 3 | Uitstekend, ik herinner je straks opnieuw 4 | -------------------------------------------------------------------------------- /dialog/nl-nl/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Prima, ik stel een herinnering in voor {{timedate}} 2 | Ik heb een herinnering ingesteld voor {{timedate}} 3 | Herinnering ingesteld voor {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/nl-nl/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Goed, ik stel een herinnering in voor {{date}} om {{time}} 2 | Ik heb een herinnering ingesteld voor {{date}} om {{time}} 3 | Herinnering ingesteld voor {{date}} om {{time}} 4 | -------------------------------------------------------------------------------- /dialog/nl-nl/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Goed, ik stel een herinnering in voor morgen om {{timedate}} 2 | Ik heb een herinnering ingesteld voor morgen om {{timedate}} 3 | Herinnering ingesteld voor morgen om {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/nl-nl/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Oké, voor wanneer? 2 | Oké, voor wanneer? 3 | Op welk tijdstip? 4 | Op welk tijdstip? 5 | Op welk tijdstip wil je een herinnering? 6 | -------------------------------------------------------------------------------- /dialog/nl-nl/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Om te annuleren, zeg "annuleer de herinnering" 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/Today.dialog: -------------------------------------------------------------------------------- 1 | vandaag 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | morgen 2 | -------------------------------------------------------------------------------- /dialog/nl-nl/Your.dialog: -------------------------------------------------------------------------------- 1 | uw 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | O czym? 2 | Oczywiście, o czym mam Ci przypomnieć? 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | Czy jesteś pewien 2 | czy na pewno to jest to, o czym mam Ci przypomnieć 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | A tak przy okazji, {{reminder}} 2 | Twoje nadchodzące wydarzenie: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Czy na pewno chcesz usunąć wszystkie zapisane przypomnienia 2 | Czy chcesz wyczyścić wszystkie zapisane przypomnienia 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Wszystkie przypomnienia zostały usunięte 2 | Wyczyszczono wszystkie przypomnienia 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Czy na pewno chcesz usunąć wszystkie przypomnienia dla {date} 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | To będzie w środku nocy 2 | To będzie bardzo późno 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} o {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Twoje następne przypomnienie to {reminder} o {time} 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Masz {reminder} jutro o {time} 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Brak aktywnych przypomnień 2 | -------------------------------------------------------------------------------- /dialog/pl-pl/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Przepraszam, nie zrozumiałem o której 2 | Czy możesz powtórzyć w inny sposób o której 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Brak przypomnień dla {date} 2 | Wygląda na to, że nie ma żadnych przypomnień dla {date} 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Brak nadchodzących przypomnień 2 | Nie masz nadchodzących przypomnień 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Dobrze, czy chcesz żebym przypomniał Ci o jakiejś konkretnej godzinie? 2 | W porządku, kiedy mam Ci o tym przypomnieć o konkretnej godzinie? 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Przypomnienie zostało anulowane. 2 | Anulowanie przypomnienia. 3 | przypomnienie zostało wyłączone 4 | wyłączono przypomnienie 5 | zatrzymano przypomnienie 6 | -------------------------------------------------------------------------------- /dialog/pl-pl/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Przypomnienie, {{reminder}} . 2 | Jest przypomnienie, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/pl-pl/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Dobrze, przypomnę Ci za 15 minut 2 | Oczywiście, przypomnę Ci za 15 minut 3 | W porządku, przypomnę Ci za chwilę 4 | -------------------------------------------------------------------------------- /dialog/pl-pl/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Oczywiście, zapisuję przypomnienie na {{timedate}} 2 | Ustawiłem przypomnienie na {{timedate}} 3 | Przypomnienie ustawione na {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/pl-pl/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Oczywiście, zapisuję przypomnienie na {{date}} o {{time}} 2 | Ustawiłem przypomnienie na {{date}} o {{time}} 3 | Przypomnienie ustawione na {{time}} o {{date}} 4 | -------------------------------------------------------------------------------- /dialog/pl-pl/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Oczywiście, zapisuję przypomnienie na jutro o {{timedate}} 2 | Ustawiłem przypomnienie na jutro o {{timedate}} 3 | Przypomnienie ustawione na jutro o {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/pl-pl/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Dobrze, kiedy? 2 | Dobrze, kiedy? 3 | O której godzinie? 4 | O której godzinie? 5 | Kiedy mam Ci przypomnieć? 6 | -------------------------------------------------------------------------------- /dialog/pl-pl/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Żeby anulować, powiedz "anuluj przypomnienie" 2 | -------------------------------------------------------------------------------- /dialog/pt-br/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Sobre o que? 2 | Claro, do que devo lembrá-lo? 3 | -------------------------------------------------------------------------------- /dialog/pt-br/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | você tem certeza 2 | é isso realmente quando você quer ser lembrado 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Ah, a propósito, {{lembrete}} 2 | Há um evento futuro: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Você quer remover todos os lembretes salvos 2 | Você quer limpar toda a lista de lembretes 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Todos os lembretes foram removidos 2 | Todos os lembretes foram limpos 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Você tem certeza que quer apagar todos os lembretes de {date} 2 | -------------------------------------------------------------------------------- /dialog/pt-br/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Isso é no meio da noite 2 | Isso é muito tarde 3 | -------------------------------------------------------------------------------- /dialog/pt-br/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} em {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/pt-br/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Seu próximo lembrete é {reminder} em {time} 2 | -------------------------------------------------------------------------------- /dialog/pt-br/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Você tem {reminder} amanhã às {time} 2 | -------------------------------------------------------------------------------- /dialog/pt-br/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Não há lembretes ativos 2 | -------------------------------------------------------------------------------- /dialog/pt-br/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Desculpe, eu não entendi a hora. 2 | Você poderia dizer a hora de outra forma 3 | -------------------------------------------------------------------------------- /dialog/pt-br/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Não há lembretes para {date} 2 | Não parece haver nenhum lembrete definido para {date} 3 | -------------------------------------------------------------------------------- /dialog/pt-br/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Não há lembretes ativos 2 | Não há lembretes ativos 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Certo, você quer que eu lembre você em alguma hora em particular? 2 | Ok, você quer ser lembrado em um horário específico? 3 | -------------------------------------------------------------------------------- /dialog/pt-br/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | O lembrete foi cancelado 2 | Cancelando lembrete. 3 | o lembrete foi desativado 4 | o lembrete foi desligado 5 | o lembrete foi parado 6 | -------------------------------------------------------------------------------- /dialog/pt-br/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Lembrete, {{reminder}}. 2 | Há um lembrete, {{reminder}}. 3 | -------------------------------------------------------------------------------- /dialog/pt-br/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Ok, eu vou lembrar você em quinze minutos 2 | Claro, eu vou lembrar você em quinze minutos 3 | Muito bem, eu vou lembrá-lo novamente daqui a pouco 4 | -------------------------------------------------------------------------------- /dialog/pt-br/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Claro, salvando um lembrete para {{timedate}} 2 | Eu defini um lembrete para {{timedate}} 3 | Lembrete definido para {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/pt-br/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Com certeza, salvando um lembrete para {{date}} às {{time}} 2 | Eu defini um lembrete para {{date}} às {{time}} 3 | Lembrete definido para {{time}} em {{date}} 4 | -------------------------------------------------------------------------------- /dialog/pt-br/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Certo, salvando um lembrete para amanhã às {{timedate}} 2 | Eu defini um lembrete para {{timedate}} amanhã 3 | Lembrete definido para amanhã às {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/pt-br/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Ok, quando? 2 | Ok, quando? 3 | A que horas? 4 | A que horas? 5 | A que horas você gostaria de ser lembrado? 6 | -------------------------------------------------------------------------------- /dialog/pt-br/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Para cancelar diga "cancelar o lembrete" 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | О чем? 2 | Конечно, о чем я должен тебе напомнить? 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | вы уверены 2 | это правда когда ты хочешь чтобы я напомнил тебе 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | О, кстати, {{reminder}} 2 | Предстоящее событие: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Ты хочешь удалить все сохраненные напоминания 2 | Ты хочешь очистить весь список напоминаний 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Все напоминания были удалены 2 | Все напоминания были очищены 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Вы уверены, что хотите удалить все напоминания для {date} 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/Fine.dialog: -------------------------------------------------------------------------------- 1 | Хорошо, пусть будет так 2 | Отлично 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Это посреди ночи 2 | Это очень поздно 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/My.dialog: -------------------------------------------------------------------------------- 1 | мой 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} в {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Твое следующее напоминание это {reminder} в {time} 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | У тебя есть {reminder} завтра в {time} 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Активных напоминаний нет 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Извините, я не могу разобрать время. 2 | Можешь сказать время по-другому. 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Там нет напоминаний для {date} 2 | Кажется, не было никаких напоминаний для {date} 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Предстоящих напоминаний нет 2 | У тебя нет новых напоминаний 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/Ok.dialog: -------------------------------------------------------------------------------- 1 | Окей 2 | Готово 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/Our.dialog: -------------------------------------------------------------------------------- 1 | наш 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Хорошо, ты хочешь, чтобы я напомнил тебе в какое-то конкретное время? 2 | Хорошо, ты хочешь, чтобы я напомнил тебе в какое-то конкретное время? 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} в {time} 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Напоминание было отменено. 2 | Отмена напоминания. 3 | напоминание отключено 4 | напоминание было отключено 5 | напоминание было остановлено 6 | -------------------------------------------------------------------------------- /dialog/ru-ru/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Напоминание, {{reminder}} . 2 | Есть напоминание, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/ru-ru/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Хорошо, я напомню тебе через пятнадцать минут 2 | Конечно, я напомню тебе через пятнадцать минут 3 | Очень хорошо, я напомню тебе немного позже 4 | -------------------------------------------------------------------------------- /dialog/ru-ru/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Конечно, сохраняю напоминания для {{timedate}} 2 | Я установил напоминание для {{timedate}} 3 | Напоминание записано для {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/ru-ru/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Конечно, сохраняю напоминание для {{date}} в {{time}} 2 | Я добавил напоминание о {{date}} {{time}} 3 | Напоминание установлено для {{time}} {{date}} 4 | -------------------------------------------------------------------------------- /dialog/ru-ru/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Конечно, сохранение напоминания на завтра в {{timedate}} 2 | Я набрал напоминание для {{timedate}} завтра 3 | Напоминание установленно на завтра в {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/ru-ru/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Хорошо, когда? 2 | Хорошо, когда? 3 | Во сколько? 4 | Во сколько? 5 | В какое время ты хочешь чтобы я напомнил? 6 | -------------------------------------------------------------------------------- /dialog/ru-ru/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | Чтобы отменить, скажите "отменить напоминание" 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/Today.dialog: -------------------------------------------------------------------------------- 1 | сегодня 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | завтра 2 | -------------------------------------------------------------------------------- /dialog/ru-ru/Your.dialog: -------------------------------------------------------------------------------- 1 | ваш 2 | -------------------------------------------------------------------------------- /dialog/sv-se/AboutWhat.dialog: -------------------------------------------------------------------------------- 1 | Om vad? 2 | Visst, vad ska jag påminna dig om? 3 | -------------------------------------------------------------------------------- /dialog/sv-se/AreYouSure.dialog: -------------------------------------------------------------------------------- 1 | är du säker 2 | är det verkligen när du vill bli påmind 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ByTheWay.dialog: -------------------------------------------------------------------------------- 1 | Åh, förresten, {{reminder}} 2 | Det finns en kommande händelse: {{reminder}} 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ClearAll.dialog: -------------------------------------------------------------------------------- 1 | Vill du ta bort alla sparade påminnelser 2 | Vill du rensa hela listan med påminnelser 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ClearedAll.dialog: -------------------------------------------------------------------------------- 1 | Alla påminnelser har tagits bort 2 | Alla påminnelser har rensats 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ConfirmRemoveDay.dialog: -------------------------------------------------------------------------------- 1 | Är du säker på att du vill ta bort alla påminnelser för {date} 2 | -------------------------------------------------------------------------------- /dialog/sv-se/Fine.dialog: -------------------------------------------------------------------------------- 1 | Bra, var så 2 | Toppen 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ItIsNight.dialog: -------------------------------------------------------------------------------- 1 | Det är mitt i natten 2 | Det är väldigt sent 3 | -------------------------------------------------------------------------------- /dialog/sv-se/My.dialog: -------------------------------------------------------------------------------- 1 | min 2 | -------------------------------------------------------------------------------- /dialog/sv-se/NextOtherDate.dialog: -------------------------------------------------------------------------------- 1 | {reminder} vid {time} {date} 2 | -------------------------------------------------------------------------------- /dialog/sv-se/NextToday.dialog: -------------------------------------------------------------------------------- 1 | Din nästa påminnelse är {reminder} vid {time} 2 | -------------------------------------------------------------------------------- /dialog/sv-se/NextTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Du har {reminder} imorgon vid {time} 2 | -------------------------------------------------------------------------------- /dialog/sv-se/NoActive.dialog: -------------------------------------------------------------------------------- 1 | Det finns inga aktiva påminnelser 2 | -------------------------------------------------------------------------------- /dialog/sv-se/NoDateTime.dialog: -------------------------------------------------------------------------------- 1 | Tyvärr, Jag uppfattade inte tiden. 2 | Kan du säga tiden på ett annat sätt. 3 | -------------------------------------------------------------------------------- /dialog/sv-se/NoRemindersForDate.dialog: -------------------------------------------------------------------------------- 1 | Det finns inga påminnelser för {date} 2 | Det verkar inte finnas några påminnelser för {date} 3 | -------------------------------------------------------------------------------- /dialog/sv-se/NoUpcoming.dialog: -------------------------------------------------------------------------------- 1 | Det finns inga kommande påminnelser 2 | Du har inga kommande påminnelser 3 | -------------------------------------------------------------------------------- /dialog/sv-se/Ok.dialog: -------------------------------------------------------------------------------- 1 | Okej 2 | Färdig 3 | -------------------------------------------------------------------------------- /dialog/sv-se/Our.dialog: -------------------------------------------------------------------------------- 1 | vår 2 | -------------------------------------------------------------------------------- /dialog/sv-se/ParticularTime.dialog: -------------------------------------------------------------------------------- 1 | Okej, vill du att jag ska påminna dig vid en viss tidpunkt? 2 | Okej, vill du bli påmind vid en viss tidpunkt? 3 | -------------------------------------------------------------------------------- /dialog/sv-se/ReminderAtTime.dialog: -------------------------------------------------------------------------------- 1 | {reminder} vid {time} 2 | -------------------------------------------------------------------------------- /dialog/sv-se/ReminderCancelled.dialog: -------------------------------------------------------------------------------- 1 | Påminnelsen avbröts. 2 | Avbryter påminnelsen. 3 | påminnelsen har stängts av 4 | påminnelsen har stängts av 5 | påminnelsen har stoppats 6 | -------------------------------------------------------------------------------- /dialog/sv-se/Reminding.dialog: -------------------------------------------------------------------------------- 1 | Påminnelse, {{reminder}} . 2 | Det finns en påminnelse, {{reminder}} . 3 | -------------------------------------------------------------------------------- /dialog/sv-se/RemindingInFifteen.dialog: -------------------------------------------------------------------------------- 1 | Okej, jag ska påminna dig om femton minuter 2 | Visst, jag ska påminna dig om femton minuter 3 | Mycket bra, jag kommer att påminna dig igen om liten stund 4 | -------------------------------------------------------------------------------- /dialog/sv-se/SavingReminder.dialog: -------------------------------------------------------------------------------- 1 | Visst, sparar en påminnelse för {{timedate}} 2 | Jag har ställt in en påminnelse för {{timedate}} 3 | Påminnelse inställd för {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/sv-se/SavingReminderDate.dialog: -------------------------------------------------------------------------------- 1 | Visst, sparar en påminnelse för {{date}} vid {{time}} 2 | Jag har ställt in en påminnelse för {{date}} {{time}} 3 | Påminnelse inställd för {{time}} den {{date}} 4 | -------------------------------------------------------------------------------- /dialog/sv-se/SavingReminderTomorrow.dialog: -------------------------------------------------------------------------------- 1 | Visst, sparar en påminnelse för imorgon på {{timedate}} 2 | Jag har ställt in en påminnelse för {{timedate}} imorgon 3 | Påminnelse inställd för imorgon {{timedate}} 4 | -------------------------------------------------------------------------------- /dialog/sv-se/SpecifyTime.dialog: -------------------------------------------------------------------------------- 1 | Okej, när? 2 | Okej, när? 3 | Vid vilken tidpunkt? 4 | Vid vilken tidpunkt? 5 | Vid vilken tid vill du bli påmind? 6 | -------------------------------------------------------------------------------- /dialog/sv-se/ToCancelInstructions.dialog: -------------------------------------------------------------------------------- 1 | För att avbryta, säg "avbryt påminnelsen" 2 | -------------------------------------------------------------------------------- /dialog/sv-se/Today.dialog: -------------------------------------------------------------------------------- 1 | idag 2 | -------------------------------------------------------------------------------- /dialog/sv-se/Tomorrow.dialog: -------------------------------------------------------------------------------- 1 | imorgon 2 | -------------------------------------------------------------------------------- /dialog/sv-se/Your.dialog: -------------------------------------------------------------------------------- 1 | din 2 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | from test.integrationtests.skills.skill_tester import SkillTest 2 | 3 | def test_runner(skill, example, emitter, loader): 4 | def side_effect(title, body, skill): 5 | print("Sending e-mail") 6 | 7 | s = [s for s in loader.skills if s and s.root_dir == skill][0] 8 | if example.endswith('001.reminder.in.2.days.json'): 9 | s.NIGHT_HOURS = [] # Make sure the night hour override doesn't start 10 | else: 11 | s.NIGHT_HOURS = [23, 0, 1, 2, 3, 4, 5, 6] 12 | return SkillTest(skill, example, emitter).run(loader) 13 | -------------------------------------------------------------------------------- /test/behave/reminder.feature: -------------------------------------------------------------------------------- 1 | Feature: mycroft-reminder 2 | 3 | Background: 4 | Given no reminders are set 5 | 6 | Scenario: Reminder in 2 days 7 | Given an english speaking user 8 | When the user says "remind me to be awesome in 2 days" 9 | Then "mycroft-reminder" should reply with dialog from "SavingReminderDate.dialog" 10 | 11 | Scenario: Reminder during night 12 | Given an english speaking user 13 | When the user says "remind me to sleep at 1 a.m." 14 | Then "mycroft-reminder" should reply with dialog from "ItIsNight.dialog" 15 | And the user says "yes" 16 | And "mycroft-reminder" should reply with dialog from "SavingReminderTomorrow.dialog" 17 | 18 | 19 | Scenario Outline: Reminder without time 20 | Given an english speaking user 21 | When the user says "remind me to be awesome" 22 | Then "mycroft-reminder" should reply with dialog from "ParticularTime.dialog" 23 | And the user says "" 24 | And "mycroft-reminder" should reply with dialog from "SavingReminderTomorrow.dialog" 25 | 26 | Examples: 27 | | reminder tomorrow | 28 | | tomorrow at 12 | 29 | | yes, tomorrow at 9am | 30 | 31 | Scenario Outline: Reminder without time, Negative 32 | Given an english speaking user 33 | When the user says "remind me to be awesome" 34 | Then "mycroft-reminder" should reply with dialog from "ParticularTime.dialog" 35 | And the user says "" 36 | And "mycroft-reminder" should reply with dialog from "Ok.dialog" 37 | 38 | Examples: 39 | | no thanks | 40 | | no thanks | 41 | | not really | 42 | 43 | Scenario: Clear all reminders 44 | Given an english speaking user 45 | And a reminder called be follow the dolphins is set for tomorrow at noon 46 | When the user says "clear all reminders" 47 | Then "mycroft-reminder" should reply with dialog from "ClearAll.dialog" 48 | And the user says "Yes please" 49 | Then "mycroft-reminder" should reply with dialog from "ClearedAll.dialog" 50 | 51 | Scenario: Query next reminder 52 | Given an english speaking user 53 | And a reminder called be awesome is set for tomorrow at 12 54 | When the user says "what is my next reminder" 55 | Then mycroft reply should contain "be awesome" 56 | -------------------------------------------------------------------------------- /test/behave/steps/reminder.py: -------------------------------------------------------------------------------- 1 | import time 2 | 3 | from behave import given 4 | 5 | from mycroft.audio import wait_while_speaking 6 | from test.integrationtests.voight_kampff import ( 7 | emit_utterance, 8 | wait_for_dialog) 9 | 10 | 11 | @given('a reminder called {name} is set for {time}') 12 | def given_reminder(context, name, time): 13 | emit_utterance(context.bus, 'remind me to {} at {}'.format(name, time)) 14 | wait_for_dialog(context.bus, ['SavingReminder', 'SavingReminderTomorrow', 15 | 'SavingReminderDate']) 16 | context.bus.clear_messages() 17 | 18 | 19 | @given('no reminders are set') 20 | def given_no_reminders(context): 21 | followups = ['ClearAll'] 22 | 23 | emit_utterance(context.bus, 'clear all reminders') 24 | for i in range(10): 25 | for message in context.bus.get_messages('speak'): 26 | if message.data.get('meta', {}).get('dialog') in followups: 27 | time.sleep(3) 28 | wait_while_speaking() 29 | emit_utterance(context.bus, 'yes') 30 | wait_for_dialog(context.bus, ['ClearedAll']) 31 | context.bus.clear_messages() 32 | return 33 | time.sleep(1) 34 | -------------------------------------------------------------------------------- /test/intent/001.reminder.in.2.days.json: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "remind me to be awesome in 2 days", 3 | "intent_type": "ReminderAt.intent", 4 | "expected_dialog": "SavingReminderDate", 5 | "settings": {} 6 | } 7 | -------------------------------------------------------------------------------- /test/intent/002.notify.on.friday.json: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "notify me to have dinner with my family on friday", 3 | "intent_type": "ReminderAt.intent", 4 | "settings": {} 5 | } 6 | -------------------------------------------------------------------------------- /test/intent/003.check.reminders.today.json: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "what are my reminders for today", 3 | "intent_type": "GetRemindersForDay.intent" 4 | } 5 | -------------------------------------------------------------------------------- /test/intent/004.reminder.during.night.json: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "remind me to sleep at 1 a.m.", 3 | "intent_type": "ReminderAt.intent", 4 | "expected_dialog": "ItIsNight", 5 | "responses": ["no"], 6 | "settings": {} 7 | } 8 | -------------------------------------------------------------------------------- /test/intent/reminder.tomorrow.morning.json.deactivated: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "remind me to wake up tomorrow morning", 3 | "intent_type": "Reminder.intent", 4 | "expected_dialog": "SavingReminderTomorrow", 5 | "settings": {} 6 | } 7 | -------------------------------------------------------------------------------- /test/intent/show.all.reminders.json.deactivated: -------------------------------------------------------------------------------- 1 | { 2 | "utterance": "show all my reminders", 3 | "intent_type": "ReminderSkillListIntent", 4 | "intent": { 5 | "ReminderSkillListVerb": "show", 6 | "ReminderSkillAmount": "all", 7 | "ReminderSkillKeyword": "reminders" 8 | }, 9 | "expected_dialog": "schedule.list" 10 | } 11 | -------------------------------------------------------------------------------- /twoBeep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MycroftAI/skill-reminder/53d32d9db557bcf5832b5d9a869db05f6ce91c8a/twoBeep.wav -------------------------------------------------------------------------------- /vocab/ca-es/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |d'acord|)cancel·la (tots|els|meus|)(actius|)recordatoris 2 | (ok |d'acord|)para (tots| els|meus|) recordatoris actius 3 | (ok |d'acord|)elimina(tots|els|meus|) recordatoris actius 4 | (ok |d'acord|)(confirma|accepta) (tots|els|meus|) recordatoris actius 5 | -------------------------------------------------------------------------------- /vocab/ca-es/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (neteja|esborra|elimina) tots els recordatoris 2 | -------------------------------------------------------------------------------- /vocab/ca-es/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancel·la|esborra|elimina) tots els recordatoris pel dia {date} 2 | cancel·la els recordatoris (d'avui|de demà) 3 | cancel·la tots els recordatoris per (avui|demà) 4 | -------------------------------------------------------------------------------- /vocab/ca-es/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | quin és (el|el meu) proper recordatori 2 | quin és el|els meu|meus proper|propers (recordatori|recordatoris) 3 | -------------------------------------------------------------------------------- /vocab/ca-es/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | diga'm (els|tots els) recordatoris del dia {date} 2 | quins són (els|els meus) recordatoris pel dia {date} 3 | tinc recordatoris el dia {date} 4 | -------------------------------------------------------------------------------- /vocab/ca-es/Reminder.intent: -------------------------------------------------------------------------------- 1 | (podries recordar-me {reminder} 2 | -------------------------------------------------------------------------------- /vocab/ca-es/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (recorda'm|notifica'm) {reminder} ((a la|a les) {timedate}|demà|demà passat {date}) 2 | afegeix un nou recordatori {reminder} (a la|a les) {timedate} 3 | afegeix un recordatori {reminder} (a la|a les) {timedate} 4 | (recorda'm|notifica'm) sobre {reminder} (a la|a les) {timedate} 5 | (recorda'm|notifica'm) {reminder} (a la|a les) {timedate} 6 | crea un nou recordatori {reminder} (a la|a les) {timedate} 7 | afegeix un recordatori a {reminder} (a la|a les) {timedate} 8 | -------------------------------------------------------------------------------- /vocab/ca-es/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | silencia el recordatori 2 | recorda'm {anything} més tard 3 | -------------------------------------------------------------------------------- /vocab/ca-es/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | podries recordar-me|recordar-nos una cosa 2 | podries programar un recordatori (per a mí| per a nosaltres) 3 | -------------------------------------------------------------------------------- /vocab/ca-es/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | m'ho podries recordar a la|les {timedate} 2 | podries afegir un recordatori a la|les {timedate} 3 | -------------------------------------------------------------------------------- /vocab/de-de/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |okay |)breche (die |meine |alle |)(aktive |aktiven |)Erinnerung(en|) ab 2 | (ok |okay |)stoppe (die | meine |alle |)(aktive |aktiven |)Erinnerung(en|) 3 | (ok |okay |)entferne (die |meine |alle |)(aktive |aktiven |)Erinnerung(en|) 4 | (ok |okay |)bestätige (die |meine |alle |)(aktive |aktiven |)Erinnerung(en|) 5 | -------------------------------------------------------------------------------- /vocab/de-de/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (leere|entferne|lösche) alle Erinnerungen 2 | -------------------------------------------------------------------------------- /vocab/de-de/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (breche|entferne|lösche) alle Erinnerungen für {date} (ab|) 2 | breche die (heutigen|morgigen) Erinnerungen ab 3 | breche alle Erinnerungen für (heute|morgen) ab 4 | -------------------------------------------------------------------------------- /vocab/de-de/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | Was ist (die|meine) nächste Erinnerung 2 | an was (soll|sollst) (ich mich|du mich) (als nächstes|) erinnern 3 | -------------------------------------------------------------------------------- /vocab/de-de/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | zeige (die|alle) Erinnerungen für {date} 2 | Was sind (die|meine) Erinnerungen für {date} 3 | Habe ich (irgendwelche|) Erinnerungen( an|) {date} 4 | -------------------------------------------------------------------------------- /vocab/de-de/Reminder.intent: -------------------------------------------------------------------------------- 1 | (könntest du mich|erinnere mich) an {reminder} (erinnern|) 2 | -------------------------------------------------------------------------------- /vocab/de-de/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (erinner|benachrichtige) mich (an|über) {reminder} ((um|am) {timedate}|morgen|nach {date}) 2 | füge (eine|) neue Erinnerung {reminder} (um|für) {timedate} hinzu 3 | füge eine Erinnerung (für|zu) {reminder} (um|für) {timedate} hinzu 4 | (erinner|benachrichtige) mich über {reminder} (um|am) {timedate} 5 | (erinner|benachrichtige) mich zu {reminder} am {timedate} 6 | Füge (eine|) neue Erinnerung {reminder} in {timedate} hinzu 7 | füge (eine|) erinnerung {reminder} am {timedate} (hinzu|) 8 | -------------------------------------------------------------------------------- /vocab/de-de/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | lege (die|) erinnerung schlafen 2 | {anything} erinnere mich später 3 | -------------------------------------------------------------------------------- /vocab/de-de/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (könntest du |) (mich|uns) an etwas erinnern 2 | (könntest du |) eine Erinnerung (|für mich|für uns) einstellen 3 | -------------------------------------------------------------------------------- /vocab/de-de/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (könntest du |) mich am {timedate} erinnern 2 | (könntest du |) eine Erinnerung am {timedate} (einrichten|einstellen|) 3 | -------------------------------------------------------------------------------- /vocab/en-us/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |okay |)cancel (the |my |all |)(active |)reminder(s|) 2 | (ok |okay |)stop (the | my |all |)(active |)reminder(s|) 3 | (ok |okay |)remove (the |my |all |)(active |)reminder(s|) 4 | (ok |okay |)acknowledge (the |my |all |)(active |)reminder(s|) 5 | -------------------------------------------------------------------------------- /vocab/en-us/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (clear|remove|delete) all reminders 2 | -------------------------------------------------------------------------------- /vocab/en-us/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancel|remove|delete) all reminders for {date} 2 | cancel (todays|tomorrows) reminders 3 | cancel all reminders for (today|tomorrow) 4 | 5 | -------------------------------------------------------------------------------- /vocab/en-us/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | what is (the|my) next reminder 2 | what is next on my (reminder|reminders|reminder list|list of reminders) 3 | -------------------------------------------------------------------------------- /vocab/en-us/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | get (the|all) reminders for {date} 2 | what are (the|my) reminders for {date} 3 | do i have any reminders( on|) {date} 4 | -------------------------------------------------------------------------------- /vocab/en-us/Reminder.intent: -------------------------------------------------------------------------------- 1 | (could you |)remind me (about|of|to) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/en-us/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (remind|notify) me to {reminder} ((at|on|for) {timedate}|tomorrow|the day after {date}) 2 | (add|set) new reminder {reminder} (at|on|for) {timedate} 3 | (add|set) a reminder to {reminder} (at|on|for) {timedate} 4 | (add|set) a reminder (at|on|for) {timedate} to {reminder} 5 | (remind|notify) me about {reminder} (at|on|for) {timedate} 6 | (remind|notify) me to {reminder} in {timedate} 7 | add new reminder {reminder} in {timedate} 8 | add a reminder to {reminder} in {timedate} 9 | -------------------------------------------------------------------------------- /vocab/en-us/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | snooze( the|) reminder 2 | {anything} remind me later 3 | -------------------------------------------------------------------------------- /vocab/en-us/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (could you |)remind (me|us) of something 2 | (could you |)set a reminder(| for me| for us) 3 | -------------------------------------------------------------------------------- /vocab/en-us/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (could you |)remind me at {timedate} 2 | (could you |)add a reminder at {timedate} 3 | -------------------------------------------------------------------------------- /vocab/es-es/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |de acuerdo |)cancela (el |mi |todos los |) (recordatorio |recordatorios ) (activo|activos|) 2 | (ok |de acuerdo |)(para |detén ) (el |mi |todos los |) (recordatorio |recordatorios ) (activo|activos|) 3 | (ok |de acuerdo |)(borra|elimina) (el |mi |todos los |) (recordatorio |recordatorios ) (activo|activos|) 4 | (ok |de acuerdo |)(confirma|acepta) (el |mi |todos los |) (recordatorio |recordatorios ) (activo|activos|) 5 | -------------------------------------------------------------------------------- /vocab/es-es/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (elimina|borra|cancela) todos los recordatorios 2 | -------------------------------------------------------------------------------- /vocab/es-es/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancela|borra|elimina) todos los recordatorios de {date} 2 | cancela los recordatorios de mañana 3 | cancela todos los recordatorios (de|para) (hoy|mañana) 4 | -------------------------------------------------------------------------------- /vocab/es-es/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | cuál es (el|mi) próximo recordatorio 2 | cuál es mi siguiente (recordatorio|en mi lista de recoratorios) 3 | -------------------------------------------------------------------------------- /vocab/es-es/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (obtén|dime|dame) (los|todos los) recordatorios para {date} 2 | cuáles son (los|mis) recordatorios para {date} 3 | tengo algún recordatorio( en| para|) {date} 4 | -------------------------------------------------------------------------------- /vocab/es-es/Reminder.intent: -------------------------------------------------------------------------------- 1 | (puedes|podrías|) recordarme {reminder} 2 | -------------------------------------------------------------------------------- /vocab/es-es/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (recuérdame|notifícame) {reminder} ((a la|a las) {timedate}|mañana|pasado {date}) 2 | (añade|crea) un nuevo recordatorio {reminder} (a la|a las) {timedate} 3 | (añade|crea) un recordatorio {reminder} (a la|a las) {timedate} 4 | (recuérdame|notifícame) acerca del {reminder} (a la|a las) {timedate} 5 | (recuérdame|notifícame) el {reminder} de {timedate} 6 | (añade|crea) nuevo recordatorio {reminder} en {timedate} 7 | (añade|crea) un recordatorio {reminder} en {timedate} 8 | -------------------------------------------------------------------------------- /vocab/es-es/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | silecia( el|) recordatorio 2 | recuérdame más tarde {anything} 3 | -------------------------------------------------------------------------------- /vocab/es-es/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (puedes |podrías |) (recordarme|recordarnos) algo 2 | (puedes |podrías |) (establecer|poner) un recordatorio(| para mi| para nosotros) 3 | -------------------------------------------------------------------------------- /vocab/es-es/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (puedes |podrías |)(recuérdame|recordarme) a las {timedate} 2 | (puedes |podrías |)(añadir|crear) un recordatorio a las {timedate} 3 | -------------------------------------------------------------------------------- /vocab/eu-eu/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | ezabatu aktibo dauden gogorarazle guztiak, (mesedez|) 2 | utzi bertan behera (gogorarazlea|gogorarazleak), (mesedez|) 3 | (baieztatu|onartu) (nire|) (gogorarazlea|gogorarazleak|gogorarazle guztiak), (mesedez|) 4 | -------------------------------------------------------------------------------- /vocab/eu-eu/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | ezabatu gogorarazle guztiak -------------------------------------------------------------------------------- /vocab/eu-eu/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | ezabatu {date} datako gogorarazle guztiak 2 | biharko gogorarazle guztiak ezabatu, (mesedez|) 3 | (gaurko|biharko) gogorarazle guztiak ezabatu, (mesedez|) 4 | -------------------------------------------------------------------------------- /vocab/eu-eu/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | (esan|esaizkidazu|zein dira|ba al dut) hurrengo gogorarazle(ak| guztiak|) -------------------------------------------------------------------------------- /vocab/eu-eu/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (esan|esaizkidazu|zein dira|ba al dut) {date} (datan|datako|) gogorarazle(ak| guztiak|) 2 | -------------------------------------------------------------------------------- /vocab/eu-eu/Reminder.intent: -------------------------------------------------------------------------------- 1 | gogorarazi {reminder} 2 | (gehitu|sortu) {reminder} gogorarazlea -------------------------------------------------------------------------------- /vocab/eu-eu/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | gogorarazi {reminder} {timedate}(e|)(an|tan) 2 | (gehitu|sortu) {reminder} gogorarazlea {timedate}(e|)(an|tan) -------------------------------------------------------------------------------- /vocab/eu-eu/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | gogorarazlea isildu 2 | (beranduago|geroago) gogorarazi -------------------------------------------------------------------------------- /vocab/eu-eu/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | zerbait gogoraraziko (didazu|zenidake)? 2 | gogorarazle bat (ezarriko|jarriko) (didazu|zenidake) (niretzak|guretzat|) -------------------------------------------------------------------------------- /vocab/eu-eu/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | gogorarazi {timedate}(e|)(an|tan) 2 | (gehitu|sortu) gogorarazlea {timedate}(e|)(an|tan) -------------------------------------------------------------------------------- /vocab/fa-ir/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (اوکی|باشه|) (همه ی|همه) یادآوری(های من|ها|) رو کنسل کن 2 | (اوکی|باشه|) (همه ی|همه) یادآوری(های من|ها|) رو متوقف کن 3 | (اوکی|باشه|) (همه ی|همه) یادآوری(های من|ها|) رو حذف کن 4 | (اوکی|باشه|)تصدیق کن (همه ی|همه|) یادآوری (ها|) 5 | -------------------------------------------------------------------------------- /vocab/fa-ir/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (پاک|حذف|بردار) همه ی یاد آوری ها رو 2 | -------------------------------------------------------------------------------- /vocab/fa-ir/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (کنسل|حذف|بردار) همه ی یادآوری ها رو برای {date} 2 | کنسل یادآوری های (امروز|فردا) 3 | کنسل همه ی یادآوری ها برای (امروز|فردا) 4 | -------------------------------------------------------------------------------- /vocab/fa-ir/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | یادآوری بعدی (من|) چیه 2 | (یادآوری|یادآوری ها|لیست یادآوری ها|برنامه ها) بعدی من چیه 3 | -------------------------------------------------------------------------------- /vocab/fa-ir/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (همه ی|) یادآوری ها به تاریخ {date} 2 | یادآوری ها (من|) به تاریخ {date} 3 | آیا یادآوری در {date} دارم 4 | -------------------------------------------------------------------------------- /vocab/fa-ir/Reminder.intent: -------------------------------------------------------------------------------- 1 | (آیا تو |)میتونی به من یادآوری کنی (راجب|به|) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/fa-ir/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | {reminder} را به من (اطلاع بده|یادآوری کن) (در {timedate}|فردا|روز بعد از {date}) 2 | اضافه کن یادآوری جدید {reminder} در {timedate} 3 | اضافه کن یک یادآوری {reminder} در {timedate} 4 | (یادآوری|اطلاع) بده به من {reminder} در {timedate} 5 | (یادآوری|اطلاع) بده به من {reminder} در {timedate} 6 | اضافه کن یادآوری جدید {reminder} در {timedate} 7 | اضافه کن یک یادآوری {reminder} در {timedate} 8 | -------------------------------------------------------------------------------- /vocab/fa-ir/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | یادآوری (رو|را|) اسنوز کن 2 | {anything} بعدا به من اطلاع بده 3 | -------------------------------------------------------------------------------- /vocab/fa-ir/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (میشه |) (منو|مارو) یادمون بندازی از چیزی 2 | (میشه‌ |)یادآوری ست کنی(|برام|برای ما) 3 | -------------------------------------------------------------------------------- /vocab/fa-ir/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (میشه|) در {timedate} به من یادآوری کنی 2 | (میشه|) یک یادآوری در {timedate} اضافه کنی 3 | -------------------------------------------------------------------------------- /vocab/fr-fr/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |okay |)annule (le|mon|tous les |) rappel(s|) (actif|actifs|) 2 | (ok |okay |)annule (le|mon|mes|tous les |) rappel(s|) (actif|actifs|) 3 | (ok |okay |)annule (le|mon|mes|tous les |) rappel(s|) (actif|actifs|) 4 | (ok |okay |) valide (le|les|mon|tous les |) rappel(s|) (actif|actifs|) 5 | -------------------------------------------------------------------------------- /vocab/fr-fr/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (efface|enlève|supprime) tous les rappels 2 | -------------------------------------------------------------------------------- /vocab/fr-fr/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (annule|enlève|supprime) tous les rappels du {date} 2 | annule les rappels pour (aujourd'hui|demain) 3 | annule tous les rappels pour (aujourd'hui|demain) 4 | -------------------------------------------------------------------------------- /vocab/fr-fr/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | quel est (le|mon) prochain rappel 2 | quel est le prochain (rappel|rappel sur ma liste) 3 | -------------------------------------------------------------------------------- /vocab/fr-fr/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | récupère (les|tous les) rappels pour {date} 2 | quels sont (les|mes) rappels pour {date} 3 | est-ce que j'ai des rappels (le|) {date} 4 | -------------------------------------------------------------------------------- /vocab/fr-fr/Reminder.intent: -------------------------------------------------------------------------------- 1 | (peux-tu me rappeler|rappelle moi) de {reminder} 2 | -------------------------------------------------------------------------------- /vocab/fr-fr/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (rappelle|notifie) moi de {reminder} ((à|le) {timedate}|demain|le jour après {date}) 2 | ajoute un nouveau rappel {reminder} (à|le) {timedate} 3 | ajoute un rappel {reminder} (à|le) {timedate} 4 | (rappelle|notifie) moi à propos de {reminder} (à|le) {timedate} 5 | (rappelle|notifie) moi de {reminder} dans {timedate} 6 | ajoute un nouveau rappel {reminder} (à|le) {timedate} 7 | ajoute un rappel {reminder} (à|le) {timedate} 8 | -------------------------------------------------------------------------------- /vocab/fr-fr/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | mets en pause (le|) rappel 2 | rappelle-moi plus tard {anything} 3 | -------------------------------------------------------------------------------- /vocab/fr-fr/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | peux-tu (me|nous) rappeler quelque-chose 2 | peux-tu (mettre|noter|inscrire) un rappel (|pour moi|pour nous) 3 | -------------------------------------------------------------------------------- /vocab/fr-fr/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (peux-tu|) me le rappeler à {timedate} 2 | (peux-tu|) ajouter un rappel à {timedate} 3 | -------------------------------------------------------------------------------- /vocab/gl-es/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (moi ben) (cancelar|cancela) (o |meu|todos) recordatorio(s|) (activo|activos|) 2 | (moi ben) pare (o| meu |todos |) recordatorio(s|) (activo|activos|) 3 | (moi ben) elimina (o| meu |todos |) recordatorio(s|) (activo|activos|) 4 | (moi ben) configura (o| meu |todos |) recordatorio(s|) (activo|activos|) 5 | -------------------------------------------------------------------------------- /vocab/gl-es/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (limpar|limpa|eliminar|elimina) todos os recordatorios 2 | -------------------------------------------------------------------------------- /vocab/gl-es/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancelar|eliminar|cancela|elimina) todos os recordatorios de {date} 2 | (cancelar|cancela) os recordatorios (para|de) (hoxe|mañá) 3 | (cancelar|cancela) todos os recordatorios (para|de) (hoxe|mañá) 4 | -------------------------------------------------------------------------------- /vocab/gl-es/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | cal é (o|meu) seguinte recordatorio 2 | que tes como seguinte na lista de recordatorios 3 | -------------------------------------------------------------------------------- /vocab/gl-es/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (conseguir|consiga) (os|todos) recordatorios (de|para) {date} 2 | cales son (os|meus)recordatorios (de|para) {date} 3 | teño algún recordatorio para {date} 4 | -------------------------------------------------------------------------------- /vocab/gl-es/Reminder.intent: -------------------------------------------------------------------------------- 1 | (poderías |)lembrarme (sobre|de|para) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/gl-es/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (lembrarme|notificarme) para {reminder} ((ás|en) {timedate}|mañá|o dia despois {date}) 2 | engadir un novo recordatorio {reminder} (ás|en) {timedate} 3 | engadir un recordatorio a {reminder} (ás|en) {timedate} 4 | (lembrarme|notificarme) sobre {reminder} (ás|en) {timedate} 5 | (lembrarme|notificarme) para {reminder} en {timedate} 6 | engadir un novo recordatorio {reminder} en {timedate} 7 | engadir un recordatorio para {reminder} en {timedate} 8 | -------------------------------------------------------------------------------- /vocab/gl-es/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | (adiar|adía) (o|) recordatorio 2 | {anything} lémbrame máis tarde 3 | -------------------------------------------------------------------------------- /vocab/gl-es/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (poderías |)lembrar (me|nos) dalgunha cousa 2 | (poderías)definir un recordatorio(| para min| para nós) 3 | -------------------------------------------------------------------------------- /vocab/gl-es/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (poderíasmo |)lembrar ás {timedate} 2 | (poderías |) emgadir un recordatorio para ás {timedate} 3 | -------------------------------------------------------------------------------- /vocab/it-it/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (|ok|okay|va bene) cancella (|il|il mio|i miei|tutti) promemoria (|attivo|attivi) 2 | (|ok|okay|va bene) ferma (|il|il mio|i miei|tutti) promemoria (|attivo|attivi) 3 | (|ok|okay|va bene) rimuovi (|il|il mio|i miei|tutti) promemoria (|attivo|attivi) 4 | (|ok|okay|va bene) riconosci (|il|il mio|i miei|tutti) promemoria (|attivo|attivi) 5 | -------------------------------------------------------------------------------- /vocab/it-it/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (cancella|rimuovi|elimina) tutti i promemoria 2 | -------------------------------------------------------------------------------- /vocab/it-it/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancella|rimuovi|elimina) tutti i promemoria del {date} 2 | cancella i promemoria di (oggi|domani) 3 | cancella tutti i promemoria per (oggi|domani) 4 | -------------------------------------------------------------------------------- /vocab/it-it/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | quale è (il|mio) prossimo promemoria 2 | qual è il mio prossimo (appuntamento|impegno|promemoria) 3 | -------------------------------------------------------------------------------- /vocab/it-it/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | dammi (i|tutti) promemoria per {date} 2 | quali sono (i|miei) promemoria per {date} 3 | ho qualche promemoria (|il|per il) {date} 4 | -------------------------------------------------------------------------------- /vocab/it-it/Reminder.intent: -------------------------------------------------------------------------------- 1 | (potresti |)ricordarmi (dell'|di|della|del) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/it-it/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (ricordami|notificami) (|di|del|della|del) {reminder} ((|il|al|per) {timedate}|domani|il giorno dopo {date}) 2 | aggiungi nuovo promemoria {reminder} (il|alle) {timedate} 3 | aggiungi un nuovo promemoria (|per) {reminder} (il|alle) {timedate} 4 | (ricordami|notificami) (|di|del|della|del) {reminder} (|il|al|per) {timedate} 5 | (ricordami|notificami) (|di|del|della|del) {reminder} tra {timedate} 6 | aggiungi nuovo promemoria {reminder} il {timedate} 7 | aggiungi un promemoria (|per) {reminder} il {timedate} 8 | -------------------------------------------------------------------------------- /vocab/it-it/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | (posponi|posticipa) (|il|la) (promemoria|notifica) 2 | {anything} ricordamelo più tardi (|per favore) 3 | -------------------------------------------------------------------------------- /vocab/it-it/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (potresti |)ricordar(mi|ci) di qualcosa 2 | (puoi |)impostare un promemoria(| mer me| per noi) 3 | -------------------------------------------------------------------------------- /vocab/it-it/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (potresti|) (ricordamelo|ricordamelo) alle {timedate} 2 | (potresti|)aggiungere un promemoria alle {timedate} 3 | -------------------------------------------------------------------------------- /vocab/nl-nl/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok|oké|) annuleer (de|mijn|alle|) (actieve|) herinnering(en|) 2 | (ok|oké|) stop (de|mijn|alle|) (actieve|) herinnering(en|) 3 | (ok|oké|) verwijder (de|mijn|alle|) (actieve|) herinnering(en|) 4 | (ok|oké|) bevestig (de|mijn|alle|) (actieve|) herinnering(en|) 5 | -------------------------------------------------------------------------------- /vocab/nl-nl/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (wis|verwijder|schrap) alle (herinneringen|reminders) 2 | -------------------------------------------------------------------------------- /vocab/nl-nl/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (annuleer|verwijder|schrap) alle (herinneringen|reminders) voor {date} 2 | annuleer de (herinneringen|reminders) voor (vandaag|morgen) 3 | annuleer de (herinneringen|reminders) voor (vandaag|morgen) 4 | -------------------------------------------------------------------------------- /vocab/nl-nl/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | wat is (de|mijn) volgende (herinnering|reminder) 2 | wat staat er nu op de lijst 3 | -------------------------------------------------------------------------------- /vocab/nl-nl/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | geef me (de|alle) (herinneringen|reminders) voor {date} 2 | wat zijn (de|alle) (herinneringen|reminders) voor {date} 3 | heb ik (waarschuwingen|herinneringen) staan op {date} 4 | -------------------------------------------------------------------------------- /vocab/nl-nl/Reminder.intent: -------------------------------------------------------------------------------- 1 | (wil je|wil jij|kan je|kan jij) (me|mij) herinneren (aan|dat) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/nl-nl/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | herinner me aan {reminder} (om {timedate}|morgen|de dag na {date}) 2 | voeg een nieuwe herinnering {reminder} toe om {timedate} 3 | stel een herinnering {reminder} in om {timedate} 4 | herinner me aan {reminder} om {timedate} 5 | herinner me aan {reminder} over {timedate} 6 | voeg een nieuwe herinnering {reminder} toe over {timedate} 7 | voeg een herinnering toe om te {reminder} over {timedate} 8 | -------------------------------------------------------------------------------- /vocab/nl-nl/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | Herinnering uitstellen 2 | {anything}, herinner me er later aan 3 | -------------------------------------------------------------------------------- /vocab/nl-nl/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | kun je (mij|ons) ergens aan herinneren 2 | kun je een reminder voor (me|ons) instellen 3 | -------------------------------------------------------------------------------- /vocab/nl-nl/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | Geef me een herinnering op {timedate} 2 | Voeg een herinnering toe op {timedate} 3 | -------------------------------------------------------------------------------- /vocab/pl-pl/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (dobra |ok |wporządku |)anuluj (moje |wszystkie |)(aktywne |)(przypomnienie|przypomnienia) 2 | (dobra |ok |wporządku |)zatrzymaj (moje |wszystkie |)(aktywne |)(przypomnienie|przypomnienia) 3 | (dobra |ok |)usuń (moje |wszystkie |)(aktywne |)przypomnieni(a|e) 4 | (dobra |ok |)potwierdź (moje |wszystkie |)(aktywne |)przypomnieni(e|a) 5 | -------------------------------------------------------------------------------- /vocab/pl-pl/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (wyczyść|usuń|skasuj) wszystkie przypomnienia 2 | -------------------------------------------------------------------------------- /vocab/pl-pl/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (usuń|anuluj|wyczyść) wszystkie przypomnienia dla {date} 2 | anuluj (dzisiejsze|jutrzejsze) przypomninia 3 | anuluj wszystkie przypomnienia na (dziś|jutro) 4 | -------------------------------------------------------------------------------- /vocab/pl-pl/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | jakie jest (|moje) następne przypomnienie 2 | co jest (następne (na|w|dla))|następnym) (przypomnieniem|przypomnieniach|przypomnień|liście przypomnień) 3 | -------------------------------------------------------------------------------- /vocab/pl-pl/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (podaj|daj|przypomnij) (wszystkie|) przypomnienia dla {date} 2 | jakie są (moje|) przypomnienia dla {date} 3 | czy mam jakieś przypomnienia dla {date} 4 | -------------------------------------------------------------------------------- /vocab/pl-pl/Reminder.intent: -------------------------------------------------------------------------------- 1 | (mógłbyś |)(przypomnieć|przypomnij) mi (o|żeby(m|)|by(m|)) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/pl-pl/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (przypomnij|zgłoś) mi {reminder} ((na|){timedate}|jutro|dzień po {date}) 2 | dodaj nowe przypomnienie {reminder} (na|) {timedate} 3 | dodaj przypomnienie {reminder} (na|) {timedate} 4 | (przypomnij|powiadom) (mi|mnie) o {reminder} (o|na) {timedate} 5 | (przypomnij|powiadom) (mi|mnie) żeby(m|) {reminder} na {timedate} 6 | dodaj nowe przypomnienie {reminder} na {timedate} 7 | dodaj przypomnienie żeby {reminder} na {timedate} 8 | -------------------------------------------------------------------------------- /vocab/pl-pl/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | wstrzymaj przypomnienie 2 | {anything} przypomnij później 3 | -------------------------------------------------------------------------------- /vocab/pl-pl/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (mógłbyś |)przypomnieć (mi|nam) o czymś 2 | (mógłbyś |)ustawić przypomnienie (| dla mnie| dla nas) 3 | -------------------------------------------------------------------------------- /vocab/pl-pl/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (mógłbyś |)przypomnieć mi o {timedate} 2 | (mógłbyś |)dodać przypomnienie o {timedate} 3 | -------------------------------------------------------------------------------- /vocab/pt-br/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok|okei|) (cancelar|cancele) (o |meu|todos) lembrete(s|) (ativo|ativos|) 2 | (ok |okei |) pare (o| meu |todos |) lembrete(s|) (ativo|ativos|) 3 | (ok|okei|) (cancelar|cancele) (o|os|meu|meus|todos) lembrete(s|) (ativo|ativos|) 4 | (ok|okei|) (cancelar|cancele) (o|os|meu|meus|todos) lembrete(s|) (ativo|ativos|) 5 | -------------------------------------------------------------------------------- /vocab/pt-br/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (limpar|limpe|remover|remova|apagar|apague) todos os lembretes 2 | -------------------------------------------------------------------------------- /vocab/pt-br/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (cancelar|remover|apagar|cancele|apague|remova) todos os lembretes de {date} 2 | (cancelar|cancele) os lembretes (para|de) (hoje|amanhã) 3 | (cancelar|cancele) todos os lembretes (de|para) (hoje|amanhã) 4 | -------------------------------------------------------------------------------- /vocab/pt-br/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | qual é (o|meu) próximo lembrete 2 | o que tem a seguir (na|) (lembrete|lembretes|lista de lembretes) 3 | -------------------------------------------------------------------------------- /vocab/pt-br/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | (pegar|pegue) (os|todos) lembretes (de|para) {date} 2 | quais são (os|meus) lembretes (de|para) {date} 3 | Eu tenho algum lembrete (para|em) {date} 4 | -------------------------------------------------------------------------------- /vocab/pt-br/Reminder.intent: -------------------------------------------------------------------------------- 1 | (você poderia |)lembrar-me (sobre|de|para) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/pt-br/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (lembrar|notificar) me para {reminder} ((às|em) {timedate}|amanhã|o dia após {date}) 2 | adicionar um novo lembrete {reminder} (às|em) {timedate} 3 | adicionar um lembrete para {reminder} (às|em) {timedate} 4 | (lembrar|notificar) me sobre {reminder} (às|em) {timedate} 5 | (lembrar|notificar) me para {reminder} em {timedate} 6 | adicionar um novo lembrete {reminder} em {timedate} 7 | adicionar um lembrete para {reminder} em {timedate} 8 | -------------------------------------------------------------------------------- /vocab/pt-br/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | (adiar|adie) (o|) lembrete 2 | {anything} lembre-me mais tarde 3 | -------------------------------------------------------------------------------- /vocab/pt-br/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (você poderia |)lembrar (me|nos) de alguma coisa 2 | (você poderia |)definir um lembrete(| para mim| para nós) 3 | -------------------------------------------------------------------------------- /vocab/pt-br/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (você poderia |)lembrar-me às {timedate} 2 | (você poderia |)adicionar um lembrete para {timedate} 3 | -------------------------------------------------------------------------------- /vocab/ru-ru/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (хорошо |хорошо |)отмени (|мои |все |) (активные |)напоминания 2 | (хорошо |хорошо |) останови ( |мои |все |) (активные |)напоминания 3 | (хорошо |хорошо |) убери ( |мои |все |) (активные |) напоминания 4 | (хорошо |хорошо |) подтверди ( |мои |все |) (активные |) напоминания 5 | -------------------------------------------------------------------------------- /vocab/ru-ru/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (очистить | освободить | удалить) все напоминания 2 | -------------------------------------------------------------------------------- /vocab/ru-ru/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (отмени|удали|очисти) все напоминания для {date} 2 | отмени (сегодняшние|завтрашние) напоминания 3 | отмени все напоминания на (сегодня|завтра) 4 | -------------------------------------------------------------------------------- /vocab/ru-ru/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | какое (|мое) следующее напоминание 2 | что дальше на моем (напоминании|напоминаниях|списке напоминаний|список напоминаний) 3 | -------------------------------------------------------------------------------- /vocab/ru-ru/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | получить (|все) напоминания для {date} 2 | какие (|мои) напоминания для {date} 3 | у меня есть напоминания ( на|) {date} 4 | -------------------------------------------------------------------------------- /vocab/ru-ru/Reminder.intent: -------------------------------------------------------------------------------- 1 | (мог бы ты |)напомнить мне (про|об|что) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/ru-ru/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (напомни|скажи) мне что {reminder} ((во|в) {timedate}|завтра| день после {date}) 2 | добавь новое напоминание {reminder} (во|для) {timedate} 3 | добавь напоминание {reminder} (во|для) {timedate} 4 | (напомни|уведоми) мне про {reminder} (в|для) {timedate} 5 | (напомни|уведоми) мне про {reminder} в {timedate} 6 | добавь новое напоминание {reminder} в {timedate} 7 | добавь напоминание {reminder} в {timedate} 8 | -------------------------------------------------------------------------------- /vocab/ru-ru/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | перенеси( это|) напоминание 2 | {anything} напомни мне позже 3 | -------------------------------------------------------------------------------- /vocab/ru-ru/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (можешь |)напомнить (мне|нам) о чем-то 2 | (ты можешь |)поставить напоминание (| для меня| для нас) 3 | -------------------------------------------------------------------------------- /vocab/ru-ru/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (ты можешь |)напомнить мне в {timedate} 2 | (ты можешь |)добавить напоминание для {timedate} 3 | -------------------------------------------------------------------------------- /vocab/sv-se/CancelActiveReminder.intent: -------------------------------------------------------------------------------- 1 | (ok |okej |)avbryt (den |min |alla |)(aktiva |)påminnelse(r|) 2 | (ok |okej |)stoppa (den | min |alla |)(aktiv(a|) |)påminnelse(r|) 3 | (ok | okej |)ta bort (den |min |alla |)(aktiv(a|) |)påminnelse(r|) 4 | (ok |okej |)bekräfta (den |min |alla |)(aktiva |)påminnelse(r|) 5 | -------------------------------------------------------------------------------- /vocab/sv-se/ClearReminders.intent: -------------------------------------------------------------------------------- 1 | (rensa|ta bort|radera) alla påminnelser 2 | -------------------------------------------------------------------------------- /vocab/sv-se/DeleteReminderForDay.intent: -------------------------------------------------------------------------------- 1 | (avbryt|ta bort|radera) alla påminnelser för {date} 2 | avbryt (dagens|morgondagens) påminnelser 3 | avbryt alla påminnelser för (idag|imorgon) 4 | -------------------------------------------------------------------------------- /vocab/sv-se/GetNextReminders.intent: -------------------------------------------------------------------------------- 1 | vad är (den|min) nästa påminnelsen 2 | vad är nästa på min (påminnelse|påminnelser|påminnelse lista|lista med påminnelser) 3 | -------------------------------------------------------------------------------- /vocab/sv-se/GetRemindersForDay.intent: -------------------------------------------------------------------------------- 1 | ge mig (alla|påminnelser) för {date} 2 | vilka (är|är mina) påminnelserna för {date} 3 | har jag några påminnelser( på|) {date} 4 | -------------------------------------------------------------------------------- /vocab/sv-se/Reminder.intent: -------------------------------------------------------------------------------- 1 | (kan du |)påminna mig (om|av|till) {reminder} 2 | -------------------------------------------------------------------------------- /vocab/sv-se/ReminderAt.intent: -------------------------------------------------------------------------------- 1 | (påminn|meddela) mig om {reminder} ((vid|på) {timedate}|imorgon|dagen efter {date}) 2 | lägg till ny påminnelse {reminder} (vid|på) {timedate} 3 | lägg till en påminnelse till {reminder} (vid|på) {timedate} 4 | (påminn|meddela) mig om {reminder} (vid|på) {timedate} 5 | (påminn|meddela) mig {reminder} på {timedate} 6 | lägg till ny påminnelse {reminder} på {timedate} 7 | lägg till en påminnelse till {reminder} på {timedate} 8 | -------------------------------------------------------------------------------- /vocab/sv-se/SnoozeReminder.intent: -------------------------------------------------------------------------------- 1 | snooze( den|) påminnelsen 2 | {anything} påminn mig senare 3 | -------------------------------------------------------------------------------- /vocab/sv-se/SomethingReminder.intent: -------------------------------------------------------------------------------- 1 | (kan du |)påminna (mig|oss) om något 2 | (kan du |)ställa in en påminnelse (| för mig| för oss) 3 | -------------------------------------------------------------------------------- /vocab/sv-se/UnspecifiedReminderAt.intent: -------------------------------------------------------------------------------- 1 | (kan du |)påminna mig vid {timedate} 2 | (kan du |)lägga till en påminnelse vid {timedate} 3 | --------------------------------------------------------------------------------