├── .editorconfig ├── .github └── workflows │ └── CI.yml ├── .gitignore ├── COPYING ├── README.md ├── config.vala.in ├── data ├── icons │ ├── io.github.ellie_commons.reminduck.png │ └── scalable.svg ├── io.github.ellie_commons.reminduck.desktop.in ├── io.github.ellie_commons.reminduck.gresource.xml ├── io.github.ellie_commons.reminduck.gschema.xml ├── io.github.ellie_commons.reminduck.metainfo.xml.in ├── meson.build ├── quack.mp3 ├── screenshots │ ├── Editor-dark.png │ ├── Editor.png │ ├── List-dark.png │ ├── List.png │ ├── Main.png │ ├── Welcome-dark.png │ └── Welcome.png └── stylesheet.css ├── io.github.ellie_commons.reminduck.flathub.yml ├── io.github.ellie_commons.reminduck.yml ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── ca.po ├── de.po ├── es.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── extra.pot │ ├── fr.po │ ├── it.po │ ├── meson.build │ ├── nl.po │ ├── pt.po │ └── tr.po ├── fr.po ├── io.github.ellie_commons.reminduck.pot ├── it.po ├── meson.build ├── nl.po ├── pt.po ├── ru.po └── tr.po ├── src ├── Application.vala ├── Database.vala ├── MainWindow.vala ├── Objects │ └── Reminder.vala ├── Widgets │ └── Views │ │ ├── ReminderEditor.vala │ │ └── RemindersView.vala └── meson.build └── vapi └── config.vapi /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | root = true 3 | 4 | # elementary defaults 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = tab 9 | indent_style = space 10 | insert_final_newline = true 11 | max_line_length = 80 12 | tab_width = 4 13 | 14 | # Markup files 15 | [{*.html,*.xml,*.xml.in,*.yml}] 16 | tab_width = 2 17 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | pull_request: 5 | branches: [ main ] 6 | types: 7 | - opened 8 | - reopened 9 | - synchronize 10 | 11 | jobs: 12 | flatpak: 13 | name: Flatpak 14 | runs-on: ubuntu-latest 15 | 16 | container: 17 | image: ghcr.io/elementary/flatpak-platform/runtime:8 18 | options: --privileged 19 | 20 | steps: 21 | - name: Checkout 22 | uses: actions/checkout@v4 23 | 24 | - name: Build 25 | uses: flatpak/flatpak-github-actions/flatpak-builder@v6 26 | with: 27 | bundle: reminduck.flatpak 28 | manifest-path: io.github.ellie_commons.reminduck.yml 29 | run-tests: true 30 | repository-name: appcenter 31 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 32 | cache-key: "flatpak-builder-${{ github.sha }}" 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | builddir 2 | .flatpak-builder 3 | repo 4 | _build -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | 676 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ![icon](data/icons/io.github.ellie_commons.reminduck.png) Reminduck 2 | 3 | Remember your stuff in an adorably annoying way 4 | 5 |

6 | Screenshot 7 |

8 | 9 | Reminduck is a simple reminder app made to be quick and easy - it focuses on simple or recurrent reminders with set time and date and nothing else. 10 | 11 | It's perfect if all you want are simple or daily/weekly/monthly reminders. Anything more than that is not achievable by Reminduck right now - but you can help! Open an issue or a pull request if you have any ideas or requests. 12 | 13 | _And it quacks._ 14 | 15 | 16 | 17 | ## 🛣️ Roadmap 18 | 19 | - Currently dusting this off!!! (Help wanted) 20 | - Setting to have the app quack 21 | - Request autostart 22 | 23 | 24 | ## 💝 Donations 25 | 26 | Original developer is Matt 27 | https://github.com/matfantinel 28 | 29 | Currently actively trying to revive this project is me - Stella 30 | Support is always welcome and shows us that people want this work to continue. 31 | 32 | Stella, current main dev: 33 |

34 | 35 | 36 | 37 |

38 | 39 | 40 | 41 | 42 | 43 | ## 🏗️ Building 44 | 45 | Please make sure you have these dependencies first before building Jorts. 46 | 47 | ```bash 48 | flatpak-builder 49 | libgranite-7-dev 50 | gtk+-4.0 51 | libjson-glib-dev 52 | libgee-0.8-dev 53 | libsqlite3-dev 54 | meson 55 | valac 56 | gettext 57 | ``` 58 | 59 | here are the package names to install: 60 | 61 | ```bash 62 | sudo apt install libgranite-7-common libsqlite3-dev libgee-0.8-2 meson valac libvala-0.56-0 flatpak-builder gettext 63 | ``` 64 | 65 | Installation is as simple as installing the above, downloading and extracting the zip archive, changing to the new repo's directory, 66 | and run the following command: 67 | 68 | On elementary OS or with its appcenter remote installed 69 | 70 | ```bash 71 | flatpak-builder --force-clean --user --install-deps-from=appcenter --install builddir ./io.github.ellie_commons.reminduck.yml 72 | ``` 73 | 74 | ## ACKNOWLEDGMENTS 75 | 76 | (NOT YET IMPLEMENTED) 77 | Quack sound: https://pixabay.com/sound-effects/075176-duck-quack-40345/ 78 | 79 | Sound Effect by freesound_community from Pixabay 80 | 81 | 82 | -------------------------------------------------------------------------------- /config.vala.in: -------------------------------------------------------------------------------- 1 | namespace Constants { 2 | public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; 3 | public const string PROJECT_NAME = @PROJECT_NAME@; 4 | public const string VERSION = @VERSION@; 5 | public const string INSTALL_PREFIX = @PREFIX@; 6 | public const string DATADIR = @DATADIR@; 7 | } -------------------------------------------------------------------------------- /data/icons/io.github.ellie_commons.reminduck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/icons/io.github.ellie_commons.reminduck.png -------------------------------------------------------------------------------- /data/io.github.ellie_commons.reminduck.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Reminduck 3 | GenericName=Reminders 4 | Comment=Don't forget about your stuff in an adorably annoying way 5 | Categories=Office;Utility; 6 | Exec=io.github.ellie_commons.reminduck %U 7 | Icon=io.github.ellie_commons.reminduck 8 | Terminal=false 9 | Type=Application 10 | X-GNOME-Gettext-Domain=reminduck 11 | X-GNOME-UsesNotifications=true 12 | Keywords=Reminduck;Personal;Assistant;Reminders; 13 | -------------------------------------------------------------------------------- /data/io.github.ellie_commons.reminduck.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | icons/io.github.ellie_commons.reminduck.png 5 | stylesheet.css 6 | quack.mp3 7 | 8 | 9 | -------------------------------------------------------------------------------- /data/io.github.ellie_commons.reminduck.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 600 9 | The saved width of the window. 10 | The saved width of the window. 11 | 12 | 13 | 400 14 | The saved height of the window. 15 | The saved height of the window. 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /data/io.github.ellie_commons.reminduck.metainfo.xml.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | io.github.ellie_commons.reminduck 5 | CC0 6 | GPL-3.0+ 7 | Reminduck 8 | Remember your stuff in an adorably annoying way 9 | 10 |

A simple reminder app made to be quick and easy - Reminduck focuses on simple or recurrent reminders with set time and date and nothing else.

11 | 12 |

It's perfect if all you want are simple or daily/weekly/monthly reminders. Anything more than that is not achievable by Reminduck right now - but you can help! Open an issue or a pull request if you have any ideas or requests.

13 | 14 |

And it quacks.

15 |
16 | 17 | 18 | 19 |

Under the hood modernization for elementary OS 8

20 |
21 |
22 | 23 | 24 |

Add "Office" category to launcher

25 |
26 |
27 | 28 | 29 |
    30 |
  • - Support for elementary OS 6.0 Odin!
  • 31 |
  • - 🇮🇹 Updated italian translation (@albanobattistella)
  • 32 |
33 |
34 |
35 | 36 | 37 |
    38 |
  • - 🇩🇪 German translation (@Technipion)
  • 39 |
  • - 🇮🇹 Updated italian translation (@albanobattistella)
  • 40 |
41 |
42 |
43 | 44 | 45 |
    46 |
  • 🐞 Enable translations on Flatpak
  • 47 |
48 |
49 |
50 | 51 | 52 |
    53 |
  • 🗃️ Flatpak Support!
  • 54 |
55 |
56 |
57 | 58 | 59 |
    60 |
  • 🌑 Dark-mode toggle on the header bar
  • 61 |
  • 🔔 Notifications now stick around until you close them, to make sure you don't miss your quacks
  • 62 |
  • 🌟 Support for additional GTK themes, making Reminduck distro-agnostic
  • 63 |
  • 🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)
  • 64 |
  • 🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)
  • 65 |
66 |
67 |
68 | 69 | 70 |
    71 |
  • 🐥️ New Icon! - hopefully this one looks better than the previous one. With great help from Nararyans R.I. (@Fatih20)
  • 72 |
  • 💁‍ Increased compatibility with translations (Corentin Noël | @tintou)
  • 73 |
  • 🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)
  • 74 |
75 |
76 |
77 | 78 | 79 |
    80 |
  • 🔁️ Recurrent reminders - you can now have reminders that show up in set periods of time: every day, week, month, or a set interval
  • 81 |
  • 🌟️ General UI improvements to make settings up quacks more pleasant
  • 82 |
  • 🌃️ Dark Mode is now prettier
  • 83 |
  • 🇹🇷 Turkish translation (libreajans)
  • 84 |
  • 🇳🇱 Dutch translation (Vistaus)
  • 85 |
86 |
87 |
88 | 89 | 90 |
    91 |
  • Support the unofficial "Prefer Dark Theme" setting 🌝️
  • 92 |
  • This should also make it work with other dark GTK themes
  • 93 |
94 |
95 |
96 | 97 | 98 |

Initial Release 🦆

99 |
100 |
101 |
102 | 103 | io.github.ellie_commons.reminduck 104 | 105 | 106 | none 107 | none 108 | none 109 | none 110 | none 111 | none 112 | none 113 | none 114 | none 115 | none 116 | none 117 | none 118 | none 119 | none 120 | none 121 | none 122 | none 123 | none 124 | none 125 | none 126 | none 127 | none 128 | none 129 | none 130 | none 131 | none 132 | none 133 | 134 | Matheus Fantinel 135 | https://github.com/matfantinel/reminduck 136 | https://github.com/matfantinel/reminduck/issues 137 | https://github.com/matfantinel/reminduck/issues 138 | matfantinel@gmail.com 139 | 140 | 141 | https://raw.githubusercontent.com/matfantinel/reminduck/master/data/screenshots/Welcome.png 142 | 143 | 144 | https://raw.githubusercontent.com/matfantinel/reminduck/master/data/screenshots/Editor.png 145 | 146 | 147 | https://raw.githubusercontent.com/matfantinel/reminduck/master/data/screenshots/Editor-dark.png 148 | 149 | 150 | https://raw.githubusercontent.com/matfantinel/reminduck/master/data/screenshots/List.png 151 | 152 | 153 | 154 | #3D3D3D 155 | #FFF394 156 | 0 157 | 158 |
159 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | 2 | 3 | install_data( 4 | 'icons' / 'scalable.svg', 5 | install_dir: get_option('datadir') / 'icons' / 'scalable' / 'apps', 6 | rename: meson.project_name() + '.svg' 7 | ) 8 | 9 | i18n.merge_file( 10 | input: meson.project_name() + '.desktop.in', 11 | output: meson.project_name() + '.desktop', 12 | po_dir: join_paths(meson.global_source_root(), 'po', 'extra'), 13 | type: 'desktop', 14 | install: true, 15 | install_dir: join_paths(get_option('datadir'), 'applications') 16 | ) 17 | 18 | i18n.merge_file( 19 | input: meson.project_name() + '.metainfo.xml.in', 20 | output: meson.project_name() + '.metainfo.xml', 21 | po_dir: join_paths(meson.global_source_root(), 'po', 'extra'), 22 | install: true, 23 | install_dir: join_paths(get_option('datadir'), 'metainfo') 24 | ) 25 | 26 | install_data( 27 | meson.project_name() + '.gschema.xml', 28 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas') 29 | ) 30 | -------------------------------------------------------------------------------- /data/quack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/quack.mp3 -------------------------------------------------------------------------------- /data/screenshots/Editor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/Editor-dark.png -------------------------------------------------------------------------------- /data/screenshots/Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/Editor.png -------------------------------------------------------------------------------- /data/screenshots/List-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/List-dark.png -------------------------------------------------------------------------------- /data/screenshots/List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/List.png -------------------------------------------------------------------------------- /data/screenshots/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/Main.png -------------------------------------------------------------------------------- /data/screenshots/Welcome-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/Welcome-dark.png -------------------------------------------------------------------------------- /data/screenshots/Welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/reminduck/89f78ca8e80837159cef6949d915b96953566226/data/screenshots/Welcome.png -------------------------------------------------------------------------------- /data/stylesheet.css: -------------------------------------------------------------------------------- 1 | @define-color accent_color @BANANA_500; 2 | @define-color color_primary @BANANA_300; 3 | 4 | .welcome { 5 | background-color: inherit; 6 | } 7 | 8 | .reminduck-reminders-list { 9 | background-color: inherit; 10 | } 11 | 12 | .reminduck-reminders-list .list-item { 13 | padding: 5px 10px; 14 | border-radius: 5px; 15 | border: 1px solid #d4d4d4; 16 | } -------------------------------------------------------------------------------- /io.github.ellie_commons.reminduck.flathub.yml: -------------------------------------------------------------------------------- 1 | app-id: io.github.ellie_commons.reminduck 2 | # elementary SDK is not available on Flathub, so use the elementary BaseApp instead 3 | base: io.elementary.BaseApp 4 | base-version: 'circe-24.08' 5 | runtime: org.gnome.Platform 6 | runtime-version: '48' 7 | sdk: org.gnome.Sdk 8 | command: io.github.ellie_commons.reminduck 9 | finish-args: 10 | - '--share=ipc' 11 | - '--device=dri' 12 | - '--socket=fallback-x11' 13 | - '--socket=wayland' 14 | # Required to send notifications 15 | - '--socket=session-bus' 16 | # Required to do a quack sound 17 | - '--socket=pulseaudio' 18 | cleanup: 19 | - '/include' 20 | - '/lib/pkgconfig' 21 | - '/man' 22 | - '/share/doc' 23 | - '/share/gtk-doc' 24 | - '/share/man' 25 | - '/share/pkgconfig' 26 | - '/share/installed-tests' 27 | - '*.la' 28 | - '*.a' 29 | modules: 30 | - name: reminduck 31 | buildsystem: meson 32 | sources: 33 | - type: dir 34 | path: "." 35 | -------------------------------------------------------------------------------- /io.github.ellie_commons.reminduck.yml: -------------------------------------------------------------------------------- 1 | app-id: io.github.ellie_commons.reminduck 2 | runtime: io.elementary.Platform 3 | runtime-version: '8.2' 4 | sdk: io.elementary.Sdk 5 | command: io.github.ellie_commons.reminduck 6 | finish-args: 7 | - '--share=ipc' 8 | - '--device=dri' 9 | - '--socket=fallback-x11' 10 | - '--socket=wayland' 11 | # Required to send notifications 12 | - '--socket=session-bus' 13 | # Required to do a quack sound 14 | - '--socket=pulseaudio' 15 | cleanup: 16 | - '/include' 17 | - '/lib/pkgconfig' 18 | - '/man' 19 | - '/share/doc' 20 | - '/share/gtk-doc' 21 | - '/share/man' 22 | - '/share/pkgconfig' 23 | - '/share/installed-tests' 24 | - '*.la' 25 | - '*.a' 26 | modules: 27 | - name: reminduck 28 | buildsystem: meson 29 | sources: 30 | - type: dir 31 | path: "." 32 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('io.github.ellie_commons.reminduck', 'vala', 'c', version: '2.0.0') 2 | 3 | gnome = import('gnome') 4 | i18n = import('i18n') 5 | 6 | add_project_arguments( 7 | '-DGETTEXT_PACKAGE="@0@"'.format(meson.project_name()), 8 | language: 'c' 9 | ) 10 | 11 | conf_data = configuration_data() 12 | conf_data.set_quoted('PROJECT_NAME', meson.project_name()) 13 | conf_data.set_quoted('GETTEXT_PACKAGE', meson.project_name()) 14 | conf_data.set_quoted('VERSION', meson.project_version()) 15 | conf_data.set_quoted('PREFIX', get_option('prefix')) 16 | conf_data.set_quoted('DATADIR', join_paths (get_option('prefix'), get_option('datadir'))) 17 | config_header = configure_file( 18 | input : 'config.vala.in', 19 | output : 'config.vala', 20 | configuration : conf_data 21 | ) 22 | 23 | asresources = gnome.compile_resources( 24 | 'as-resources', 25 | join_paths('data', meson.project_name()) + '.gresource.xml', 26 | source_dir: 'data', 27 | c_name: 'as' 28 | ) 29 | 30 | subdir('src') 31 | 32 | executable( 33 | meson.project_name(), 34 | sources, 35 | asresources, 36 | config_header, 37 | dependencies: [ 38 | dependency('gtk4'), 39 | dependency('gee-0.8'), 40 | dependency('sqlite3'), 41 | dependency('granite-7') 42 | ], 43 | install: true 44 | ) 45 | 46 | subdir('data') 47 | subdir('po') 48 | 49 | gnome.post_install( 50 | glib_compile_schemas: true, 51 | gtk_update_icon_cache: true, 52 | update_desktop_database: true, 53 | ) 54 | 55 | 56 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | fr 2 | nl 3 | pt 4 | tr 5 | es 6 | it 7 | de 8 | ca 9 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Application.vala 2 | src/MainWindow.vala 3 | src/Objects/Reminder.vala 4 | src/Widgets/Views/ReminderEditor.vala 5 | src/Widgets/Views/RemindersView.vala 6 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # ONDO ALVELLË, 2021. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 12 | "PO-Revision-Date: 2021-11-17 17:14+0100\n" 13 | "Last-Translator: ONDO ALVELLË\n" 14 | "Language-Team: none\n" 15 | "Language: ca\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: src/MainWindow.vala:84 22 | msgid "Back" 23 | msgstr "Enrere" 24 | 25 | #: src/MainWindow.vala:94 26 | msgid "Light mode" 27 | msgstr "Mode clar" 28 | 29 | #: src/MainWindow.vala:95 30 | msgid "Dark mode" 31 | msgstr "Mode fosc" 32 | 33 | #: src/MainWindow.vala:133 34 | msgid "QUACK! I'm Reminduck" 35 | msgstr "NYEC! Soc Reminduck" 36 | 37 | #: src/MainWindow.vala:134 38 | msgid "The duck that reminds you" 39 | msgstr "L'ànec que et recorda coses" 40 | 41 | #: src/MainWindow.vala:148 42 | msgid "New Reminder" 43 | msgstr "Recordatori nou" 44 | 45 | #: src/MainWindow.vala:148 46 | msgid "Create a new reminder for a set date and time" 47 | msgstr "Crea un recordatori nou per una data i hora concreta" 48 | 49 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 50 | msgid "View Reminders" 51 | msgstr "Mostra els recordatoris" 52 | 53 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 54 | msgid "See reminders you've created" 55 | msgstr "Mostra els recordatoris que heu creat" 56 | 57 | #: src/Objects/Reminder.vala:45 58 | msgid "Don't Repeat" 59 | msgstr "No el repeteixis" 60 | 61 | #: src/Objects/Reminder.vala:49 62 | msgid "Every X minutes" 63 | msgstr "Cada X minuts" 64 | 65 | #: src/Objects/Reminder.vala:51 66 | #, c-format 67 | msgid "Every minute" 68 | msgid_plural "Every %d minutes" 69 | msgstr[0] "Cada minut" 70 | msgstr[1] "Cada %d minuts" 71 | 72 | #: src/Objects/Reminder.vala:55 73 | msgid "Every day" 74 | msgstr "Cada dia" 75 | 76 | #: src/Objects/Reminder.vala:58 77 | msgid "Every week" 78 | msgstr "Cada setmana" 79 | 80 | #: src/Objects/Reminder.vala:61 81 | msgid "Every month" 82 | msgstr "Cada mes" 83 | 84 | #: src/Widgets/Views/ReminderEditor.vala:54 85 | msgid "Create a new reminder" 86 | msgstr "Crea un recordatori nou" 87 | 88 | #: src/Widgets/Views/ReminderEditor.vala:58 89 | msgid "What do you want to be reminded of?" 90 | msgstr "Què vols que et recordi?" 91 | 92 | #: src/Widgets/Views/ReminderEditor.vala:85 93 | msgid "Repeat" 94 | msgstr "Repeteix" 95 | 96 | #: src/Widgets/Views/ReminderEditor.vala:90 97 | msgid "Save reminder" 98 | msgstr "Desa el recordatori" 99 | 100 | #: src/Widgets/Views/RemindersView.vala:47 101 | msgid "Your reminders" 102 | msgstr "Els teus recordatoris" 103 | 104 | #: src/Widgets/Views/RemindersView.vala:52 105 | msgid "Create another" 106 | msgstr "Crea'n un altre" 107 | 108 | #: src/Widgets/Views/RemindersView.vala:93 109 | #, c-format 110 | msgid "Reminded: %s" 111 | msgstr "Recordat: %s" 112 | 113 | #: src/Widgets/Views/RemindersView.vala:104 114 | msgid "Delete" 115 | msgstr "Esborra" 116 | 117 | #: src/Widgets/Views/RemindersView.vala:111 118 | msgid "Edit" 119 | msgstr "Edita" 120 | 121 | #: src/Widgets/Views/RemindersView.vala:120 122 | msgid "Today" 123 | msgstr "Avui" 124 | -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- 1 | # German translations for io.github.ellie_commons.reminduck package. 2 | # Copyright (C) 2020 THE io.github.ellie_commons.reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Automatically generated, then modified to need, 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 11 | "PO-Revision-Date: 2020-01-13 15:11+0100\n" 12 | "Last-Translator: Alexander Schneider \n" 13 | "Language-Team: none\n" 14 | "Language: de\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: src/MainWindow.vala:84 21 | msgid "Back" 22 | msgstr "Zurück" 23 | 24 | #: src/MainWindow.vala:94 25 | msgid "Light mode" 26 | msgstr "Heller Modus" 27 | 28 | #: src/MainWindow.vala:95 29 | msgid "Dark mode" 30 | msgstr "Dunkler Modus" 31 | 32 | #: src/MainWindow.vala:133 33 | msgid "QUACK! I'm Reminduck" 34 | msgstr "QUAK! Ich bin Reminduck" 35 | 36 | #: src/MainWindow.vala:134 37 | msgid "The duck that reminds you" 38 | msgstr "Die Ente die dich erinnert" 39 | 40 | #: src/MainWindow.vala:148 41 | msgid "New Reminder" 42 | msgstr "Neue Erinnerung" 43 | 44 | #: src/MainWindow.vala:148 45 | msgid "Create a new reminder for a set date and time" 46 | msgstr "Erstelle neue Erinnerung für bestimmte Zeit und Datum" 47 | 48 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 49 | msgid "View Reminders" 50 | msgstr "Zeige Erinnerungen an" 51 | 52 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 53 | msgid "See reminders you've created" 54 | msgstr "Zeige bisher erstellte Erinnerungen an" 55 | 56 | #: src/Objects/Reminder.vala:45 57 | msgid "Don't Repeat" 58 | msgstr "Nicht wiederholen" 59 | 60 | #: src/Objects/Reminder.vala:49 61 | msgid "Every X minutes" 62 | msgstr "Alle X Minuten" 63 | 64 | #: src/Objects/Reminder.vala:51 65 | #, c-format 66 | msgid "Every minute" 67 | msgid_plural "Every %d minutes" 68 | msgstr[0] "Jede Minute" 69 | msgstr[1] "Alle %d Minuten" 70 | 71 | #: src/Objects/Reminder.vala:55 72 | msgid "Every day" 73 | msgstr "Jeden Tag" 74 | 75 | #: src/Objects/Reminder.vala:58 76 | msgid "Every week" 77 | msgstr "Jede Woche" 78 | 79 | #: src/Objects/Reminder.vala:61 80 | msgid "Every month" 81 | msgstr "Jeden Monat" 82 | 83 | #: src/Widgets/Views/ReminderEditor.vala:54 84 | msgid "Create a new reminder" 85 | msgstr "Erstelle eine neue Erinnerung" 86 | 87 | #: src/Widgets/Views/ReminderEditor.vala:58 88 | msgid "What do you want to be reminded of?" 89 | msgstr "An was möchtest Du erinnert werden?" 90 | 91 | #: src/Widgets/Views/ReminderEditor.vala:85 92 | msgid "Repeat" 93 | msgstr "Wiederhole" 94 | 95 | #: src/Widgets/Views/ReminderEditor.vala:90 96 | msgid "Save reminder" 97 | msgstr "Speichere Erinnerung" 98 | 99 | #: src/Widgets/Views/RemindersView.vala:47 100 | msgid "Your reminders" 101 | msgstr "Deine Erinnerungen" 102 | 103 | #: src/Widgets/Views/RemindersView.vala:52 104 | msgid "Create another" 105 | msgstr "Weitere Erinnerung erstellen" 106 | 107 | #: src/Widgets/Views/RemindersView.vala:93 108 | #, c-format 109 | msgid "Reminded: %s" 110 | msgstr "Erinnerung an: %s" 111 | 112 | #: src/Widgets/Views/RemindersView.vala:104 113 | msgid "Delete" 114 | msgstr "Löschen" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:111 117 | msgid "Edit" 118 | msgstr "Bearbeiten" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:120 121 | msgid "Today" 122 | msgstr "Heute" 123 | -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- 1 | # Spanish translations for Reminduck. 2 | # Copyright (C) 2019 THE Reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Alejandro Elí, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 11 | "PO-Revision-Date: DATEME\n" 12 | "Last-Translator: Alejandro Elí\n" 13 | "Language-Team: none\n" 14 | "Language: es\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: src/MainWindow.vala:84 21 | msgid "Back" 22 | msgstr "Volver" 23 | 24 | #: src/MainWindow.vala:94 25 | msgid "Light mode" 26 | msgstr "Modo claro" 27 | 28 | #: src/MainWindow.vala:95 29 | msgid "Dark mode" 30 | msgstr "Modo oscuro" 31 | 32 | #: src/MainWindow.vala:133 33 | msgid "QUACK! I'm Reminduck" 34 | msgstr "CUA CUA! Soy Reminduck" 35 | 36 | #: src/MainWindow.vala:134 37 | msgid "The duck that reminds you" 38 | msgstr "El pato que te recuerda cosas" 39 | 40 | #: src/MainWindow.vala:148 41 | msgid "New Reminder" 42 | msgstr "Nuevo" 43 | 44 | #: src/MainWindow.vala:148 45 | msgid "Create a new reminder for a set date and time" 46 | msgstr "Cree un nuevo recordatorio" 47 | 48 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 49 | msgid "View Reminders" 50 | msgstr "Pendientes" 51 | 52 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 53 | msgid "See reminders you've created" 54 | msgstr "Vea todos sus recordatorios" 55 | 56 | #: src/Objects/Reminder.vala:45 57 | msgid "Don't Repeat" 58 | msgstr "Sin repetir" 59 | 60 | #: src/Objects/Reminder.vala:49 61 | msgid "Every X minutes" 62 | msgstr "Cada X minutos" 63 | 64 | #: src/Objects/Reminder.vala:51 65 | #, c-format 66 | msgid "Every minute" 67 | msgid_plural "Every %d minutes" 68 | msgstr[0] "Cada minuto" 69 | msgstr[1] "Cada %d minutos" 70 | 71 | #: src/Objects/Reminder.vala:55 72 | msgid "Every day" 73 | msgstr "Diariamente" 74 | 75 | #: src/Objects/Reminder.vala:58 76 | msgid "Every week" 77 | msgstr "Semanalmente" 78 | 79 | #: src/Objects/Reminder.vala:61 80 | msgid "Every month" 81 | msgstr "Mensualmente" 82 | 83 | #: src/Widgets/Views/ReminderEditor.vala:54 84 | msgid "Create a new reminder" 85 | msgstr "Nuevo recordatorio" 86 | 87 | #: src/Widgets/Views/ReminderEditor.vala:58 88 | msgid "What do you want to be reminded of?" 89 | msgstr "¿Qué desea que le recuerde?" 90 | 91 | #: src/Widgets/Views/ReminderEditor.vala:85 92 | msgid "Repeat" 93 | msgstr "Repetir" 94 | 95 | #: src/Widgets/Views/ReminderEditor.vala:90 96 | msgid "Save reminder" 97 | msgstr "Guardar" 98 | 99 | #: src/Widgets/Views/RemindersView.vala:47 100 | msgid "Your reminders" 101 | msgstr "Pendientes" 102 | 103 | #: src/Widgets/Views/RemindersView.vala:52 104 | msgid "Create another" 105 | msgstr "Nuevo" 106 | 107 | #: src/Widgets/Views/RemindersView.vala:93 108 | #, c-format 109 | msgid "Reminded: %s" 110 | msgstr "Recordado: %s" 111 | 112 | #: src/Widgets/Views/RemindersView.vala:104 113 | msgid "Delete" 114 | msgstr "Borrar" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:111 117 | msgid "Edit" 118 | msgstr "Editar" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:120 121 | msgid "Today" 122 | msgstr "Hoy" 123 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | fr 2 | nl 3 | pt 4 | tr 5 | es 6 | de 7 | it 8 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/io.github.ellie_commons.reminduck.desktop.in 2 | data/io.github.ellie_commons.reminduck.appdata.xml.in 3 | -------------------------------------------------------------------------------- /po/extra/ca.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # ONDO-ALVELLË, 2021. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 12 | "PO-Revision-Date: 2021-11-17 17:14+0100\n" 13 | "Last-Translator: Ondo Alvellë\n" 14 | "Language-Team: none\n" 15 | "Language: ca\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "Reminduck" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "Recordatoris" 28 | 29 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 30 | msgid "Don't forget about your stuff in an adorably annoying way" 31 | msgstr "Recorda-ho tot d'una manera adorablement molesta" 32 | 33 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 34 | msgid "io.github.ellie_commons.reminduck" 35 | msgstr "io.github.ellie_commons.reminduck" 36 | 37 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 38 | msgid "Reminduck;Personal;Assistant;Reminders;" 39 | msgstr "Reminduck;Personal;Assistant;Reminders" 40 | 41 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 42 | msgid "Remember your stuff in an adorably annoying way." 43 | msgstr "Recorda-ho tot d'una manera adorablement molesta." 44 | 45 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 46 | msgid "" 47 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 48 | "simple or recurrent reminders with set time and date and nothing else." 49 | msgstr "" 50 | "Reminduck és una aplicació simple de recordatoris feta per ser ràpida i fàcil. Es basa en " 51 | "recordatoris simples o recurrents amb una data i hora específica i res més." 52 | 53 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 54 | msgid "" 55 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 56 | "Anything more than that is not achievable by Reminduck right now - but you " 57 | "can help! Open an issue or a pull request if you have any ideas or requests." 58 | msgstr "" 59 | "És perfecte si el que necessites són recordatoris simples o diaris/setmanals/mensuals. " 60 | "Reminduck no pot fer res més ara mateix; però pots ajudar! " 61 | "Obre un 'issue' o una 'pull request' si tens idees o sol·licituds." 62 | 63 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 64 | msgid "And it quacks." 65 | msgstr "I nyequeja." 66 | 67 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 68 | msgid "🐞 Enable translations on Flatpak" 69 | msgstr "🐞 Activa transicions a Flatpak" 70 | 71 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 72 | msgid "🗃️ Flatpak Support!" 73 | msgstr "🗃️ Suport per Flatpak!" 74 | 75 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 76 | msgid "🌑 Dark-mode toggle on the header bar" 77 | msgstr "🌑 Commutador de modes fosc i clar a la barra d'encapçalament." 78 | 79 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 80 | msgid "" 81 | "🔔 Notifications now stick around until you close them, to make sure you " 82 | "don't miss your quacks" 83 | msgstr "" 84 | "🔔 Les notificacions ara persisteixen fins que les tanques, per assegurar-se " 85 | "que no et perds els nyecs" 86 | 87 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 88 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 89 | msgstr "🌟 Suport per temes GTK addicionals, cosa que fa que Reminduck es pugui utilitzar en qualsevol distribució" 90 | 91 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 92 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 93 | msgstr "🇪🇸 Traducció al castellà (Alejandro Eli | @onerbs)" 94 | 95 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 96 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 97 | msgstr "🇮🇹 Traducció a l'italià (Mirko Brombin | @mirkobrombin)" 98 | 99 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 100 | msgid "" 101 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 102 | "great help from Nararyans R.I. (@Fatih20)" 103 | msgstr "" 104 | "🐥️ Icona nova! Espero que aquest tingui un aspecte millor que l'anterior. Amb " 105 | "la fantàstica ajuda de Nararyans R.I. (@Fatih20)" 106 | 107 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 108 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 109 | msgstr "💁‍ S'ha augmentat la compatibilitat amb les traduccions (Corentin Noël | @tintou)" 110 | 111 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 112 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 113 | msgstr "🇨🇵️ Traducció al francès (Nathan Bonnemains | @NathanBnm)" 114 | 115 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 116 | msgid "" 117 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 118 | "periods of time: every day, week, month, or a set interval" 119 | msgstr "" 120 | "🔁️ Recordatoris recurrents: ara pots tenir recordatoris que apareixen " 121 | "en intervals de temps determinats: cada dia, setmana, mes o altres" 122 | 123 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 124 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 125 | msgstr "🌟️ Millores d'interfície en general per tal que configurar els recordatoris sigui més bonic" 126 | 127 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 128 | msgid "🌃️ Dark Mode is now prettier" 129 | msgstr "🌃️ El mode fosc és més bonic" 130 | 131 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 132 | msgid "🇹🇷 Turkish translation (libreajans)" 133 | msgstr "🇹🇷 Traducció al turc (libreajans)" 134 | 135 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 136 | msgid "🇳🇱 Dutch translation (Vistaus)" 137 | msgstr "🇳🇱 Traducció a l'holandès (Vistaus)" 138 | 139 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 140 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 141 | msgstr "Suport per la configuració no oficial \"Prefereix el tema fosc\" 🌝️" 142 | 143 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 144 | msgid "This should also make it work with other dark GTK themes" 145 | msgstr "En principi també hauria de funcionar amb altres temes GTK foscos" 146 | 147 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 148 | msgid "Initial Release 🦆" 149 | msgstr "🦆 Versió inicial" 150 | 151 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 152 | msgid "Matheus Fantinel" 153 | msgstr "Matheus Fantinel" 154 | -------------------------------------------------------------------------------- /po/extra/de.po: -------------------------------------------------------------------------------- 1 | # German translations for extra package. 2 | # Copyright (C) 2020 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, then modified to need, 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: 2020-01-13 16:03+0100\n" 12 | "Last-Translator: Alexander Schneider \n" 13 | "Language-Team: none\n" 14 | "Language: de\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "Reminduck" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "Erinnerungen" 28 | 29 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 30 | msgid "Don't forget about your stuff in an adorably annoying way" 31 | msgstr "Vergiss nichts mehr auf eine nervig süße Art und Weise" 32 | 33 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 34 | msgid "io.github.ellie_commons.reminduck" 35 | msgstr "io.github.ellie_commons.reminduck" 36 | 37 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 38 | msgid "Reminduck;Personal;Assistant;Reminders;" 39 | msgstr "Reminduck;Persönlich;Assistent;Erinnerungen;" 40 | 41 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 42 | msgid "Remember your stuff in an adorably annoying way." 43 | msgstr "Vergiss nichts mehr auf eine nervig süße Art und Weise" 44 | 45 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 46 | msgid "" 47 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 48 | "simple or recurrent reminders with set time and date and nothing else." 49 | msgstr "" 50 | "Reminduck ist eine Erinnerungsapp mit Fokus auf Einfachheit und Effizienz. " 51 | "Sie erlaubt einfache oder sich wiederholende Erinnerungen zu bestimmter Zeit " 52 | "und/oder Datum." 53 | 54 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 55 | msgid "" 56 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 57 | "Anything more than that is not achievable by Reminduck right now - but you " 58 | "can help! Open an issue or a pull request if you have any ideas or requests." 59 | msgstr "" 60 | "Sie ist perfekt um sich einfache tägliche/wöchentliche/monatliche " 61 | "Erinnerungen zu setzen. Anspruchsvollere Aufgaben können zurzeit nicht mit " 62 | "Reminduck erledigt werden, aber Du kannst helfen! Öffne einen Issue oder " 63 | "eine Pull Request falls Du Ideen oder Vorschläge hast." 64 | 65 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 66 | msgid "And it quacks." 67 | msgstr "Und es quakt." 68 | 69 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 70 | msgid "🐞 Enable translations on Flatpak" 71 | msgstr "" 72 | 73 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 74 | msgid "🗃️ Flatpak Support!" 75 | msgstr "🗃️ Flatpak Support!" 76 | 77 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 78 | msgid "🌑 Dark-mode toggle on the header bar" 79 | msgstr "🌑 Dunkler Modus kann in der Kopfleiste umgeschaltet werden" 80 | 81 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 82 | msgid "" 83 | "🔔 Notifications now stick around until you close them, to make sure you " 84 | "don't miss your quacks" 85 | msgstr "" 86 | "🔔 Erinnerungen werden nun so lange angezeigt bis Du sie schließt um " 87 | "sicherzustellen, dass du kein Gequake verpasst" 88 | 89 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 90 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 91 | msgstr "🌟 Unterstützt zusätzliche GTK Themes, ist also Distro-agnostic" 92 | 93 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 94 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 95 | msgstr "🇪🇸 Spanische Übersetzung (Alejandro Elí | @onerbs)" 96 | 97 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 98 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 99 | msgstr "🇮🇹 Italienische Übersetzung (Mirko Brombin | @mirkobrombin)" 100 | 101 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 102 | msgid "" 103 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 104 | "great help from Nararyans R.I. (@Fatih20)" 105 | msgstr "" 106 | "🐥️ Neues Icon! - hoffentlich sieht das schöner aus als das vorherige. Dank " 107 | "großartiger Hilfe von Nararyans R.I. (@Fatih20)" 108 | 109 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 110 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 111 | msgstr "💁‍ Übersetzungssystem wurde vereinfacht (Corentin Noël | @tintou)" 112 | 113 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 114 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 115 | msgstr "🇨🇵️ Französische Übersetzung (Nathan Bonnemains | @NathanBnm)" 116 | 117 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 118 | msgid "" 119 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 120 | "periods of time: every day, week, month, or a set interval" 121 | msgstr "" 122 | "🔁️ Wiederholte Erinnerungen - Erinnerungen können jetzt in regelmäßigen " 123 | "Zeitintervallen wiederholt werden: Täglich, wöchentlich, monatlich, oder " 124 | "nach einer beliebigen Dauer." 125 | 126 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 127 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 128 | msgstr "🌟️ Allg. Verbesserung der Oberfläche um das Erstellen zu vereinfachen" 129 | 130 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 131 | msgid "🌃️ Dark Mode is now prettier" 132 | msgstr "🌃️ Der Dunkle Modus sieht jetzt besser aus" 133 | 134 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 135 | msgid "🇹🇷 Turkish translation (libreajans)" 136 | msgstr "🇹🇷 Türkische Übersetzung (libreajans)" 137 | 138 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 139 | msgid "🇳🇱 Dutch translation (Vistaus)" 140 | msgstr "🇳🇱 Niederländische Übersetzung (Vistaus)" 141 | 142 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 143 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 144 | msgstr "Unterstützung für das inoffizielle \"Dunkler Modus\" Setting 🌝️" 145 | 146 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 147 | msgid "This should also make it work with other dark GTK themes" 148 | msgstr "Jetzt sollte es auch mit anderen dunklen GTK Themen funktionieren" 149 | 150 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 151 | msgid "Initial Release 🦆" 152 | msgstr "" 153 | 154 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 155 | msgid "Matheus Fantinel" 156 | msgstr "" 157 | -------------------------------------------------------------------------------- /po/extra/es.po: -------------------------------------------------------------------------------- 1 | # Spanish translations for Reminduck extra. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Alejandro Elí, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: DATEME\n" 12 | "Last-Translator: Alejandro Elí\n" 13 | "Language-Team: none\n" 14 | "Language: es\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 20 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 21 | msgid "Reminduck" 22 | msgstr "" 23 | 24 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 25 | msgid "Reminders" 26 | msgstr "Recordatorios" 27 | 28 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 29 | msgid "Don't forget about your stuff in an adorably annoying way" 30 | msgstr "Recuerde sus cosas de una manera adorablemente molesta" 31 | 32 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 33 | msgid "io.github.ellie_commons.reminduck" 34 | msgstr "" 35 | 36 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 37 | msgid "Reminduck;Personal;Assistant;Reminders;" 38 | msgstr "" 39 | 40 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 41 | msgid "Remember your stuff in an adorably annoying way." 42 | msgstr "Recuerde sus cosas de una manera adorablemente molesta" 43 | 44 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 45 | msgid "" 46 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 47 | "simple or recurrent reminders with set time and date and nothing else." 48 | msgstr "" 49 | "Reminduck es una aplicación de recordatorios hecha para ser rápida y " 50 | "sencilla - enfocada en recordatorios simples o recurrentes, con hora y fecha " 51 | "establecidas y nada más." 52 | 53 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 54 | msgid "" 55 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 56 | "Anything more than that is not achievable by Reminduck right now - but you " 57 | "can help! Open an issue or a pull request if you have any ideas or requests." 58 | msgstr "" 59 | "Es perfecto si lo que busca son recordatorios simples, diarios, semanales, o " 60 | "mensuales. Reminduck no puede lograr nada más que eso por ahora, ¡pero usted " 61 | "puede ayudar! Abra un 'issue' o haga una 'pull request' si tiene alguna idea " 62 | "o solicitud." 63 | 64 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 65 | msgid "And it quacks." 66 | msgstr "Y grazna." 67 | 68 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 69 | msgid "🐞 Enable translations on Flatpak" 70 | msgstr "" 71 | 72 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 73 | msgid "🗃️ Flatpak Support!" 74 | msgstr "" 75 | 76 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 77 | msgid "🌑 Dark-mode toggle on the header bar" 78 | msgstr "" 79 | 80 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 81 | msgid "" 82 | "🔔 Notifications now stick around until you close them, to make sure you " 83 | "don't miss your quacks" 84 | msgstr "" 85 | 86 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 87 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 88 | msgstr "" 89 | 90 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 91 | #, fuzzy 92 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 93 | msgstr "🇹🇷 Traducción al turco (libreajans)" 94 | 95 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 96 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 97 | msgstr "" 98 | 99 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 100 | msgid "" 101 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 102 | "great help from Nararyans R.I. (@Fatih20)" 103 | msgstr "" 104 | 105 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 106 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 107 | msgstr "" 108 | 109 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 110 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 111 | msgstr "" 112 | 113 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 114 | msgid "" 115 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 116 | "periods of time: every day, week, month, or a set interval" 117 | msgstr "" 118 | "🔁️ Recordatorios recurrentes - ahora sus recordatorios se pueden repetir cada " 119 | "cierto tiempo: todos los días, semanas, meses u otro intervalo defeinido" 120 | 121 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 122 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 123 | msgstr "🌟️ Mejoras de UI para hacer las configuraciones más agradables" 124 | 125 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 126 | msgid "🌃️ Dark Mode is now prettier" 127 | msgstr "🌃️ El Modo oscuro ahora es más bonito" 128 | 129 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 130 | msgid "🇹🇷 Turkish translation (libreajans)" 131 | msgstr "🇹🇷 Traducción al turco (libreajans)" 132 | 133 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 134 | msgid "🇳🇱 Dutch translation (Vistaus)" 135 | msgstr "🇳🇱 Traducción al holandés (Vistaus)" 136 | 137 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 138 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 139 | msgstr "Configuración no oficial del 'Modo oscuro' 🌝️" 140 | 141 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 142 | msgid "This should also make it work with other dark GTK themes" 143 | msgstr "Debería funcionar con otros temas GTK oscuros" 144 | 145 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 146 | msgid "Initial Release 🦆" 147 | msgstr "Versión inicial 🦆" 148 | 149 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 150 | msgid "Matheus Fantinel" 151 | msgstr "" 152 | -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "" 28 | 29 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 30 | msgid "Don't forget about your stuff in an adorably annoying way" 31 | msgstr "" 32 | 33 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 34 | msgid "io.github.ellie_commons.reminduck" 35 | msgstr "" 36 | 37 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 38 | msgid "Reminduck;Personal;Assistant;Reminders;" 39 | msgstr "" 40 | 41 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 42 | msgid "Remember your stuff in an adorably annoying way." 43 | msgstr "" 44 | 45 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 46 | msgid "" 47 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 48 | "simple or recurrent reminders with set time and date and nothing else." 49 | msgstr "" 50 | 51 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 52 | msgid "" 53 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 54 | "Anything more than that is not achievable by Reminduck right now - but you " 55 | "can help! Open an issue or a pull request if you have any ideas or requests." 56 | msgstr "" 57 | 58 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 59 | msgid "And it quacks." 60 | msgstr "" 61 | 62 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 63 | msgid "🐞 Enable translations on Flatpak" 64 | msgstr "" 65 | 66 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 67 | msgid "🗃️ Flatpak Support!" 68 | msgstr "" 69 | 70 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 71 | msgid "🌑 Dark-mode toggle on the header bar" 72 | msgstr "" 73 | 74 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 75 | msgid "" 76 | "🔔 Notifications now stick around until you close them, to make sure you " 77 | "don't miss your quacks" 78 | msgstr "" 79 | 80 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 81 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 82 | msgstr "" 83 | 84 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 85 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 86 | msgstr "" 87 | 88 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 89 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 90 | msgstr "" 91 | 92 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 93 | msgid "" 94 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 95 | "great help from Nararyans R.I. (@Fatih20)" 96 | msgstr "" 97 | 98 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 99 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 100 | msgstr "" 101 | 102 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 103 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 104 | msgstr "" 105 | 106 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 107 | msgid "" 108 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 109 | "periods of time: every day, week, month, or a set interval" 110 | msgstr "" 111 | 112 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 113 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 114 | msgstr "" 115 | 116 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 117 | msgid "🌃️ Dark Mode is now prettier" 118 | msgstr "" 119 | 120 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 121 | msgid "🇹🇷 Turkish translation (libreajans)" 122 | msgstr "" 123 | 124 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 125 | msgid "🇳🇱 Dutch translation (Vistaus)" 126 | msgstr "" 127 | 128 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 129 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 130 | msgstr "" 131 | 132 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 133 | msgid "This should also make it work with other dark GTK themes" 134 | msgstr "" 135 | 136 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 137 | msgid "Initial Release 🦆" 138 | msgstr "" 139 | 140 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 141 | msgid "Matheus Fantinel" 142 | msgstr "" 143 | -------------------------------------------------------------------------------- /po/extra/fr.po: -------------------------------------------------------------------------------- 1 | # French translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Nathan Bonnemains, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: 2019-11-06 07:13+0100\n" 12 | "Last-Translator: Nathan Bonnemains\n" 13 | "Language-Team: none\n" 14 | "Language: fr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "Reminduck" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "Rappels" 28 | 29 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 30 | msgid "Don't forget about your stuff in an adorably annoying way" 31 | msgstr "N'oubliez rien de vos affaires de façon adorablement ennuyeuse" 32 | 33 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 34 | msgid "io.github.ellie_commons.reminduck" 35 | msgstr "io.github.ellie_commons.reminduck" 36 | 37 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 38 | msgid "Reminduck;Personal;Assistant;Reminders;" 39 | msgstr "Reminduck;Personnel;Assistant;Rappels;" 40 | 41 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 42 | msgid "Remember your stuff in an adorably annoying way." 43 | msgstr "Souvenez-vous de vos affaires d'une façon adorablement ennuyeuse." 44 | 45 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 46 | msgid "" 47 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 48 | "simple or recurrent reminders with set time and date and nothing else." 49 | msgstr "" 50 | "Reminduck est une simple application de rappel rapide et facile " 51 | "d'utilisation. Elle se focalise sur les rappels simples ou réguliers avec " 52 | "une date et une heure définies et rien d'autre." 53 | 54 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 55 | msgid "" 56 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 57 | "Anything more than that is not achievable by Reminduck right now - but you " 58 | "can help! Open an issue or a pull request if you have any ideas or requests." 59 | msgstr "" 60 | "C'est parfait si vous souhaitez avoir de simples rappels journaliers, " 61 | "hebdomadaires ou mensuels. Tout ce qui pourrait être fait de plus n'est pas " 62 | "faisable par Reminduck pour l'instant, mais vous pouvez aider !Ouvrez une " 63 | "issue ou une pull request si vous avez des idées ou demandes." 64 | 65 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 66 | msgid "And it quacks." 67 | msgstr "Et il fait coin coin." 68 | 69 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 70 | msgid "🐞 Enable translations on Flatpak" 71 | msgstr "" 72 | 73 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 74 | msgid "🗃️ Flatpak Support!" 75 | msgstr "" 76 | 77 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 78 | msgid "🌑 Dark-mode toggle on the header bar" 79 | msgstr "" 80 | 81 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 82 | msgid "" 83 | "🔔 Notifications now stick around until you close them, to make sure you " 84 | "don't miss your quacks" 85 | msgstr "" 86 | 87 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 88 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 89 | msgstr "" 90 | 91 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 92 | #, fuzzy 93 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 94 | msgstr "🇹🇷 Traduction en turque (libreajans)" 95 | 96 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 97 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 98 | msgstr "" 99 | 100 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 101 | msgid "" 102 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 103 | "great help from Nararyans R.I. (@Fatih20)" 104 | msgstr "" 105 | 106 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 107 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 108 | msgstr "" 109 | 110 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 111 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 112 | msgstr "" 113 | 114 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 115 | msgid "" 116 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 117 | "periods of time: every day, week, month, or a set interval" 118 | msgstr "" 119 | "🔁️ Rappels réguliers. Vous pouvez désormais avoir des rappels pour des " 120 | "périodes de temps définies : chaque jour, semaine, mois, ou un intervalle " 121 | "personnalisé" 122 | 123 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 124 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 125 | msgstr "" 126 | "🌟️ Améliorations générales de l'interface pour rendre la configuration des " 127 | "rappels plus agréable" 128 | 129 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 130 | msgid "🌃️ Dark Mode is now prettier" 131 | msgstr "🌃️ Le thème sombre est maintenant plus joli" 132 | 133 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 134 | msgid "🇹🇷 Turkish translation (libreajans)" 135 | msgstr "🇹🇷 Traduction en turque (libreajans)" 136 | 137 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 138 | msgid "🇳🇱 Dutch translation (Vistaus)" 139 | msgstr "🇳🇱 Traduction en néerlandais (Vistaus)" 140 | 141 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 142 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 143 | msgstr "" 144 | "Prise en charge de l'option non-officielle « Préférer le thème sombre » 🌝️" 145 | 146 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 147 | msgid "This should also make it work with other dark GTK themes" 148 | msgstr "Cela devrait également fonctionner avec d'autres thèmes sombres GTK" 149 | 150 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 151 | msgid "Initial Release 🦆" 152 | msgstr "Version initiale 🦆" 153 | 154 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 155 | msgid "Matheus Fantinel" 156 | msgstr "Matheus Fantinel" 157 | -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- 1 | # Italian translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Mirko Brombin, 2019. 5 | # Albano Battistella,2020,2021. 6 | # 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 12 | "PO-Revision-Date: 2021-08-16 23:13+0200\n" 13 | "Last-Translator: Albano Battistella\n" 14 | "Language-Team: italian\n" 15 | "Language: it\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 22 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 23 | msgid "Reminduck" 24 | msgstr "Reminduck" 25 | 26 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 27 | msgid "Reminders" 28 | msgstr "Promemoria" 29 | 30 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 31 | msgid "Don't forget about your stuff in an adorably annoying way" 32 | msgstr "Ricordati dei tuoi promemoria in un modo adorabile" 33 | 34 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 35 | msgid "io.github.ellie_commons.reminduck" 36 | msgstr "io.github.ellie_commons.reminduck" 37 | 38 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 39 | msgid "Reminduck;Personal;Assistant;Reminders;" 40 | msgstr "Reminduck;Persinale;Assistente;Promemoria;" 41 | 42 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 43 | msgid "Remember your stuff in an adorably annoying way." 44 | msgstr "Ricordati dei tuoi promemoria in un modo adorabile." 45 | 46 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 47 | msgid "" 48 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 49 | "simple or recurrent reminders with set time and date and nothing else." 50 | msgstr "" 51 | "Reminduck è una semplice app di promemoria creata per essere semplice e " 52 | "veloce- si concentra su promemoria semplici o ricorrenti con data e ora " 53 | "impostate, nient'altro." 54 | 55 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 56 | msgid "" 57 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 58 | "Anything more than that is not achievable by Reminduck right now - but you " 59 | "can help! Open an issue or a pull request if you have any ideas or requests." 60 | msgstr "" 61 | "È perfetto se tutto ciò che desideri, supporta promemoria semplici o " 62 | "giornalieri/settimanali/mensili. Al momento Reminduck si limita a questo - " 63 | "ma tupuò aiutare! Segnala un problema o effettua una richiesta." 64 | 65 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 66 | msgid "And it quacks." 67 | msgstr "E quack." 68 | 69 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 70 | msgid "🐞 Enable translations on Flatpak" 71 | msgstr "🐞 Abilita le traduzioni su Flatpak" 72 | 73 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 74 | msgid "🗃️ Flatpak Support!" 75 | msgstr "🗃️ Supporto per Flatpak!" 76 | 77 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 78 | msgid "🌑 Dark-mode toggle on the header bar" 79 | msgstr "🌑 Attiva/disattiva modalità scura sulla barra dell'intestazione" 80 | 81 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 82 | msgid "" 83 | "🔔 Notifications now stick around until you close them, to make sure you " 84 | "don't miss your quacks" 85 | msgstr "" 86 | "🔔 Le notifiche ora restano in attesa fino a quando non le chiudi, per assicurarti di " 87 | "non perdere i tuoi quacks" 88 | 89 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 90 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 91 | msgstr "🌟 Supporto per temi GTK aggiuntivi, rendendo Reminduck distro-agnostico" 92 | 93 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 94 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 95 | msgstr "🇪🇸 Traduzione Spagnola (Alejandro Elí | @onerbs)" 96 | 97 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 98 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 99 | msgstr "🇮🇹 Traduzione Italiana (Mirko Brombin | @mirkobrombin e Albano Battistella)" 100 | 101 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 102 | msgid "" 103 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 104 | "great help from Nararyans R.I. (@Fatih20)" 105 | msgstr "" 106 | "🐥️ Nuova icona! - si spera che questa sia migliore della precedente. Con " 107 | "grande aiuto di Nararyans R.I. (@ Fatih20)" 108 | 109 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 110 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 111 | msgstr "💁‍ Maggiore compatibilità con le traduzioni (Corentin Noël | @tintou)" 112 | 113 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 114 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 115 | msgstr "🇨🇵️ Traduzione francese (Nathan Bonnemains | @NathanBnm)" 116 | 117 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 118 | msgid "" 119 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 120 | "periods of time: every day, week, month, or a set interval" 121 | msgstr "" 122 | "🔁️ Promemoria ricorrenti: ora supporta promemoria che vengono visualizzati " 123 | "nei periodi di tempo: ogni giorno, settimana, mese o ad intervallo" 124 | "prestabilito" 125 | 126 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 127 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 128 | msgstr "🌟️ Miglioramenti alla UI per migliorare il quak migliore" 129 | 130 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 131 | msgid "🌃️ Dark Mode is now prettier" 132 | msgstr "🌃️ La modalità scura è ora più carina" 133 | 134 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 135 | msgid "🇹🇷 Turkish translation (libreajans)" 136 | msgstr "🇹🇷 Traduzione in Turco(libreajans)" 137 | 138 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 139 | msgid "🇳🇱 Dutch translation (Vistaus)" 140 | msgstr "🇳🇱 Traduzione in Tedesco (Vistaus)" 141 | 142 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 143 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 144 | msgstr "Supporto alla impostazione non ufficiale \"Preferisci il tema dark\" 🌝️" 145 | 146 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 147 | msgid "This should also make it work with other dark GTK themes" 148 | msgstr "Dovrebbe supportare anche ad altri temi GTK scuri." 149 | 150 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 151 | msgid "Initial Release 🦆" 152 | msgstr "Rilascio iniziale 🦆" 153 | 154 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 155 | msgid "Matheus Fantinel" 156 | msgstr "Matheus Fantinel" 157 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: [ 3 | '--directory=' + meson.global_source_root(), 4 | '--from-code=UTF-8' 5 | ], 6 | preset: 'glib', 7 | install: false 8 | ) 9 | -------------------------------------------------------------------------------- /po/extra/nl.po: -------------------------------------------------------------------------------- 1 | # Dutch translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Heimen Stoffels , 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: 2019-11-29 18:21+0100\n" 12 | "Last-Translator: Heimen Stoffels \n" 13 | "Language-Team: Dutch \n" 14 | "Language: nl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 2.2.4\n" 20 | 21 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 22 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 23 | msgid "Reminduck" 24 | msgstr "Reminduck" 25 | 26 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 27 | msgid "Reminders" 28 | msgstr "Herinneringen" 29 | 30 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 31 | msgid "Don't forget about your stuff in an adorably annoying way" 32 | msgstr "" 33 | "Vergeet nooit meer een taak, en wordt op schattige doch irritante manier " 34 | "herinnerd" 35 | 36 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 37 | msgid "io.github.ellie_commons.reminduck" 38 | msgstr "io.github.ellie_commons.reminduck" 39 | 40 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 41 | msgid "Reminduck;Personal;Assistant;Reminders;" 42 | msgstr "Reminduck;Persoonlijk;Assistent;Herinneringen;" 43 | 44 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 45 | msgid "Remember your stuff in an adorably annoying way." 46 | msgstr "" 47 | "Vergeet nooit meer iets, en wordt op schattige doch irritante manier " 48 | "herinnerd." 49 | 50 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 51 | msgid "" 52 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 53 | "simple or recurrent reminders with set time and date and nothing else." 54 | msgstr "" 55 | "Reminduck herinnert je. Het programma is makkelijk in het gebruik en legt de " 56 | "nadruk op eenvoudige herinneringen met een ingestelde datum en tijd. Niks " 57 | "meer, niks minder." 58 | 59 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 60 | msgid "" 61 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 62 | "Anything more than that is not achievable by Reminduck right now - but you " 63 | "can help! Open an issue or a pull request if you have any ideas or requests." 64 | msgstr "" 65 | "Het is perfect voor eenvoudige herinneringen, al dan niet terugkerend " 66 | "(dagelijks/wekelijks/maandelijks). Meer is er momenteel niet mogelijk, maar " 67 | "je kunt meehelpen: open een 'issue' of 'pull request' op GitHub als ideeën " 68 | "of verzoekjes hebt." 69 | 70 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 71 | msgid "And it quacks." 72 | msgstr "En het kwaakt." 73 | 74 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 75 | msgid "🐞 Enable translations on Flatpak" 76 | msgstr "" 77 | 78 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 79 | msgid "🗃️ Flatpak Support!" 80 | msgstr "" 81 | 82 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 83 | msgid "🌑 Dark-mode toggle on the header bar" 84 | msgstr "" 85 | 86 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 87 | msgid "" 88 | "🔔 Notifications now stick around until you close them, to make sure you " 89 | "don't miss your quacks" 90 | msgstr "" 91 | 92 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 93 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 94 | msgstr "" 95 | 96 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 97 | #, fuzzy 98 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 99 | msgstr "🇹🇷 Turkse vertaling (met dank aan libreajans)" 100 | 101 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 102 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 103 | msgstr "" 104 | 105 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 106 | msgid "" 107 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 108 | "great help from Nararyans R.I. (@Fatih20)" 109 | msgstr "" 110 | 111 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 112 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 113 | msgstr "" 114 | 115 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 116 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 117 | msgstr "" 118 | 119 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 120 | msgid "" 121 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 122 | "periods of time: every day, week, month, or a set interval" 123 | msgstr "" 124 | "🔁️ Herhalingen - je kunt herinneringen nu herhalen: elke dag, week, maand of " 125 | "elke x minuten" 126 | 127 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 128 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 129 | msgstr "" 130 | "🌟️ Algemene uiterlijke verbeteringen om het instellen van kwaakjes aangenamer " 131 | "te maken" 132 | 133 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 134 | msgid "🌃️ Dark Mode is now prettier" 135 | msgstr "🌃️ Mooier donker thema" 136 | 137 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 138 | msgid "🇹🇷 Turkish translation (libreajans)" 139 | msgstr "🇹🇷 Turkse vertaling (met dank aan libreajans)" 140 | 141 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 142 | msgid "🇳🇱 Dutch translation (Vistaus)" 143 | msgstr "🇹🇷 Nederlandse vertaling (met dank aan Vistaus)" 144 | 145 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 146 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 147 | msgstr "Ondersteuning voor het onofficiële donkere thema" 148 | 149 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 150 | msgid "This should also make it work with other dark GTK themes" 151 | msgstr "" 152 | "Hierdoor zou Reminduck ook beter moeten werken onder andere donkere GTK-" 153 | "thema's" 154 | 155 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 156 | msgid "Initial Release 🦆" 157 | msgstr "Eerste uitgave 🎉️" 158 | 159 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 160 | msgid "Matheus Fantinel" 161 | msgstr "Matheus Fantinel" 162 | -------------------------------------------------------------------------------- /po/extra/pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Automatically generated, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: 2019-11-04 14:49+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "Reminduck" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "Lembretes" 28 | 29 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 30 | msgid "Don't forget about your stuff in an adorably annoying way" 31 | msgstr "Lembre-se de suas coisas de uma maneira adoravelmente irritante" 32 | 33 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 34 | msgid "io.github.ellie_commons.reminduck" 35 | msgstr "" 36 | 37 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 38 | msgid "Reminduck;Personal;Assistant;Reminders;" 39 | msgstr "" 40 | 41 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 42 | #, fuzzy 43 | msgid "Remember your stuff in an adorably annoying way." 44 | msgstr "Lembre-se de suas coisas de uma maneira adoravelmente irritante" 45 | 46 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 47 | msgid "" 48 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 49 | "simple or recurrent reminders with set time and date and nothing else." 50 | msgstr "" 51 | 52 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 53 | msgid "" 54 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 55 | "Anything more than that is not achievable by Reminduck right now - but you " 56 | "can help! Open an issue or a pull request if you have any ideas or requests." 57 | msgstr "" 58 | 59 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 60 | msgid "And it quacks." 61 | msgstr "" 62 | 63 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 64 | msgid "🐞 Enable translations on Flatpak" 65 | msgstr "" 66 | 67 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 68 | msgid "🗃️ Flatpak Support!" 69 | msgstr "" 70 | 71 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 72 | msgid "🌑 Dark-mode toggle on the header bar" 73 | msgstr "" 74 | 75 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 76 | msgid "" 77 | "🔔 Notifications now stick around until you close them, to make sure you " 78 | "don't miss your quacks" 79 | msgstr "" 80 | 81 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 82 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 83 | msgstr "" 84 | 85 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 86 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 87 | msgstr "" 88 | 89 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 90 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 91 | msgstr "" 92 | 93 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 94 | msgid "" 95 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 96 | "great help from Nararyans R.I. (@Fatih20)" 97 | msgstr "" 98 | 99 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 100 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 101 | msgstr "" 102 | 103 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 104 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 105 | msgstr "" 106 | 107 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 108 | msgid "" 109 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 110 | "periods of time: every day, week, month, or a set interval" 111 | msgstr "" 112 | 113 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 114 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 115 | msgstr "" 116 | 117 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 118 | msgid "🌃️ Dark Mode is now prettier" 119 | msgstr "" 120 | 121 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 122 | msgid "🇹🇷 Turkish translation (libreajans)" 123 | msgstr "" 124 | 125 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 126 | msgid "🇳🇱 Dutch translation (Vistaus)" 127 | msgstr "" 128 | 129 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 130 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 131 | msgstr "" 132 | 133 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 134 | msgid "This should also make it work with other dark GTK themes" 135 | msgstr "" 136 | 137 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 138 | msgid "Initial Release 🦆" 139 | msgstr "" 140 | 141 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 142 | msgid "Matheus Fantinel" 143 | msgstr "Matheus Fantinel" 144 | -------------------------------------------------------------------------------- /po/extra/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translations for extra package. 2 | # Copyright (C) 2019 THE extra'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Sabri Ünal , 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:49-0300\n" 11 | "PO-Revision-Date: 2019-11-04 14:49+0100\n" 12 | "Last-Translator: Sabri Ünal \n" 13 | "Language-Team: Türkçe \n" 14 | "Language: tr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: data/io.github.ellie_commons.reminduck.desktop.in:3 21 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:7 22 | msgid "Reminduck" 23 | msgstr "Reminduck" 24 | 25 | #: data/io.github.ellie_commons.reminduck.desktop.in:4 26 | msgid "Reminders" 27 | msgstr "Hatırlatıcılar" 28 | 29 | # Serbest çeviri yapıldı 30 | #: data/io.github.ellie_commons.reminduck.desktop.in:5 31 | msgid "Don't forget about your stuff in an adorably annoying way" 32 | msgstr "Önemli işlerinizi sevimli ve sinir bozucu bir şekilde size hatırlatır" 33 | 34 | # Uygulama kimliği, çevirmeyin 35 | #: data/io.github.ellie_commons.reminduck.desktop.in:8 36 | msgid "io.github.ellie_commons.reminduck" 37 | msgstr "io.github.ellie_commons.reminduck" 38 | 39 | #: data/io.github.ellie_commons.reminduck.desktop.in:12 40 | #, fuzzy 41 | msgid "Reminduck;Personal;Assistant;Reminders;" 42 | msgstr "Reminduck;Kişisel;Asistan;Yardımcı;Hatırlatıcı;Hatırlatıcılar" 43 | 44 | # Serbest çeviri yapıldı 45 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:8 46 | #, fuzzy 47 | msgid "Remember your stuff in an adorably annoying way." 48 | msgstr "Önemli işlerinizi sevimli ve sinir bozucu bir şekilde size hatırlatır." 49 | 50 | # Serbest çeviri yapıldı. 51 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:10 52 | #, fuzzy 53 | msgid "" 54 | "Reminduck is a simple reminder app made to be quick and easy - it focuses on " 55 | "simple or recurrent reminders with set time and date and nothing else." 56 | msgstr "" 57 | "Reminduck hızlı ve kolay olması için üretilmiş basit bir hatırlatıcı " 58 | "uygulamasıdır. Belirtilen tarih ve saatten ile başka hiçbir şey içermez ve " 59 | "basitçe hatırlatıcılara odaklanır." 60 | 61 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:12 62 | msgid "" 63 | "It's perfect if all you want are simple or daily/weekly/monthly reminders. " 64 | "Anything more than that is not achievable by Reminduck right now - but you " 65 | "can help! Open an issue or a pull request if you have any ideas or requests." 66 | msgstr "" 67 | 68 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:14 69 | msgid "And it quacks." 70 | msgstr "Vaklamasını da bilir." 71 | 72 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:20 73 | msgid "🐞 Enable translations on Flatpak" 74 | msgstr "" 75 | 76 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:27 77 | msgid "🗃️ Flatpak Support!" 78 | msgstr "" 79 | 80 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:34 81 | msgid "🌑 Dark-mode toggle on the header bar" 82 | msgstr "" 83 | 84 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:35 85 | msgid "" 86 | "🔔 Notifications now stick around until you close them, to make sure you " 87 | "don't miss your quacks" 88 | msgstr "" 89 | 90 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:36 91 | msgid "🌟 Support for additional GTK themes, making Reminduck distro-agnostic" 92 | msgstr "" 93 | 94 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:37 95 | msgid "🇪🇸 Spanish Translation (Alejandro Elí | @onerbs)" 96 | msgstr "" 97 | 98 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:38 99 | msgid "🇮🇹 Italian Translation (Mirko Brombin | @mirkobrombin)" 100 | msgstr "" 101 | 102 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:45 103 | msgid "" 104 | "🐥️ New Icon! - hopefully this one looks better than the previous one. With " 105 | "great help from Nararyans R.I. (@Fatih20)" 106 | msgstr "" 107 | 108 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:46 109 | msgid "💁‍ Increased compatibility with translations (Corentin Noël | @tintou)" 110 | msgstr "" 111 | 112 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:47 113 | msgid "🇨🇵️ French Translation (Nathan Bonnemains | @NathanBnm)" 114 | msgstr "" 115 | 116 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:54 117 | msgid "" 118 | "🔁️ Recurrent reminders - you can now have reminders that show up in set " 119 | "periods of time: every day, week, month, or a set interval" 120 | msgstr "" 121 | 122 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:55 123 | msgid "🌟️ General UI improvements to make settings up quacks more pleasant" 124 | msgstr "" 125 | 126 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:56 127 | msgid "🌃️ Dark Mode is now prettier" 128 | msgstr "" 129 | 130 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:57 131 | msgid "🇹🇷 Turkish translation (libreajans)" 132 | msgstr "" 133 | 134 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:58 135 | msgid "🇳🇱 Dutch translation (Vistaus)" 136 | msgstr "" 137 | 138 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:65 139 | msgid "Support the unofficial \"Prefer Dark Theme\" setting 🌝️" 140 | msgstr "" 141 | 142 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:66 143 | msgid "This should also make it work with other dark GTK themes" 144 | msgstr "" 145 | 146 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:72 147 | #, fuzzy 148 | msgid "Initial Release 🦆" 149 | msgstr "İlk Sürüm 🎉️" 150 | 151 | # Geliştirici adı, çevirmeyin. 152 | #: data/io.github.ellie_commons.reminduck.appdata.xml.in:108 153 | msgid "Matheus Fantinel" 154 | msgstr "Matheus Fantinel" 155 | -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- 1 | # French translations for io.github.ellie_commons.reminduck package. 2 | # Copyright (C) 2019 THE io.github.ellie_commons.reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Nathan Bonnemains, 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 11 | "PO-Revision-Date: 2019-11-04 13:53+0100\n" 12 | "Last-Translator: Nathan Bonnemains\n" 13 | "Language-Team: none\n" 14 | "Language: fr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | 20 | #: src/MainWindow.vala:84 21 | msgid "Back" 22 | msgstr "Retour" 23 | 24 | #: src/MainWindow.vala:94 25 | msgid "Light mode" 26 | msgstr "Mode clair" 27 | 28 | #: src/MainWindow.vala:95 29 | msgid "Dark mode" 30 | msgstr "Mode sombre" 31 | 32 | #: src/MainWindow.vala:133 33 | msgid "QUACK! I'm Reminduck" 34 | msgstr "COIN COIN ! Je suis Reminduck" 35 | 36 | #: src/MainWindow.vala:134 37 | msgid "The duck that reminds you" 38 | msgstr "Le canard qui vous fait des rappels" 39 | 40 | #: src/MainWindow.vala:148 41 | msgid "New Reminder" 42 | msgstr "Nouveau rappel" 43 | 44 | #: src/MainWindow.vala:148 45 | msgid "Create a new reminder for a set date and time" 46 | msgstr "Créer un nouveau rappel pour une date et une heure définie" 47 | 48 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 49 | msgid "View Reminders" 50 | msgstr "Afficher les rappels" 51 | 52 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 53 | msgid "See reminders you've created" 54 | msgstr "Visualiser les rappels que vous avez créés" 55 | 56 | #: src/Objects/Reminder.vala:45 57 | msgid "Don't Repeat" 58 | msgstr "Ne pas répéter" 59 | 60 | #: src/Objects/Reminder.vala:49 61 | msgid "Every X minutes" 62 | msgstr "Toutes les X minutes" 63 | 64 | #: src/Objects/Reminder.vala:51 65 | #, c-format 66 | msgid "Every minute" 67 | msgid_plural "Every %d minutes" 68 | msgstr[0] "Chaque minute" 69 | msgstr[1] "Toutes les %d minutes" 70 | 71 | #: src/Objects/Reminder.vala:55 72 | msgid "Every day" 73 | msgstr "Chaque jour" 74 | 75 | #: src/Objects/Reminder.vala:58 76 | msgid "Every week" 77 | msgstr "Chaque semaine" 78 | 79 | #: src/Objects/Reminder.vala:61 80 | msgid "Every month" 81 | msgstr "Chaque mois" 82 | 83 | #: src/Widgets/Views/ReminderEditor.vala:54 84 | msgid "Create a new reminder" 85 | msgstr "Créer un nouveau rappel" 86 | 87 | #: src/Widgets/Views/ReminderEditor.vala:58 88 | msgid "What do you want to be reminded of?" 89 | msgstr "De quoi souhaitez-vous vous souvenir ?" 90 | 91 | #: src/Widgets/Views/ReminderEditor.vala:85 92 | msgid "Repeat" 93 | msgstr "Répéter" 94 | 95 | #: src/Widgets/Views/ReminderEditor.vala:90 96 | msgid "Save reminder" 97 | msgstr "Enregistrer le rappel" 98 | 99 | #: src/Widgets/Views/RemindersView.vala:47 100 | msgid "Your reminders" 101 | msgstr "Vos rappels" 102 | 103 | #: src/Widgets/Views/RemindersView.vala:52 104 | msgid "Create another" 105 | msgstr "En créer un nouveau" 106 | 107 | #: src/Widgets/Views/RemindersView.vala:93 108 | #, c-format 109 | msgid "Reminded: %s" 110 | msgstr "Rappel : %s" 111 | 112 | #: src/Widgets/Views/RemindersView.vala:104 113 | msgid "Delete" 114 | msgstr "Supprimer" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:111 117 | msgid "Edit" 118 | msgstr "Éditer" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:120 121 | msgid "Today" 122 | msgstr "Aujourd'hui" 123 | -------------------------------------------------------------------------------- /po/io.github.ellie_commons.reminduck.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 20 | 21 | #: src/MainWindow.vala:84 22 | msgid "Back" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:94 26 | msgid "Light mode" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:95 30 | msgid "Dark mode" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:133 34 | msgid "QUACK! I'm Reminduck" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:134 38 | msgid "The duck that reminds you" 39 | msgstr "" 40 | 41 | #: src/MainWindow.vala:148 42 | msgid "New Reminder" 43 | msgstr "" 44 | 45 | #: src/MainWindow.vala:148 46 | msgid "Create a new reminder for a set date and time" 47 | msgstr "" 48 | 49 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 50 | msgid "View Reminders" 51 | msgstr "" 52 | 53 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 54 | msgid "See reminders you've created" 55 | msgstr "" 56 | 57 | #: src/Objects/Reminder.vala:45 58 | msgid "Don't Repeat" 59 | msgstr "" 60 | 61 | #: src/Objects/Reminder.vala:49 62 | msgid "Every X minutes" 63 | msgstr "" 64 | 65 | #: src/Objects/Reminder.vala:51 66 | #, c-format 67 | msgid "Every minute" 68 | msgid_plural "Every %d minutes" 69 | msgstr[0] "" 70 | msgstr[1] "" 71 | 72 | #: src/Objects/Reminder.vala:55 73 | msgid "Every day" 74 | msgstr "" 75 | 76 | #: src/Objects/Reminder.vala:58 77 | msgid "Every week" 78 | msgstr "" 79 | 80 | #: src/Objects/Reminder.vala:61 81 | msgid "Every month" 82 | msgstr "" 83 | 84 | #: src/Widgets/Views/ReminderEditor.vala:54 85 | msgid "Create a new reminder" 86 | msgstr "" 87 | 88 | #: src/Widgets/Views/ReminderEditor.vala:58 89 | msgid "What do you want to be reminded of?" 90 | msgstr "" 91 | 92 | #: src/Widgets/Views/ReminderEditor.vala:85 93 | msgid "Repeat" 94 | msgstr "" 95 | 96 | #: src/Widgets/Views/ReminderEditor.vala:90 97 | msgid "Save reminder" 98 | msgstr "" 99 | 100 | #: src/Widgets/Views/RemindersView.vala:47 101 | msgid "Your reminders" 102 | msgstr "" 103 | 104 | #: src/Widgets/Views/RemindersView.vala:52 105 | msgid "Create another" 106 | msgstr "" 107 | 108 | #: src/Widgets/Views/RemindersView.vala:93 109 | #, c-format 110 | msgid "Reminded: %s" 111 | msgstr "" 112 | 113 | #: src/Widgets/Views/RemindersView.vala:104 114 | msgid "Delete" 115 | msgstr "" 116 | 117 | #: src/Widgets/Views/RemindersView.vala:111 118 | msgid "Edit" 119 | msgstr "" 120 | 121 | #: src/Widgets/Views/RemindersView.vala:120 122 | msgid "Today" 123 | msgstr "" 124 | -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- 1 | # Italian translations for io.github.ellie_commons.reminduck package. 2 | # Copyright (C) 2019 THE io.github.ellie_commons.reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Mirko Brombin, 2019. 5 | # Albano Battistella,2020. 6 | # 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 12 | "PO-Revision-Date: 2020-01-03 13:53+0100\n" 13 | "Last-Translator: Albano Battistella\n" 14 | "Language-Team: Italian\n" 15 | "Language: it\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: src/MainWindow.vala:84 22 | msgid "Back" 23 | msgstr "Indietro" 24 | 25 | #: src/MainWindow.vala:94 26 | msgid "Light mode" 27 | msgstr "Modalità chiara" 28 | 29 | #: src/MainWindow.vala:95 30 | msgid "Dark mode" 31 | msgstr "Modalità scura" 32 | 33 | #: src/MainWindow.vala:133 34 | msgid "QUACK! I'm Reminduck" 35 | msgstr "QUACK! Sono Reminduck" 36 | 37 | #: src/MainWindow.vala:134 38 | msgid "The duck that reminds you" 39 | msgstr "La papera che ti ricorda" 40 | 41 | #: src/MainWindow.vala:148 42 | msgid "New Reminder" 43 | msgstr "Nuovo Promemoria" 44 | 45 | #: src/MainWindow.vala:148 46 | msgid "Create a new reminder for a set date and time" 47 | msgstr "Crea un nuovo promemoria con data e ora prestabilita" 48 | 49 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 50 | msgid "View Reminders" 51 | msgstr "Vedi Promemoria" 52 | 53 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 54 | msgid "See reminders you've created" 55 | msgstr "Visualizza i promemoria creati" 56 | 57 | #: src/Objects/Reminder.vala:45 58 | msgid "Don't Repeat" 59 | msgstr "Non Ripetere" 60 | 61 | #: src/Objects/Reminder.vala:49 62 | msgid "Every X minutes" 63 | msgstr "Ogni X minuti" 64 | 65 | #: src/Objects/Reminder.vala:51 66 | #, c-format 67 | msgid "Every minute" 68 | msgid_plural "Every %d minutes" 69 | msgstr[0] "Ogni minuto" 70 | msgstr[1] "Ogni %d minuti" 71 | 72 | #: src/Objects/Reminder.vala:55 73 | msgid "Every day" 74 | msgstr "Ogni giorno" 75 | 76 | #: src/Objects/Reminder.vala:58 77 | msgid "Every week" 78 | msgstr "Ogni settimana" 79 | 80 | #: src/Objects/Reminder.vala:61 81 | msgid "Every month" 82 | msgstr "Ogni mese" 83 | 84 | #: src/Widgets/Views/ReminderEditor.vala:54 85 | msgid "Create a new reminder" 86 | msgstr "Crea un nuovo promemoria" 87 | 88 | #: src/Widgets/Views/ReminderEditor.vala:58 89 | msgid "What do you want to be reminded of?" 90 | msgstr "Cosa vuoi che ti ricordi?" 91 | 92 | #: src/Widgets/Views/ReminderEditor.vala:85 93 | msgid "Repeat" 94 | msgstr "Ripeti" 95 | 96 | #: src/Widgets/Views/ReminderEditor.vala:90 97 | msgid "Save reminder" 98 | msgstr "Salva promemoria" 99 | 100 | #: src/Widgets/Views/RemindersView.vala:47 101 | msgid "Your reminders" 102 | msgstr "I tuoi promemoria" 103 | 104 | #: src/Widgets/Views/RemindersView.vala:52 105 | msgid "Create another" 106 | msgstr "Crea un altro" 107 | 108 | #: src/Widgets/Views/RemindersView.vala:93 109 | #, c-format 110 | msgid "Reminded: %s" 111 | msgstr "Promemoria : %s" 112 | 113 | #: src/Widgets/Views/RemindersView.vala:104 114 | msgid "Delete" 115 | msgstr "Cancella" 116 | 117 | #: src/Widgets/Views/RemindersView.vala:111 118 | msgid "Edit" 119 | msgstr "Modifica" 120 | 121 | #: src/Widgets/Views/RemindersView.vala:120 122 | msgid "Today" 123 | msgstr "Oggi" 124 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: [ 3 | '--directory=' + meson.global_source_root(), 4 | '--from-code=UTF-8' 5 | ], 6 | preset: 'glib' 7 | ) 8 | 9 | subdir('extra') 10 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 2 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 3 | # 4 | # Heimen Stoffels , 2019. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 10 | "PO-Revision-Date: 2019-11-29 18:14+0100\n" 11 | "Last-Translator: Heimen Stoffels \n" 12 | "Language-Team: Dutch \n" 13 | "Language: nl\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | "X-Generator: Poedit 2.2.4\n" 19 | 20 | #: src/MainWindow.vala:84 21 | msgid "Back" 22 | msgstr "Terug" 23 | 24 | #: src/MainWindow.vala:94 25 | msgid "Light mode" 26 | msgstr "Licht thema" 27 | 28 | #: src/MainWindow.vala:95 29 | msgid "Dark mode" 30 | msgstr "Donker thema" 31 | 32 | #: src/MainWindow.vala:133 33 | msgid "QUACK! I'm Reminduck" 34 | msgstr "KWAK! Ik ben Reminduck" 35 | 36 | #: src/MainWindow.vala:134 37 | msgid "The duck that reminds you" 38 | msgstr "De eend die je herinnert" 39 | 40 | #: src/MainWindow.vala:148 41 | msgid "New Reminder" 42 | msgstr "Nieuwe herinnering" 43 | 44 | #: src/MainWindow.vala:148 45 | msgid "Create a new reminder for a set date and time" 46 | msgstr "Stel een nieuwe herinnering in op een door jou gekozen datum en tijd" 47 | 48 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 49 | msgid "View Reminders" 50 | msgstr "Herinneringen bekijken" 51 | 52 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 53 | msgid "See reminders you've created" 54 | msgstr "Bekijk eerder ingestelde herinneringen" 55 | 56 | #: src/Objects/Reminder.vala:45 57 | msgid "Don't Repeat" 58 | msgstr "Niet herhalen" 59 | 60 | #: src/Objects/Reminder.vala:49 61 | msgid "Every X minutes" 62 | msgstr "Elke x minuten" 63 | 64 | #: src/Objects/Reminder.vala:51 65 | #, c-format 66 | msgid "Every minute" 67 | msgid_plural "Every %d minutes" 68 | msgstr[0] "Elke minuut" 69 | msgstr[1] "Elke %d minuten" 70 | 71 | #: src/Objects/Reminder.vala:55 72 | msgid "Every day" 73 | msgstr "Elke dag" 74 | 75 | #: src/Objects/Reminder.vala:58 76 | msgid "Every week" 77 | msgstr "Elke week" 78 | 79 | #: src/Objects/Reminder.vala:61 80 | msgid "Every month" 81 | msgstr "Elke maand" 82 | 83 | #: src/Widgets/Views/ReminderEditor.vala:54 84 | msgid "Create a new reminder" 85 | msgstr "Stel een nieuwe herinnering in" 86 | 87 | #: src/Widgets/Views/ReminderEditor.vala:58 88 | msgid "What do you want to be reminded of?" 89 | msgstr "Waar wil je aan herinnerd worden?" 90 | 91 | #: src/Widgets/Views/ReminderEditor.vala:85 92 | msgid "Repeat" 93 | msgstr "Herhalen" 94 | 95 | #: src/Widgets/Views/ReminderEditor.vala:90 96 | msgid "Save reminder" 97 | msgstr "Herinnering opslaan" 98 | 99 | #: src/Widgets/Views/RemindersView.vala:47 100 | msgid "Your reminders" 101 | msgstr "Mijn herinneringen" 102 | 103 | #: src/Widgets/Views/RemindersView.vala:52 104 | msgid "Create another" 105 | msgstr "Nog een herinnering instellen" 106 | 107 | #: src/Widgets/Views/RemindersView.vala:93 108 | #, c-format 109 | msgid "Reminded: %s" 110 | msgstr "Herinnerd aan: %s" 111 | 112 | #: src/Widgets/Views/RemindersView.vala:104 113 | msgid "Delete" 114 | msgstr "Verwijderen" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:111 117 | msgid "Edit" 118 | msgstr "Aanpassen" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:120 121 | msgid "Today" 122 | msgstr "Vandaag" 123 | -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translations for io.github.ellie_commons.reminduck package. 2 | # Copyright (C) 2018 THE io.github.ellie_commons.reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 11 | "PO-Revision-Date: 2018-08-02 15:09-0300\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | 20 | #: src/MainWindow.vala:84 21 | msgid "Back" 22 | msgstr "Voltar" 23 | 24 | #: src/MainWindow.vala:94 25 | msgid "Light mode" 26 | msgstr "Modo claro" 27 | 28 | #: src/MainWindow.vala:95 29 | msgid "Dark mode" 30 | msgstr "Modo escuro" 31 | 32 | #: src/MainWindow.vala:133 33 | msgid "QUACK! I'm Reminduck" 34 | msgstr "QUAC! Eu sou o Reminduck" 35 | 36 | #: src/MainWindow.vala:134 37 | msgid "The duck that reminds you" 38 | msgstr "O pato que lembra você" 39 | 40 | #: src/MainWindow.vala:148 41 | msgid "New Reminder" 42 | msgstr "Novo Lembrete" 43 | 44 | #: src/MainWindow.vala:148 45 | msgid "Create a new reminder for a set date and time" 46 | msgstr "Criar um novo lembrete" 47 | 48 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 49 | msgid "View Reminders" 50 | msgstr "Ver Lembretes" 51 | 52 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 53 | msgid "See reminders you've created" 54 | msgstr "Ver lembretes que você criou" 55 | 56 | #: src/Objects/Reminder.vala:45 57 | msgid "Don't Repeat" 58 | msgstr "Não repetir" 59 | 60 | #: src/Objects/Reminder.vala:49 61 | msgid "Every X minutes" 62 | msgstr "A cada X minutos" 63 | 64 | #: src/Objects/Reminder.vala:51 65 | #, fuzzy, c-format 66 | msgid "Every minute" 67 | msgid_plural "Every %d minutes" 68 | msgstr[0] "A cada 1 minuto" 69 | msgstr[1] "A cada %d minutos" 70 | 71 | #: src/Objects/Reminder.vala:55 72 | msgid "Every day" 73 | msgstr "Diariamente" 74 | 75 | #: src/Objects/Reminder.vala:58 76 | msgid "Every week" 77 | msgstr "Semanalmente" 78 | 79 | #: src/Objects/Reminder.vala:61 80 | msgid "Every month" 81 | msgstr "Mensalmente" 82 | 83 | #: src/Widgets/Views/ReminderEditor.vala:54 84 | msgid "Create a new reminder" 85 | msgstr "Criar um novo lembrete" 86 | 87 | #: src/Widgets/Views/ReminderEditor.vala:58 88 | msgid "What do you want to be reminded of?" 89 | msgstr "Do que você quer se lembrar?" 90 | 91 | #: src/Widgets/Views/ReminderEditor.vala:85 92 | msgid "Repeat" 93 | msgstr "Repetir" 94 | 95 | #: src/Widgets/Views/ReminderEditor.vala:90 96 | msgid "Save reminder" 97 | msgstr "Salvar lembrete" 98 | 99 | #: src/Widgets/Views/RemindersView.vala:47 100 | msgid "Your reminders" 101 | msgstr "Seus lembretes" 102 | 103 | #: src/Widgets/Views/RemindersView.vala:52 104 | msgid "Create another" 105 | msgstr "Criar novo" 106 | 107 | #: src/Widgets/Views/RemindersView.vala:93 108 | #, fuzzy, c-format 109 | msgid "Reminded: %s" 110 | msgstr "Lembrado: %s" 111 | 112 | #: src/Widgets/Views/RemindersView.vala:104 113 | msgid "Delete" 114 | msgstr "Excluir" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:111 117 | msgid "Edit" 118 | msgstr "Editar" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:120 121 | msgid "Today" 122 | msgstr "Hoje" 123 | -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- 1 | # Russian translation for Reminduck. 2 | # Copyright (C) 2020 Andrey Sudarikov 3 | # This file is distributed under the same license as the io.github.ellie_commons.reminduck package. 4 | # Andrey Sudarikov , 2020. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: Andrey Sudarikov \n" 14 | "Language-Team: None\n" 15 | "Language: ru\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" 20 | 21 | #: src/MainWindow.vala:84 22 | msgid "Back" 23 | msgstr "Назад" 24 | 25 | #: src/MainWindow.vala:94 26 | msgid "Light mode" 27 | msgstr "Светлая тема" 28 | 29 | #: src/MainWindow.vala:95 30 | msgid "Dark mode" 31 | msgstr "Темная тема" 32 | 33 | #: src/MainWindow.vala:133 34 | msgid "QUACK! I'm Reminduck" 35 | msgstr "КРЯ! Меня зовут Reminduck" 36 | 37 | #: src/MainWindow.vala:134 38 | msgid "The duck that reminds you" 39 | msgstr "Утка, которая напоминает" 40 | 41 | #: src/MainWindow.vala:148 42 | msgid "New Reminder" 43 | msgstr "Новое напоминание" 44 | 45 | #: src/MainWindow.vala:148 46 | msgid "Create a new reminder for a set date and time" 47 | msgstr "Создайте напоминание на конкретную дату и время" 48 | 49 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 50 | msgid "View Reminders" 51 | msgstr "Смотреть напоминания" 52 | 53 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 54 | msgid "See reminders you've created" 55 | msgstr "Просмотрите созданные вами напоминания" 56 | 57 | #: src/Objects/Reminder.vala:45 58 | msgid "Don't Repeat" 59 | msgstr "Не повторять" 60 | 61 | #: src/Objects/Reminder.vala:49 62 | msgid "Every X minutes" 63 | msgstr "Каждые Х минут" 64 | 65 | #: src/Objects/Reminder.vala:51 66 | #, c-format 67 | msgid "Every minute" 68 | msgid_plural "Every %d minutes" 69 | msgstr[0] "Каждую минуту" 70 | msgstr[1] "Каждые %d минут(ы)" 71 | 72 | #: src/Objects/Reminder.vala:55 73 | msgid "Every day" 74 | msgstr "Каждый день" 75 | 76 | #: src/Objects/Reminder.vala:58 77 | msgid "Every week" 78 | msgstr "Каждую неделю" 79 | 80 | #: src/Objects/Reminder.vala:61 81 | msgid "Every month" 82 | msgstr "Каждый месяц" 83 | 84 | #: src/Widgets/Views/ReminderEditor.vala:54 85 | msgid "Create a new reminder" 86 | msgstr "Создать напоминание" 87 | 88 | #: src/Widgets/Views/ReminderEditor.vala:58 89 | msgid "What do you want to be reminded of?" 90 | msgstr "О чем вам напоминть?" 91 | 92 | #: src/Widgets/Views/ReminderEditor.vala:85 93 | msgid "Repeat" 94 | msgstr "Повторить" 95 | 96 | #: src/Widgets/Views/ReminderEditor.vala:90 97 | msgid "Save reminder" 98 | msgstr "Сохранить напоминание" 99 | 100 | #: src/Widgets/Views/RemindersView.vala:47 101 | msgid "Your reminders" 102 | msgstr "Ваши напоминания" 103 | 104 | #: src/Widgets/Views/RemindersView.vala:52 105 | msgid "Create another" 106 | msgstr "Создать ещё" 107 | 108 | #: src/Widgets/Views/RemindersView.vala:93 109 | #, c-format 110 | msgid "Reminded: %s" 111 | msgstr "Уже напомнил: %s" 112 | 113 | #: src/Widgets/Views/RemindersView.vala:104 114 | msgid "Delete" 115 | msgstr "Удалить" 116 | 117 | #: src/Widgets/Views/RemindersView.vala:111 118 | msgid "Edit" 119 | msgstr "Править" 120 | 121 | #: src/Widgets/Views/RemindersView.vala:120 122 | msgid "Today" 123 | msgstr "Сегодня" 124 | -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translations for Reminduck package. 2 | # Copyright (C) 2019 Reminduck'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the Reminduck package. 4 | # Sabri Ünal , 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: io.github.ellie_commons.reminduck\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-01-31 11:48-0300\n" 11 | "PO-Revision-Date: 2019-10-12 16:21+0300\n" 12 | "Last-Translator: Sabri Ünal \n" 13 | "Language-Team: Türkçe \n" 14 | "Language: tr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=1; plural=0;\n" 19 | "X-Generator: Poedit 2.0.6\n" 20 | 21 | #: src/MainWindow.vala:84 22 | msgid "Back" 23 | msgstr "Geri" 24 | 25 | #: src/MainWindow.vala:94 26 | msgid "Light mode" 27 | msgstr "Açık tema" 28 | 29 | #: src/MainWindow.vala:95 30 | msgid "Dark mode" 31 | msgstr "Koyu tema" 32 | 33 | # Reminduck kelimesi özel isim olarak kabul edilip çevrilmemiştir. Vak sesi de şimdilik çevrilmemiştir. 34 | #: src/MainWindow.vala:133 35 | msgid "QUACK! I'm Reminduck" 36 | msgstr "Merhaba! Ben Reminduck" 37 | 38 | # Serbest çeviri yapıldı 39 | #: src/MainWindow.vala:134 40 | msgid "The duck that reminds you" 41 | msgstr "Hatırlatıcı ördeğiniz" 42 | 43 | #: src/MainWindow.vala:148 44 | msgid "New Reminder" 45 | msgstr "Yeni Hatırlatıcı" 46 | 47 | #: src/MainWindow.vala:148 48 | msgid "Create a new reminder for a set date and time" 49 | msgstr "Belirtilen tarih ve saat için yeni hatırlatıcı oluştur" 50 | 51 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 52 | msgid "View Reminders" 53 | msgstr "Hatırlatıcıları Görüntüle" 54 | 55 | #: src/MainWindow.vala:150 src/MainWindow.vala:157 56 | msgid "See reminders you've created" 57 | msgstr "Oluşturulmuş hatırlatıcıları görüntüle" 58 | 59 | #: src/Objects/Reminder.vala:45 60 | msgid "Don't Repeat" 61 | msgstr "Tekrar Etme" 62 | 63 | #: src/Objects/Reminder.vala:49 64 | msgid "Every X minutes" 65 | msgstr "Her X dakikada bir" 66 | 67 | #: src/Objects/Reminder.vala:51 68 | #, c-format 69 | msgid "Every minute" 70 | msgid_plural "Every %d minutes" 71 | msgstr[0] "Her %d dakikada bir" 72 | 73 | #: src/Objects/Reminder.vala:55 74 | msgid "Every day" 75 | msgstr "Her gün" 76 | 77 | #: src/Objects/Reminder.vala:58 78 | msgid "Every week" 79 | msgstr "Her hafta" 80 | 81 | #: src/Objects/Reminder.vala:61 82 | msgid "Every month" 83 | msgstr "Her ay" 84 | 85 | #: src/Widgets/Views/ReminderEditor.vala:54 86 | msgid "Create a new reminder" 87 | msgstr "Yeni hatırlatıcı oluştur" 88 | 89 | #: src/Widgets/Views/ReminderEditor.vala:58 90 | msgid "What do you want to be reminded of?" 91 | msgstr "Neyi hatırlamak istersin?" 92 | 93 | #: src/Widgets/Views/ReminderEditor.vala:85 94 | msgid "Repeat" 95 | msgstr "Tekrarla" 96 | 97 | #: src/Widgets/Views/ReminderEditor.vala:90 98 | msgid "Save reminder" 99 | msgstr "Hatırlatıcıyı kaydet" 100 | 101 | # Your kelimesi çeviri uyumu için kullanılmadı 102 | #: src/Widgets/Views/RemindersView.vala:47 103 | msgid "Your reminders" 104 | msgstr "Hatırlatıcılar" 105 | 106 | # Çeviri uyumu için Reminder kelimesi çeviriye eklendi 107 | #: src/Widgets/Views/RemindersView.vala:52 108 | msgid "Create another" 109 | msgstr "Yeni bir hatırlatıcı oluştur" 110 | 111 | #: src/Widgets/Views/RemindersView.vala:93 112 | #, c-format 113 | msgid "Reminded: %s" 114 | msgstr "Hatırlatıcı: %s" 115 | 116 | #: src/Widgets/Views/RemindersView.vala:104 117 | msgid "Delete" 118 | msgstr "Sil" 119 | 120 | #: src/Widgets/Views/RemindersView.vala:111 121 | msgid "Edit" 122 | msgstr "Düzenle" 123 | 124 | #: src/Widgets/Views/RemindersView.vala:120 125 | msgid "Today" 126 | msgstr "Bugün" 127 | -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | namespace Reminduck { 23 | public class ReminduckApp : Gtk.Application { 24 | 25 | 26 | public static ArrayList reminders; 27 | public bool headless = false; 28 | private uint timeout_id = 0; 29 | 30 | private GLib.Settings settings; 31 | 32 | public MainWindow main_window { get; private set; default = null; } 33 | public static Reminduck.Database database; 34 | 35 | 36 | construct { 37 | application_id = "io.github.ellie_commons.reminduck"; 38 | flags = ApplicationFlags.HANDLES_COMMAND_LINE; 39 | database = new Reminduck.Database(); 40 | 41 | // Init internationalization support 42 | Intl.setlocale (LocaleCategory.ALL, ""); 43 | string langpack_dir = Path.build_filename (Constants.INSTALL_PREFIX, "share", "locale"); 44 | Intl.bindtextdomain (Constants.GETTEXT_PACKAGE, langpack_dir); 45 | Intl.bind_textdomain_codeset (Constants.GETTEXT_PACKAGE, "UTF-8"); 46 | Intl.textdomain (Constants.GETTEXT_PACKAGE); 47 | 48 | // Follow dark and light, use bananana 49 | var granite_settings = Granite.Settings.get_default (); 50 | var gtk_settings = Gtk.Settings.get_default (); 51 | gtk_settings.gtk_icon_theme_name = "elementary"; 52 | gtk_settings.gtk_theme_name = "io.elementary.stylesheet.banana"; 53 | 54 | gtk_settings.gtk_application_prefer_dark_theme = ( 55 | granite_settings.prefers_color_scheme == DARK 56 | ); 57 | 58 | granite_settings.notify["prefers-color-scheme"].connect (() => { 59 | gtk_settings.gtk_application_prefer_dark_theme = ( 60 | granite_settings.prefers_color_scheme == DARK 61 | ); 62 | }); 63 | 64 | // Use reminduck styling 65 | var app_provider = new Gtk.CssProvider (); 66 | app_provider.load_from_resource ("/io/github/ellie_commons/reminduck/stylesheet.css"); 67 | Gtk.StyleContext.add_provider_for_display ( 68 | Gdk.Display.get_default (), 69 | app_provider, 70 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION + 1 71 | ); 72 | } 73 | 74 | public static int main(string[] args) { 75 | var app = new ReminduckApp(); 76 | 77 | if (args.length > 1 && args[1] == "--headless") { 78 | app.headless = true; 79 | } 80 | 81 | return app.run(args); 82 | } 83 | 84 | protected override void activate() { 85 | stdout.printf("\n✔️ Activated"); 86 | database.verify_database(); 87 | 88 | this.settings = new GLib.Settings("io.github.ellie_commons.reminduck.state"); 89 | 90 | var first_run = this.settings.get_boolean("first-run"); 91 | // Set autostart here 92 | 93 | reload_reminders(); 94 | 95 | if (this.main_window == null) { 96 | this.main_window = new MainWindow(); 97 | this.main_window.set_application(this); 98 | 99 | var provider = new Gtk.CssProvider(); 100 | Gtk.StyleContext.add_provider_for_display( 101 | Gdk.Display.get_default(), 102 | provider, 103 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION 104 | ); 105 | 106 | if (!this.headless) { 107 | this.main_window.show(); 108 | this.main_window.show_welcome_view(Gtk.StackTransitionType.NONE); 109 | this.main_window.present(); 110 | } 111 | } 112 | 113 | if (this.main_window != null && !this.headless) { 114 | this.main_window.show(); 115 | this.main_window.show_welcome_view(Gtk.StackTransitionType.NONE); 116 | this.main_window.present(); 117 | } 118 | 119 | if (timeout_id == 0) { 120 | set_reminder_interval(); 121 | } 122 | } 123 | 124 | private void load_stylesheet(Gtk.Settings gtk_settings, Gtk.CssProvider provider) { 125 | if (gtk_settings.gtk_application_prefer_dark_theme) { 126 | provider.load_from_resource("/io/github/ellie_commons/reminduck/stylesheet-dark.css"); 127 | } else { 128 | provider.load_from_resource("/io/github/ellie_commons/reminduck/stylesheet.css"); 129 | } 130 | } 131 | 132 | public override int command_line(ApplicationCommandLine command_line) { 133 | stdout.printf("\n💲️ Command line mode started"); 134 | 135 | bool headless_mode = false; 136 | OptionEntry[] options = new OptionEntry[1]; 137 | options[0] = { 138 | "headless", 0, 0, OptionArg.NONE, 139 | ref headless_mode, "Run without window", null 140 | }; 141 | 142 | // We have to make an extra copy of the array, since .parse assumes 143 | // that it can remove strings from the array without freeing them. 144 | string[] args = command_line.get_arguments(); 145 | string[] _args = new string[args.length]; 146 | for(int i = 0; i < args.length; i++) { 147 | _args[i] = args[i]; 148 | } 149 | 150 | try { 151 | var ctx = new OptionContext(); 152 | ctx.set_help_enabled(true); 153 | ctx.add_main_entries(options, null); 154 | unowned string[] tmp = _args; 155 | ctx.parse(ref tmp); 156 | } catch(OptionError e) { 157 | command_line.print("error: %s\n", e.message); 158 | return 0; 159 | } 160 | 161 | this.headless = headless_mode; 162 | 163 | stdout.printf(this.headless ? "\n✔️ Headless" : "\n️️️️ ✔️ Interface"); 164 | 165 | hold(); 166 | activate(); 167 | return 0; 168 | } 169 | 170 | public static void reload_reminders() { 171 | reminders = database.fetch_reminders(); 172 | } 173 | 174 | public void set_reminder_interval() { 175 | // Disable old timer to avoid repeated notifications 176 | if (timeout_id > 0) { 177 | Source.remove(timeout_id); 178 | } 179 | 180 | timeout_id = Timeout.add_seconds(1 * 60, remind); 181 | } 182 | 183 | public bool remind() { 184 | reload_reminders(); 185 | 186 | var reminders_to_delete = new ArrayList(); 187 | foreach(var reminder in reminders) { 188 | //If reminder date < current date 189 | if (reminder.time.compare(new GLib.DateTime.now()) <= 0) { 190 | var notification = new Notification("QUACK!"); 191 | notification.set_body(reminder.description); 192 | notification.set_priority(GLib.NotificationPriority.URGENT); 193 | this.send_notification("notify.app", notification); 194 | 195 | if (reminder.recurrency_type != RecurrencyType.NONE) { 196 | GLib.DateTime new_time = reminder.time; 197 | 198 | //In case the user hasn't used his computer for a while, recurrent reminders 199 | //May have not fired for a while. Instead of bombarding him with notifications, 200 | //Let's make sure our new date is in the future 201 | 202 | //Let's try it only 30 times - no need to risk an infinite loop 203 | for (var i = 0; i < 30; i++) { 204 | switch (reminder.recurrency_type) { 205 | case RecurrencyType.EVERY_X_MINUTES: 206 | new_time = reminder.time.add_minutes(reminder.recurrency_interval); 207 | break; 208 | case RecurrencyType.EVERY_DAY: 209 | new_time = reminder.time.add_days(1); 210 | break; 211 | case RecurrencyType.EVERY_WEEK: 212 | new_time = reminder.time.add_weeks(1); 213 | break; 214 | case RecurrencyType.EVERY_MONTH: 215 | new_time = reminder.time.add_months(1); 216 | break; 217 | default: 218 | break; 219 | } 220 | 221 | //if new_time > current time 222 | if (new_time.compare(new GLib.DateTime.now()) > 0) { 223 | var new_reminder = new Reminder(); 224 | new_reminder.time = new_time; 225 | new_reminder.description = reminder.description; 226 | new_reminder.recurrency_type = reminder.recurrency_type; 227 | 228 | database.upsert_reminder(new_reminder); 229 | break; 230 | } 231 | //else, keep looping 232 | } 233 | } 234 | 235 | reminders_to_delete.add(reminder.rowid); 236 | } 237 | } 238 | 239 | if (reminders_to_delete.size > 0) { 240 | foreach(var reminder in reminders_to_delete) { 241 | database.delete_reminder(reminder); 242 | } 243 | reload_reminders(); 244 | } 245 | 246 | return true; 247 | } 248 | } 249 | } -------------------------------------------------------------------------------- /src/Database.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | using Gee; 23 | 24 | public class Reminduck.Database { 25 | private string get_database_path() { 26 | return Environment.get_user_data_dir() + "/.local/share/io.github.ellie_commons.reminduck/database.db"; 27 | } 28 | 29 | private void open_database(out Sqlite.Database database) { 30 | var connection = Sqlite.Database.open(get_database_path(), out database); 31 | 32 | if (connection != Sqlite.OK) { 33 | stderr.printf("Can't open database: %d: %s\n", database.errcode(), database.errmsg()); 34 | //Gtk.main_quit(); 35 | } 36 | } 37 | 38 | private void initialize_database() { 39 | Sqlite.Database db; 40 | open_database(out db); 41 | 42 | string query = """ 43 | CREATE TABLE `reminders`( 44 | `description` TEXT NOT NULL, 45 | `time` TEXT NOT NULL, 46 | `recurrency_type` INTEGER NULL, 47 | `recurrency_interval` INTEGER NULL 48 | ); 49 | """; 50 | 51 | db.exec(query); 52 | } 53 | 54 | public void verify_database() { 55 | try { 56 | string path = Environment.get_user_data_dir() + "/.local/share/io.github.ellie_commons.reminduck"; 57 | File tmp = File.new_for_path (path); 58 | if (tmp.query_file_type (0) != FileType.DIRECTORY) { 59 | GLib.DirUtils.create_with_parents (path, 0775); 60 | } 61 | 62 | initialize_database(); 63 | } catch(Error e) { 64 | stderr.printf("Error: %s\n", e.message); 65 | } 66 | } 67 | 68 | // private void create_new_columns() { 69 | // Sqlite.Database db; 70 | // open_database(out db); 71 | 72 | // //create new column (version migration) 73 | // var query = "SELECT recurrency_type FROM 'reminders'"; 74 | // var exec_query = db.exec(query); 75 | // if (exec_query != Sqlite.OK) { 76 | // print("Column recurrency_type does not exist. Creating it... \n"); 77 | // var alter_table_query = "ALTER TABLE `reminders` ADD `recurrency_type` INTEGER NULL"; 78 | // db.exec(alter_table_query); 79 | // } 80 | 81 | 82 | // query = "SELECT recurrency_interval FROM 'reminders'"; 83 | // exec_query = db.exec(query); 84 | // if (exec_query != Sqlite.OK) { 85 | // print("Column recurrency_interval does not exist. Creating it... \n"); 86 | // var alter_table_query = "ALTER TABLE `reminders` ADD `recurrency_interval` INTEGER NULL"; 87 | // db.exec(alter_table_query); 88 | // } 89 | // } 90 | 91 | public bool upsert_reminder(Reminder reminder) { 92 | var is_new = reminder.rowid == null; 93 | string prepared_query_str = ""; 94 | 95 | if (is_new) { 96 | prepared_query_str = "INSERT INTO reminders(description, time, recurrency_type, recurrency_interval) 97 | VALUES($DESCRIPTION, $TIME, $RECURRENCY_TYPE, $RECURRENCY_INTERVAL)"; 98 | } else { 99 | prepared_query_str = "UPDATE reminders 100 | SET description = $DESCRIPTION, time = $TIME, recurrency_type = $RECURRENCY_TYPE, recurrency_interval = $RECURRENCY_INTERVAL 101 | WHERE rowid = $ROWID"; 102 | } 103 | 104 | Sqlite.Database db; 105 | open_database(out db); 106 | 107 | Sqlite.Statement stmt; 108 | 109 | int exec_query = db.prepare_v2(prepared_query_str, prepared_query_str.length, out stmt); 110 | 111 | if (exec_query != Sqlite.OK) { 112 | print("Error executing query:\n%s\n", prepared_query_str); 113 | return false; 114 | } 115 | 116 | int param_position = stmt.bind_parameter_index ("$DESCRIPTION"); 117 | assert (param_position > 0); 118 | stmt.bind_text (param_position, reminder.description); 119 | 120 | param_position = stmt.bind_parameter_index ("$TIME"); 121 | assert (param_position > 0); 122 | stmt.bind_text (param_position, reminder.time.to_unix().to_string()); 123 | 124 | param_position = stmt.bind_parameter_index ("$RECURRENCY_TYPE"); 125 | assert (param_position > 0); 126 | stmt.bind_text (param_position, ((int)reminder.recurrency_type).to_string()); 127 | 128 | param_position = stmt.bind_parameter_index ("$RECURRENCY_INTERVAL"); 129 | assert (param_position > 0); 130 | stmt.bind_text (param_position, reminder.recurrency_interval.to_string()); 131 | 132 | if (!is_new) { 133 | param_position = stmt.bind_parameter_index ("$ROWID"); 134 | assert (param_position > 0); 135 | stmt.bind_text (param_position, reminder.rowid); 136 | } 137 | 138 | exec_query = stmt.step(); 139 | if (exec_query != Sqlite.DONE) { 140 | print("Error executing query:\n%s\n", db.errmsg()); 141 | } 142 | 143 | return true; 144 | } 145 | 146 | public ArrayList fetch_reminders() { 147 | var result = new ArrayList(); 148 | 149 | var query = """SELECT rowid, description, time, recurrency_type, recurrency_interval 150 | FROM reminders 151 | ORDER BY time DESC;"""; 152 | 153 | Sqlite.Database db; 154 | open_database(out db); 155 | string errmsg; 156 | 157 | var exec_query = db.exec(query,(n, v, c) => { 158 | var reminder = new Reminder(); 159 | reminder.rowid = v[0]; 160 | reminder.description = v[1]; 161 | reminder.time = new GLib.DateTime.from_unix_local(int64.parse(v[2])); 162 | 163 | if (v[3] != null) { 164 | reminder.recurrency_type = (RecurrencyType)int.parse(v[3]); 165 | } 166 | 167 | reminder.recurrency_interval = int.parse(v[4]); 168 | 169 | result.add(reminder); 170 | return 0; 171 | }, out errmsg); 172 | 173 | if (exec_query != Sqlite.OK) { 174 | print("Error executing query. Error: \n%s\n", errmsg); 175 | } 176 | 177 | return result; 178 | } 179 | 180 | public bool delete_reminder(string row_id) { 181 | var query = """DELETE FROM reminders WHERE rowid = """+ row_id +""";"""; 182 | 183 | Sqlite.Database db; 184 | open_database(out db); 185 | var exec_query = db.exec(query); 186 | 187 | if (exec_query != Sqlite.OK) { 188 | print("Error executing query:\n%s\n", query); 189 | return false; 190 | } 191 | 192 | return true; 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /src/MainWindow.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | namespace Reminduck { 23 | public class MainWindow : Gtk.ApplicationWindow { 24 | Gtk.Stack stack; 25 | Gtk.HeaderBar headerbar; 26 | Gtk.Button back_button; 27 | 28 | private GLib.Settings settings; 29 | 30 | Granite.Placeholder welcome_widget = null; 31 | int? view_reminders_action_reference = null; 32 | 33 | Widgets.Views.ReminderEditor reminder_editor; 34 | Widgets.Views.RemindersView reminders_view; 35 | 36 | public MainWindow() { 37 | settings = new GLib.Settings("io.github.ellie_commons.reminduck.state"); 38 | 39 | build_ui(); 40 | } 41 | 42 | private void build_ui() { 43 | stack = new Gtk.Stack(); 44 | stack.set_transition_duration(500); 45 | 46 | this.build_headerbar(); 47 | 48 | this.build_welcome(); 49 | 50 | var image = new Gtk.Image(); 51 | image.set_from_icon_name("io.github.ellie_commons.reminduck"); 52 | image.set_margin_top(30); 53 | 54 | var fields_box = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); 55 | fields_box.add_css_class("reminduck-welcome-box"); 56 | fields_box.append(image); 57 | fields_box.append(this.welcome_widget); 58 | 59 | stack.add_named(fields_box, "welcome"); 60 | 61 | this.build_reminder_editor(); 62 | this.build_reminders_view(); 63 | 64 | set_child(stack); 65 | 66 | this.show_welcome_view(Gtk.StackTransitionType.NONE); 67 | 68 | delete_event.connect(e => { 69 | return before_destroy(); 70 | }); 71 | } 72 | 73 | private void build_headerbar() { 74 | this.headerbar = new Gtk.HeaderBar(); 75 | this.headerbar.show_close_button = true; 76 | this.headerbar.title = "Reminduck"; 77 | this.headerbar.add_css_class("default-decoration"); 78 | this.headerbar.add_css_class("reminduck-headerbar"); 79 | set_titlebar(this.headerbar); 80 | 81 | this.back_button = new Gtk.Button.with_label(_("Back")); 82 | this.back_button.add_css_class("back-button"); 83 | this.back_button.valign = Gtk.Align.CENTER; 84 | this.headerbar.pack_start(this.back_button); 85 | 86 | this.back_button.clicked.connect(() => { 87 | this.show_welcome_view(); 88 | }); 89 | } 90 | 91 | private void build_welcome() { 92 | this.welcome_widget = new Granite.Placeholder(_("QUACK! I'm Reminduck") { 93 | description = _("The duck that reminds you") 94 | }; 95 | 96 | this.welcome_widget.activated.connect((index) => { 97 | switch(index) { 98 | case 0: 99 | show_reminder_editor(); 100 | break; 101 | case 1: 102 | show_reminders_view(Gtk.StackTransitionType.SLIDE_LEFT); 103 | break; 104 | } 105 | }); 106 | 107 | this.welcome_widget.add("document-new", _("New Reminder"), _("Create a new reminder for a set date and time")); 108 | if (ReminduckApp.reminders.size > 0) { 109 | this.view_reminders_action_reference = this.welcome_widget.append("accessories-text-editor", _("View Reminders"), _("See reminders you've created")); 110 | } 111 | } 112 | 113 | private void update_view_reminders_welcome_action() { 114 | if (ReminduckApp.reminders.size > 0) { 115 | if (this.view_reminders_action_reference == null) { 116 | this.view_reminders_action_reference = this.welcome_widget.append("accessories-text-editor", _("View Reminders"), _("See reminders you've created")); 117 | this.welcome_widget.show(); 118 | } 119 | } else { 120 | if (this.view_reminders_action_reference != null) { 121 | this.welcome_widget.remove_item(this.view_reminders_action_reference); 122 | } 123 | this.view_reminders_action_reference = null; 124 | } 125 | } 126 | 127 | private void build_reminder_editor() { 128 | this.reminder_editor = new Widgets.Views.ReminderEditor(); 129 | 130 | this.reminder_editor.reminder_created.connect((new_reminder) => { 131 | ReminduckApp.reload_reminders(); 132 | show_reminders_view(); 133 | }); 134 | 135 | this.reminder_editor.reminder_edited.connect((edited_file) => { 136 | ReminduckApp.reload_reminders(); 137 | show_reminders_view(); 138 | }); 139 | 140 | stack.add_named(this.reminder_editor, "reminder_editor"); 141 | } 142 | 143 | private void build_reminders_view() { 144 | this.reminders_view = new Widgets.Views.RemindersView(); 145 | 146 | this.reminders_view.add_request.connect(() => { 147 | show_reminder_editor(); 148 | }); 149 | 150 | this.reminders_view.edit_request.connect((reminder) => { 151 | show_reminder_editor(reminder); 152 | }); 153 | 154 | this.reminders_view.reminder_deleted.connect(() => { 155 | ReminduckApp.reload_reminders(); 156 | if (ReminduckApp.reminders.size == 0) { 157 | show_welcome_view(); 158 | } else { 159 | this.reminders_view.build_reminders_list(); 160 | } 161 | }); 162 | 163 | stack.add_named(this.reminders_view, "reminders_view"); 164 | } 165 | 166 | private void show_reminder_editor(Reminder? reminder = null) { 167 | stack.set_transition_type(Gtk.StackTransitionType.SLIDE_LEFT); 168 | stack.set_visible_child_name("reminder_editor"); 169 | this.back_button.show(); 170 | this.reminder_editor.edit_reminder(reminder); 171 | } 172 | 173 | private void show_reminders_view(Gtk.StackTransitionType slide = Gtk.StackTransitionType.SLIDE_RIGHT) { 174 | stack.set_transition_type(slide); 175 | stack.set_visible_child_name("reminders_view"); 176 | this.reminders_view.build_reminders_list(); 177 | this.back_button.show(); 178 | this.reminder_editor.reset_fields(); 179 | } 180 | 181 | public void show_welcome_view(Gtk.StackTransitionType slide = Gtk.StackTransitionType.SLIDE_RIGHT) { 182 | this.update_view_reminders_welcome_action(); 183 | stack.set_transition_type(slide); 184 | stack.set_visible_child_name("welcome"); 185 | this.back_button.hide(); 186 | this.reminder_editor.reset_fields(); 187 | } 188 | 189 | private bool before_destroy() { 190 | int width, height; 191 | 192 | get_default_size(out width, out height); 193 | 194 | this.settings.set_int("window-width", width); 195 | this.settings.set_int("window-height", height); 196 | 197 | hide(); 198 | return true; 199 | } 200 | } 201 | } 202 | -------------------------------------------------------------------------------- /src/Objects/Reminder.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | namespace Reminduck { 23 | public class Reminder : GLib.Object { 24 | public string rowid { get; set; } 25 | public string description { get; set; } 26 | public GLib.DateTime time { get; set; } 27 | public RecurrencyType recurrency_type { get; set; default = RecurrencyType.NONE; } 28 | public int recurrency_interval { get; set; } 29 | 30 | public Reminder() { 31 | 32 | } 33 | } 34 | 35 | public enum RecurrencyType { 36 | EVERY_X_MINUTES, 37 | EVERY_DAY, 38 | EVERY_WEEK, 39 | EVERY_MONTH, 40 | NONE; 41 | 42 | public string to_friendly_string(int? interval = null) { 43 | switch (this) { 44 | case NONE: 45 | return _("Don't Repeat"); 46 | 47 | case EVERY_X_MINUTES: 48 | if (interval == null || interval == 0) { 49 | return _("Every X minutes"); 50 | } else { 51 | return GLib.ngettext ("Every minute", "Every %d minutes", interval).printf (interval); 52 | } 53 | 54 | case EVERY_DAY: 55 | return _("Every day"); 56 | 57 | case EVERY_WEEK: 58 | return _("Every week"); 59 | 60 | case EVERY_MONTH: 61 | return _("Every month"); 62 | 63 | default: 64 | assert_not_reached(); 65 | } 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/Widgets/Views/ReminderEditor.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | namespace Reminduck.Widgets.Views { 23 | public class ReminderEditor : Gtk.Box { 24 | public signal void reminder_created(); 25 | public signal void reminder_edited(); 26 | 27 | Gtk.Label title; 28 | Gtk.Entry reminder_input; 29 | Granite.DatePicker date_picker; 30 | Granite.TimePicker time_picker; 31 | 32 | Gtk.Box recurrency_switch_container; 33 | Gtk.Switch recurrency_switch; 34 | Gtk.ComboBox recurrency_combobox; 35 | Gtk.SpinButton recurrency_interval; 36 | Gtk.Button save_button; 37 | 38 | Reminder reminder; 39 | 40 | bool touched; 41 | 42 | construct { 43 | orientation = Gtk.Orientation.VERTICAL; 44 | this.reminder = new Reminder(); 45 | } 46 | 47 | public ReminderEditor() { 48 | this.build_ui(); 49 | } 50 | 51 | private void build_ui() { 52 | this.margin_top = 15; 53 | 54 | this.title = new Gtk.Label(_("Create a new reminder")); 55 | this.title.add_css_class("h2"); 56 | 57 | this.reminder_input = new Gtk.Entry(); 58 | this.reminder_input.placeholder_text = _("What do you want to be reminded of?"); 59 | this.reminder_input.show_emoji_icon = true; 60 | 61 | this.date_picker = new Granite.DatePicker.with_format( 62 | Granite.DateTime.get_default_date_format(false, true, true) 63 | ); 64 | 65 | this.time_picker = new Granite.TimePicker.with_format( 66 | Granite.DateTime.get_default_time_format(true), 67 | Granite.DateTime.get_default_time_format(false) 68 | ); 69 | 70 | this.build_recurrency_ui(); 71 | 72 | this.reset_fields(); 73 | 74 | var date_time_container = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 5); 75 | date_time_container.append(this.date_picker); 76 | date_time_container.append(this.time_picker); 77 | 78 | var fields_box = new Gtk.Box(Gtk.Orientation.VERTICAL, 5); 79 | fields_box.margin_top = 75; 80 | fields_box.append(this.reminder_input); 81 | fields_box.append(date_time_container); 82 | 83 | var repeat_label_box = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 0); 84 | repeat_label_box.margin_top = 5; 85 | repeat_label_box.append(new Gtk.Label(_("Repeat"))); 86 | 87 | fields_box.append(repeat_label_box); 88 | fields_box.append(this.recurrency_switch_container); 89 | 90 | this.save_button = new Gtk.Button.with_label(_("Save reminder")); 91 | this.save_button.halign = Gtk.Align.END; 92 | this.save_button.add_css_class("suggested-action"); 93 | this.save_button.activate.connect(on_save); 94 | this.save_button.clicked.connect(on_save); 95 | this.save_button.set_sensitive(false); 96 | 97 | append(title); 98 | append(fields_box); 99 | append(this.save_button); 100 | 101 | this.reminder_input.changed.connect(() => { 102 | this.touched = true; 103 | this.validate(); 104 | }); 105 | 106 | this.reminder_input.activate.connect(() => { 107 | this.save_button.clicked(); 108 | }); 109 | 110 | this.date_picker.changed.connect(() => { 111 | this.validate(); 112 | }); 113 | 114 | this.time_picker.changed.connect(() => { 115 | this.validate(); 116 | }); 117 | 118 | this.recurrency_switch.notify["active"].connect(() => { 119 | if (this.recurrency_switch.get_active()) { 120 | this.recurrency_combobox.show(); 121 | this.recurrency_combobox.changed(); 122 | } else { 123 | this.recurrency_combobox.hide(); 124 | this.recurrency_interval.hide(); 125 | } 126 | }); 127 | 128 | this.recurrency_combobox.changed.connect(() => { 129 | var selected_option = this.recurrency_combobox.get_active(); 130 | 131 | if ((RecurrencyType)selected_option == RecurrencyType.EVERY_X_MINUTES) { 132 | this.recurrency_interval.show(); 133 | } else { 134 | this.recurrency_interval.hide(); 135 | } 136 | }); 137 | 138 | this.recurrency_interval.value_changed.connect(() => { 139 | if (this.recurrency_interval.value == 0) { 140 | this.recurrency_interval.value = 1; 141 | } 142 | }); 143 | } 144 | 145 | private void build_recurrency_ui() { 146 | this.recurrency_switch = new Gtk.Switch(); 147 | this.recurrency_switch.margin_end = 10; 148 | 149 | this.recurrency_switch_container = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 5); 150 | 151 | this.recurrency_switch_container.append(this.recurrency_switch); 152 | 153 | string[] recurrency_options = { 154 | RecurrencyType.EVERY_X_MINUTES.to_friendly_string(), 155 | RecurrencyType.EVERY_DAY.to_friendly_string(), 156 | RecurrencyType.EVERY_WEEK.to_friendly_string(), 157 | RecurrencyType.EVERY_MONTH.to_friendly_string() 158 | }; 159 | Gtk.ListStore list_store = new Gtk.ListStore(1, typeof(string)); 160 | 161 | for (int i = 0; i < recurrency_options.length; i++){ 162 | Gtk.TreeIter iter; 163 | list_store.append (out iter); 164 | list_store.set (iter, 0, recurrency_options[i]); 165 | } 166 | 167 | this.recurrency_combobox = new Gtk.ComboBox.with_model(list_store); 168 | 169 | Gtk.CellRendererText cell = new Gtk.CellRendererText(); 170 | this.recurrency_combobox.pack_start(cell, false); 171 | 172 | this.recurrency_combobox.set_attributes(cell, "text", 0); 173 | 174 | this.recurrency_switch_container.append(this.recurrency_combobox); 175 | 176 | this.recurrency_interval = new Gtk.SpinButton.with_range(0, 1000, 1); 177 | this.recurrency_interval.value = 30; 178 | 179 | this.recurrency_switch_container.append(this.recurrency_interval); 180 | } 181 | 182 | public bool validate() { 183 | var result = true; 184 | 185 | if (this.reminder_input.get_text() == null || this.reminder_input.get_text().length <= 0) { 186 | if (this.touched) { 187 | this.reminder_input.add_css_class(Granite.STYLE_CLASS_ERROR); 188 | } 189 | 190 | this.save_button.set_sensitive(false); 191 | result = false; 192 | } else { 193 | this.reminder_input.remove_css_class(Granite.STYLE_CLASS_ERROR); 194 | } 195 | 196 | var dateTime = this.mount_datetime(this.date_picker.date, this.time_picker.time); 197 | 198 | if (dateTime.compare(new GLib.DateTime.now_local()) <= 0) { 199 | this.date_picker.add_css_class(Granite.STYLE_CLASS_ERROR); 200 | this.time_picker.add_css_class(Granite.STYLE_CLASS_ERROR); 201 | 202 | this.save_button.set_sensitive(false); 203 | result = false; 204 | } else { 205 | this.date_picker.remove_css_class(Granite.STYLE_CLASS_ERROR); 206 | this.time_picker.remove_css_class(Granite.STYLE_CLASS_ERROR); 207 | } 208 | 209 | if (result) { 210 | this.save_button.set_sensitive(true); 211 | } 212 | 213 | return result; 214 | } 215 | 216 | public void edit_reminder(Reminder ? existing_reminder) { 217 | if (existing_reminder != null) { 218 | this.reminder = existing_reminder; 219 | 220 | this.reminder_input.text = this.reminder.description; 221 | this.date_picker.date = this.reminder.time; 222 | this.time_picker.time = this.reminder.time; 223 | 224 | if (this.reminder.recurrency_type == RecurrencyType.NONE) { 225 | this.recurrency_switch.set_active(false); 226 | } else { 227 | this.recurrency_switch.set_active(true); 228 | this.recurrency_combobox.set_active((int)this.reminder.recurrency_type); 229 | 230 | if (this.reminder.recurrency_type == RecurrencyType.EVERY_X_MINUTES) { 231 | this.recurrency_interval.value = (double)this.reminder.recurrency_interval; 232 | this.recurrency_interval.show(); 233 | } 234 | } 235 | } else { 236 | this.reminder = new Reminder(); 237 | this.reset_fields(); 238 | } 239 | } 240 | 241 | public void reset_fields() { 242 | this.reminder_input.text = ""; 243 | this.date_picker.date = new GLib.DateTime.now_local().add_minutes(15); 244 | this.time_picker.time = this.date_picker.date; 245 | this.recurrency_switch.set_active(false); 246 | this.recurrency_combobox.set_active((int)RecurrencyType.EVERY_X_MINUTES); 247 | this.recurrency_combobox.hide(); 248 | this.recurrency_interval.hide(); 249 | } 250 | 251 | private void on_save() { 252 | if (this.validate()) { 253 | this.reminder.description = this.reminder_input.get_text(); 254 | this.reminder.time = this.mount_datetime(this.date_picker.date, this.time_picker.time); 255 | if (this.recurrency_switch.get_active()) { 256 | this.reminder.recurrency_type = (RecurrencyType)(this.recurrency_combobox.get_active()); 257 | 258 | if (this.reminder.recurrency_type == RecurrencyType.EVERY_X_MINUTES) { 259 | this.reminder.recurrency_interval = (int)this.recurrency_interval.value; 260 | } else { 261 | this.reminder.recurrency_interval = 0; 262 | } 263 | } else { 264 | this.reminder.recurrency_type = RecurrencyType.NONE; 265 | this.reminder.recurrency_interval = 0; 266 | } 267 | 268 | var result = ReminduckApp.database.upsert_reminder(this.reminder); 269 | 270 | if (result) { 271 | reminder_created(); 272 | } else { 273 | reminder_edited(); 274 | } 275 | } 276 | } 277 | 278 | private DateTime mount_datetime(DateTime date, DateTime time) { 279 | return new GLib.DateTime.local( 280 | date.get_year(), 281 | date.get_month(), 282 | date.get_day_of_month(), 283 | time.get_hour(), 284 | time.get_minute(), 285 | 0 286 | ); 287 | } 288 | } 289 | } 290 | -------------------------------------------------------------------------------- /src/Widgets/Views/RemindersView.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright(c) 2011-2019 Matheus Fantinel 3 | * 4 | * This program is free software; you can redistribute it and/or 5 | * modify it under the terms of the GNU General Public 6 | * License as published by the Free Software Foundation; either 7 | * version 2 of the License, or(at your option) any later version. 8 | * 9 | * This program is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 | * General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public 15 | * License along with this program; if not, write to the 16 | * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 17 | * Boston, MA 02110-1301 USA 18 | * 19 | * Authored by: Matheus Fantinel 20 | */ 21 | 22 | using Gee; 23 | 24 | namespace Reminduck.Widgets.Views { 25 | public class RemindersView : Gtk.Box { 26 | public signal void add_request(); 27 | public signal void edit_request(Reminder reminder); 28 | public signal void reminder_deleted(); 29 | 30 | Gtk.Label title; 31 | Gtk.ListBox reminders_list; 32 | 33 | construct { 34 | orientation = Gtk.Orientation.VERTICAL; 35 | } 36 | 37 | public RemindersView() { 38 | this.build_ui(); 39 | } 40 | 41 | public void build_ui() { 42 | this.margin_top = 15; 43 | 44 | var box = new Gtk.Box(Gtk.Orientation.VERTICAL, 5); 45 | box.margin_top = 10; 46 | 47 | this.title = new Gtk.Label(_("Your reminders")); 48 | this.title.add_css_class("h2"); 49 | 50 | box.append(this.title); 51 | 52 | var add_new_button = new Gtk.Button.with_label(_("Create another")); 53 | add_new_button.halign = Gtk.Align.CENTER; 54 | add_new_button.add_css_class("suggested-action"); 55 | add_new_button.activate.connect(add_reminder); 56 | add_new_button.clicked.connect(add_reminder); 57 | 58 | box.append(add_new_button); 59 | 60 | append(box); 61 | 62 | var scrolled_window = new Gtk.ScrolledWindow(); 63 | build_reminders_list(); 64 | scrolled_window.set_child(this.reminders_list); 65 | 66 | append(scrolled_window); 67 | } 68 | 69 | public void add_reminder() { 70 | add_request(); 71 | } 72 | 73 | public void build_reminders_list() { 74 | if (this.reminders_list == null) { 75 | this.reminders_list = new Gtk.ListBox(); 76 | this.reminders_list.add_css_class("reminduck-reminders-list"); 77 | } else { 78 | foreach(var child in this.reminders_list.get_children()) { 79 | this.reminders_list.remove(child); 80 | } 81 | } 82 | 83 | var index = 0; 84 | foreach(var reminder in ReminduckApp.reminders) { 85 | var box = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 5); 86 | box.margin_top = 2; 87 | box.add_css_class("list-item"); 88 | 89 | if (reminder.recurrency_type != RecurrencyType.NONE) { 90 | var recurrency_indicator = new Gtk.Image(); 91 | recurrency_indicator.gicon = new ThemedIcon ("media-playlist-repeat"); 92 | recurrency_indicator.pixel_size = 18; 93 | recurrency_indicator.tooltip_text = _("Reminded: %s").printf(reminder.recurrency_type.to_friendly_string(reminder.recurrency_interval)); 94 | box.append(recurrency_indicator); 95 | } 96 | 97 | var description = new Gtk.Label(reminder.description); 98 | description.wrap = true; 99 | description.single_line_mode = false; 100 | 101 | box.append(description); 102 | 103 | var delete_button = new Gtk.Button.from_icon_name("edit-delete"); 104 | delete_button.tooltip_text = _("Delete"); 105 | delete_button.activate.connect(() => { on_delete(reminder); } ); 106 | delete_button.clicked.connect(() => { on_delete(reminder); } ); 107 | 108 | box.append(delete_button); 109 | 110 | var edit_button = new Gtk.Button.from_icon_name("edit"); 111 | edit_button.tooltip_text = _("Edit"); 112 | edit_button.activate.connect(() => { on_edit(reminder); } ); 113 | edit_button.clicked.connect(() => { on_edit(reminder); } ); 114 | 115 | box.append(edit_button); 116 | 117 | string date_label_text = ""; 118 | var is_today = reminder.time.format("%x") == new GLib.DateTime.now().format("%x"); 119 | if (is_today) { 120 | date_label_text += _("Today"); 121 | } else { 122 | date_label_text += reminder.time.format("%x"); 123 | } 124 | 125 | var time_text_split = reminder.time.format("%X").split(":"); 126 | 127 | date_label_text += " " + time_text_split[0].concat(":", time_text_split[1]); 128 | 129 | box.append(new Gtk.Label(date_label_text)); 130 | 131 | var row = new Gtk.ListBoxRow(); 132 | row.set_child(box); 133 | 134 | this.reminders_list.insert(row, index); 135 | } 136 | index++; 137 | 138 | this.reminders_list.show(); 139 | } 140 | 141 | private void on_delete(Reminder reminder) { 142 | ReminduckApp.database.delete_reminder(reminder.rowid); 143 | this.reminder_deleted(); 144 | } 145 | 146 | private void on_edit(Reminder reminder) { 147 | this.edit_request(reminder); 148 | } 149 | } 150 | } 151 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | sources = files( 2 | 'Application.vala', 3 | 'MainWindow.vala', 4 | 'Database.vala', 5 | 'Objects/Reminder.vala', 6 | 'Widgets/Views/ReminderEditor.vala', 7 | 'Widgets/Views/RemindersView.vala' 8 | 9 | ) 10 | -------------------------------------------------------------------------------- /vapi/config.vapi: -------------------------------------------------------------------------------- 1 | [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] 2 | namespace Build { 3 | public const string DATADIR; 4 | public const string PKGDATADIR; 5 | public const string GETTEXT_PACKAGE; 6 | public const string RELEASE_NAME; 7 | public const string VERSION; 8 | public const string VERSION_INFO; 9 | public const string PLUGINDIR; 10 | } --------------------------------------------------------------------------------