├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── com.github.dahenson.agenda.yml ├── data ├── Agenda.css ├── com.github.dahenson.agenda.appdata.xml.in ├── com.github.dahenson.agenda.desktop.in ├── com.github.dahenson.agenda.gresources.xml ├── com.github.dahenson.agenda.gschema.xml ├── icons │ ├── 16 │ │ └── com.github.dahenson.agenda.svg │ ├── 24 │ │ └── com.github.dahenson.agenda.svg │ ├── 32 │ │ └── com.github.dahenson.agenda.svg │ ├── 48 │ │ └── com.github.dahenson.agenda.svg │ ├── 64 │ │ └── com.github.dahenson.agenda.svg │ └── 128 │ │ └── com.github.dahenson.agenda.svg ├── meson.build ├── screenshot.png ├── screenshot_welcome.png └── shortcuts.ui ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── af.po ├── ca.po ├── com.github.dahenson.agenda.pot ├── da.po ├── de.po ├── el.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── extra.pot │ ├── it.po │ ├── ja.po │ ├── meson.build │ ├── nl.po │ ├── oc.po │ ├── pl.po │ ├── pt.po │ └── ru.po ├── fi.po ├── fr.po ├── fr_CA.po ├── gl.po ├── he.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── km.po ├── ko.po ├── la.po ├── lt.po ├── meson.build ├── ms.po ├── nb.po ├── nl.po ├── nn.po ├── oc.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ru.po ├── sr.po ├── sr@latin.po ├── sv.po ├── tr.po ├── ug.po ├── ur.po └── zh_CN.po ├── src ├── Agenda.vala ├── Backend │ ├── BackendInterface.vala │ └── FileBackend.vala ├── Models │ ├── HistoryList.vala │ ├── Task.vala │ ├── TaskList.vala │ └── TaskListHistory.vala ├── Prefs.vala ├── Widgets │ └── TaskView.vala └── Window.vala ├── test ├── TestCase.vala ├── TestTask.vala ├── TestTaskList.vala ├── TestTaskListHistory.vala ├── TestTaskListHistoryMain.vala ├── TestTaskListMain.vala ├── TestTaskMain.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 | 18 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: [push, pull_request] 4 | 5 | jobs: 6 | 7 | flatpak: 8 | 9 | runs-on: ubuntu-latest 10 | 11 | strategy: 12 | matrix: 13 | arch: [x86_64, aarch64] 14 | # Don't fail the whole workflow if one architecture fails 15 | fail-fast: false 16 | 17 | container: 18 | image: ghcr.io/elementary/flatpak-platform/runtime:8-${{ matrix.arch }} 19 | options: --privileged 20 | 21 | steps: 22 | - uses: actions/checkout@v4 23 | 24 | - name: Set up QEMU for aarch64 emulation 25 | if: ${{ matrix.arch != 'x86_64' }} 26 | uses: docker/setup-qemu-action@v3 27 | with: 28 | platforms: arm64 29 | 30 | - name: Build 31 | uses: flatpak/flatpak-github-actions/flatpak-builder@v6 32 | with: 33 | bundle: agenda.flatpak 34 | manifest-path: com.github.dahenson.agenda.yml 35 | 36 | run-tests: true 37 | 38 | repository-name: appcenter 39 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 40 | cache-key: "flatpak-builder-${{ github.sha }}" 41 | arch: ${{ matrix.arch }} 42 | 43 | lint: 44 | 45 | runs-on: ubuntu-latest 46 | 47 | container: 48 | image: valalang/lint 49 | 50 | steps: 51 | - uses: actions/checkout@v4 52 | - name: Lint 53 | run: io.elementary.vala-lint -d ./src/ 54 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .flatpak-builder/ 3 | *~ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Build Status](https://travis-ci.org/dahenson/agenda.svg?branch=master)](https://travis-ci.org/dahenson/agenda) 2 | 3 |

4 | Icon 5 |

6 |

Agenda

7 |

8 | Get it on AppCenter 9 |

10 | 11 | ![Screenshot](data/screenshot.png) 12 | ![Screenshot](data/screenshot_welcome.png) 13 | 14 | ## A simple, fast, no-nonsense to-do (task) list for elementary OS. 15 | 16 | Sometimes, you just need a task list to keep you motivated. Agenda presents you with a quick and easy way to write down your tasks and tick them off as you complete them. The list is saved automatically, so you can close the list to get it out of the way and re-open it for a quick check at any time. 17 | 18 | ## Made for [elementary OS](https://elementary.io) 19 | 20 | Agenda is designed and built for [elementary OS](https://elementary.io), and is available in the AppCenter. Please purchase the application through the AppCenter to ensure that you are using the latest stable build and to recieve updates as soon as they are released. Purchasing through the AppCenter also helps fund further development of this app. 21 | 22 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.dahenson.agenda) 23 | 24 | ## Developing and Building 25 | 26 | If you want to hack on Agenda, you'll need the following packages installed: 27 | * libgtk-3-dev 28 | * libgranite-dev 29 | * meson 30 | * valac 31 | 32 | Run `meson build` to configure the build environment. Change to the build directory and run `ninja` to build 33 | 34 | meson build --prefix=/usr 35 | cd build 36 | ninja 37 | 38 | To install, use `ninja install`, then execute with `com.github.dahenson.agenda` 39 | 40 | sudo ninja install 41 | com.github.dahenson.agenda 42 | 43 | ## Arch Linux 44 | Arch Linux users can find Agenda under the name [agenda-git](https://aur.archlinux.org/packages/agenda-git/) in the **AUR**: 45 | 46 | `$ aurman -S agenda-git` 47 | 48 | Supported by: @btd1337 49 | 50 | ## Other Platforms 51 | 52 | Agenda was designed on and built for elementary OS. If you are using this application on another platform, it may have been made available by an interested community member. Unfortunately, I am unable to support other platforms at this time. 53 | 54 | If you are running Agenda on something other than elementary OS, please seek support from the community maintainer. Bugs filed against Agenda running on other platforms are of the lowest priority. 55 | 56 | ## Special Thanks 57 | 58 | Huge thanks to [Harvey Cabaguio](https://github.com/harveycabaguio) for the original idea, mockup, and amazing icons. Hire him for something quickly before he becomes too famous! 59 | -------------------------------------------------------------------------------- /com.github.dahenson.agenda.yml: -------------------------------------------------------------------------------- 1 | app-id: com.github.dahenson.agenda 2 | 3 | runtime: io.elementary.Platform 4 | runtime-version: '8' 5 | sdk: io.elementary.Sdk 6 | 7 | command: com.github.dahenson.agenda 8 | 9 | finish-args: 10 | - '--share=ipc' 11 | - '--socket=fallback-x11' 12 | - '--socket=wayland' 13 | 14 | modules: 15 | - name: agenda 16 | buildsystem: meson 17 | sources: 18 | - type: dir 19 | path: . 20 | -------------------------------------------------------------------------------- /data/Agenda.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2017 Dane Henson (https://brainofdane.com) 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 | 20 | .titlebar { 21 | background-color: @bg_color; 22 | background-image: none; 23 | box-shadow: none; 24 | border: none; 25 | } 26 | 27 | .welcome { 28 | background-color: @bg_color; 29 | } 30 | 31 | window { 32 | background-color: @bg_color; 33 | } 34 | 35 | treeview { 36 | color: @fg_color; 37 | background-color: @bg_color; 38 | } 39 | 40 | treeview:selected { 41 | color: @selected_fg_color; 42 | background-color: @selected_bg_color; 43 | } 44 | 45 | treeview entry { 46 | background-image: none; 47 | background-color: @bg_color; 48 | border-bottom: 1px solid @selected_bg_color; 49 | } 50 | 51 | treeview entry selection, 52 | treeview entry selection:focus, 53 | treeview entry:selected, 54 | treeview entry:selected:focus { 55 | color: @selected_fg_color; 56 | background-color: @selected_bg_color; 57 | } 58 | 59 | treeview .image { 60 | color: @bg_color; 61 | } 62 | 63 | treeview .image:selected { 64 | color: @selected_fg_color; 65 | } 66 | 67 | treeview .image:hover { 68 | color: @fg_color; 69 | } 70 | 71 | treeview .image:selected:hover { 72 | color: @selected_fg_color; 73 | } 74 | 75 | 76 | check:focus:not(:checked):not(:selected) { 77 | border: 1px solid @border_color; 78 | } 79 | 80 | check:focus:not(:selected) { 81 | box-shadow: 82 | inset 0 1px 0 0 alpha (@bg_highlight_color, 0.5), 83 | inset 0 0 0 1px alpha (@bg_highlight_color, 0.2), 84 | 0 1px 1px 0 shade (@bg_color, 0.95); 85 | } 86 | 87 | -------------------------------------------------------------------------------- /data/com.github.dahenson.agenda.appdata.xml.in: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.github.dahenson.agenda 5 | CC0 6 | GPL-3.0+ 7 | Agenda 8 | Get things done 9 | 10 | Dane Henson 11 | 12 | https://brainofdane.com 13 | https://github.com/dahenson/agenda/issues 14 | com.github.dahenson.agenda.desktop 15 | 16 | 17 | https://raw.githubusercontent.com/dahenson/agenda/master/data/screenshot.png 18 | 19 | 20 | https://raw.githubusercontent.com/dahenson/agenda/master/data/screenshot_welcome.png 21 | 22 | 23 | 24 |

25 | A task manager to help you keep track of the tasks that matter most. 26 |

27 |

28 | Sometimes, you just need a task list to keep you motivated. Agenda provides a way to write down your tasks and tick them off as you complete them. The list is saved automatically, so you can close the list to get it out of the way without losing your place. 29 |

30 |

Key Features:

31 |
    32 |
  • Saves your task list automatically
  • 33 |
  • See your completed tasks until you choose to delete them
  • 34 |
  • Autocompletion for previously added tasks
  • 35 |
  • Undo/Redo with Ctrl-Z and Ctrl-Y
  • 36 |
  • Print tasklist to paper
  • 37 |
  • Quit with the Esc key
  • 38 |
39 |
40 | 41 | 42 | 43 | 44 |

New features

45 |
    46 |
  • Added preferences menu
  • 47 |
  • Sort downward or upward finished tasks
  • 48 |
  • Print tasks to paper
  • 49 |
  • Added some action shortcuts and help window
  • 50 |
51 |
52 |
53 | 54 | 55 |

Bug Fixes

56 |
    57 |
  • Fixed the issue where the task list is not saved on unexpected quit
  • 58 |
  • Fixed the issue where the window position and size are not saved on unexpected quit
  • 59 |
  • Added Ctrl-Q and Ctrl-W keyboard shortcuts for closing the window
  • 60 |
  • Packaged the app as a flatpak for elementary OS 6!
  • 61 |
  • Fixed some theme issues
  • 62 |
63 |
64 |
65 | 66 | 67 |

New features and polish

68 |
    69 |
  • Added Undo/Redo feature to save you from yourself
  • 70 |
  • Restored first-run message
  • 71 |
  • Tons of code refactoring for stability
  • 72 |
73 |
74 |
75 | 76 | 77 |

Visual updates and code fixes

78 |
    79 |
  • Tiny tweaks for a debut release on elementary OS 5.0
  • 80 |
81 |
82 |
83 | 84 | 85 |

Visual updates and code fixes

86 |
    87 |
  • Cleaned up the list icons to only show on hover or select
  • 88 |
  • Tweaks to the overall visual style.
  • 89 |
  • General code cleanup
  • 90 |
91 |
92 |
93 | 94 | 95 |

Small bugfixes and a new icon

96 |
    97 |
  • Updated the icon with a fresh new look (Thanks, Harvey)
  • 98 |
  • Pressing Esc no longer closes Agenda while editing a task
  • 99 |
  • Pressing Delete no longer crashes Agenda while editing a task
  • 100 |
  • Metadata installs to the correct folder
  • 101 |
102 |
103 |
104 | 105 | 106 |

Small Fixes

107 |
    108 |
  • Fixed style issues for dark and light variants
  • 109 |
  • Looks good, and feels good!
  • 110 |
111 |
112 |
113 |
114 | 115 | 116 | 3 117 | pk_live_ABkBJVNQ8dmHcOYBGYqJFVTj 118 | 119 |
120 | -------------------------------------------------------------------------------- /data/com.github.dahenson.agenda.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Name=Agenda 4 | Comment=Get things done 5 | GenericName=Task List 6 | Exec=com.github.dahenson.agenda 7 | Icon=com.github.dahenson.agenda 8 | Terminal=false 9 | X-GNOME-Gettext-Domain=agenda 10 | X-GNOME-UsesNotifications=true 11 | Categories=Utility;Office;ProjectManagement; 12 | Keywords=Todo;Tasks; 13 | -------------------------------------------------------------------------------- /data/com.github.dahenson.agenda.gresources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Agenda.css 5 | shortcuts.ui 6 | 7 | 8 | -------------------------------------------------------------------------------- /data/com.github.dahenson.agenda.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | [] 5 | Window position 6 | Window position (x and y). 7 | 8 | 9 | Window size 10 | Window size (width and height). 11 | [] 12 | 13 | 14 | First time usage 15 | Whether the application is used for the first time. 16 | true 17 | 18 | 19 | Printing font description 20 | The description of the font used for printing. 21 | "Sans 14" 22 | 23 | 24 | Sort completed tasks upward 25 | Whether the are sorted upward or downward. 26 | false 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | icon_sizes = ['16', '24', '32', '48', '64', '128'] 2 | 3 | foreach i : icon_sizes 4 | install_data( 5 | join_paths('icons', i, meson.project_name() + '.svg'), 6 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps') 7 | ) 8 | install_data( 9 | join_paths('icons', i, meson.project_name() + '.svg'), 10 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps') 11 | ) 12 | endforeach 13 | 14 | install_data( 15 | meson.project_name() + '.gschema.xml', 16 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas') 17 | ) 18 | 19 | i18n.merge_file( 20 | input: meson.project_name() + '.desktop.in', 21 | output: meson.project_name() + '.desktop', 22 | po_dir: join_paths(meson.project_source_root(), 'po', 'extra'), 23 | type: 'desktop', 24 | install: true, 25 | install_dir: join_paths(get_option('datadir'), 'applications') 26 | ) 27 | 28 | i18n.merge_file( 29 | input: meson.project_name() + '.appdata.xml.in', 30 | output: meson.project_name() + '.appdata.xml', 31 | po_dir: join_paths(meson.project_source_root(), 'po', 'extra'), 32 | install: true, 33 | install_dir: join_paths(get_option('datadir'), 'metainfo') 34 | ) 35 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahenson/agenda/d7c36f85651b8e5d7520ed7bae094137ca21a528/data/screenshot.png -------------------------------------------------------------------------------- /data/screenshot_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dahenson/agenda/d7c36f85651b8e5d7520ed7bae094137ca21a528/data/screenshot_welcome.png -------------------------------------------------------------------------------- /data/shortcuts.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Keyboard shortcuts 5 | true 6 | 7 | 8 | Shortcuts 9 | true 10 | 11 | 12 | Tasks 13 | true 14 | 15 | 16 | <ctrl>S 17 | Sort completed tasks 18 | true 19 | 20 | 21 | 22 | 23 | <ctrl>R 24 | Remove completed tasks 25 | true 26 | 27 | 28 | 29 | 30 | 31 | 32 | Editing 33 | true 34 | 35 | 36 | <ctrl>Z 37 | Undo task modification 38 | true 39 | 40 | 41 | 42 | 43 | <ctrl><shift>Z 44 | Redo task modification 45 | true 46 | 47 | 48 | 49 | 50 | 51 | 52 | Miscellaneous 53 | true 54 | 55 | 56 | <ctrl>P 57 | Print tasks list 58 | true 59 | 60 | 61 | 62 | 63 | <ctrl>W 64 | Close tasks window 65 | true 66 | 67 | 68 | 69 | 70 | Escape 71 | Quit application 72 | true 73 | 74 | 75 | 76 | 77 | <ctrl>H 78 | Show this help window 79 | true 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('com.github.dahenson.agenda', ['vala', 'c'], 2 | version: '1.2.0', 3 | meson_version: '>= 0.59.0' 4 | ) 5 | 6 | gnome = import('gnome') 7 | i18n = import('i18n') 8 | 9 | asresources = gnome.compile_resources( 10 | 'as-resources', 'data/com.github.dahenson.agenda.gresources.xml', 11 | source_dir: 'data', 12 | c_name: 'as' 13 | ) 14 | 15 | add_project_arguments(['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], language: 'vala') 16 | 17 | conf = configuration_data() 18 | conf.set_quoted('GETTEXT_PACKAGE', meson.project_name()) 19 | conf.set_quoted('VERSION', meson.project_version()) 20 | conf.set_quoted('PKGDATADIR', join_paths(get_option('datadir'), meson.project_name())) 21 | conf.set_quoted('PREFIX', get_option('prefix')) 22 | conf.set_quoted('APPNAME', meson.project_name()) 23 | configure_file(output: 'config.h', configuration: conf) 24 | config_h_dir = include_directories('.') 25 | 26 | vala_args = [ 27 | '--pkg', 'config' 28 | ] 29 | 30 | c_args = [ 31 | '-include', 'config.h' 32 | ] 33 | 34 | agenda_model_sources = files( 35 | 'src/Models/HistoryList.vala', 36 | 'src/Models/Task.vala', 37 | 'src/Models/TaskList.vala', 38 | 'src/Models/TaskListHistory.vala', 39 | ) 40 | 41 | agenda_client_sources = files( 42 | 'src/Agenda.vala', 43 | 'src/Window.vala', 44 | 'src/Prefs.vala', 45 | 'src/Widgets/TaskView.vala', 46 | 'src/Backend/BackendInterface.vala', 47 | 'src/Backend/FileBackend.vala', 48 | ) 49 | 50 | # dependencies 51 | glib = dependency('glib-2.0') 52 | gtk = dependency('gtk+-3.0') 53 | granite = dependency('granite') 54 | 55 | agenda_deps = [ 56 | glib, 57 | gtk, 58 | granite 59 | ] 60 | 61 | executable( 62 | meson.project_name(), 63 | agenda_client_sources + agenda_model_sources, 64 | asresources, 65 | vala_args: vala_args, 66 | c_args: c_args, 67 | dependencies: agenda_deps, 68 | install: true 69 | ) 70 | 71 | gnome.post_install( 72 | glib_compile_schemas: true, 73 | gtk_update_icon_cache: true, 74 | update_desktop_database: true 75 | ) 76 | 77 | subdir('data') 78 | subdir('po') 79 | subdir('test') 80 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | af 2 | ca 3 | da 4 | de 5 | el 6 | en_GB 7 | eo 8 | es 9 | et 10 | fi 11 | fr 12 | fr_CA 13 | gl 14 | he 15 | id 16 | it 17 | ja 18 | ka 19 | km 20 | ko 21 | la 22 | lt 23 | ms 24 | nb 25 | nl 26 | nn 27 | oc 28 | pl 29 | pt 30 | pt_BR 31 | ru 32 | sr 33 | sr@latin 34 | sv 35 | tr 36 | ug 37 | ur 38 | zh_CN 39 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Window.vala 2 | src/Prefs.vala 3 | data/shortcuts.ui 4 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | # Afrikaans translation for agenda-tasks 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-09-08 13:29+0000\n" 12 | "Last-Translator: Tristan B. Kildaire \n" 13 | "Language-Team: Afrikaans \n" 14 | "Language: af\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-09-09 06:25+0000\n" 19 | "X-Generator: Launchpad (build 18184)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | msgid "Tasks" 91 | msgstr "" 92 | 93 | #: data/shortcuts.ui:17 94 | msgid "Sort completed tasks" 95 | msgstr "" 96 | 97 | #: data/shortcuts.ui:24 98 | msgid "Remove completed tasks" 99 | msgstr "" 100 | 101 | #: data/shortcuts.ui:32 102 | msgid "Editing" 103 | msgstr "" 104 | 105 | #: data/shortcuts.ui:37 106 | msgid "Undo task modification" 107 | msgstr "" 108 | 109 | #: data/shortcuts.ui:44 110 | msgid "Redo task modification" 111 | msgstr "" 112 | 113 | #: data/shortcuts.ui:52 114 | msgid "Miscellaneous" 115 | msgstr "" 116 | 117 | #: data/shortcuts.ui:57 118 | msgid "Print tasks list" 119 | msgstr "" 120 | 121 | #: data/shortcuts.ui:64 122 | msgid "Close tasks window" 123 | msgstr "" 124 | 125 | #: data/shortcuts.ui:71 126 | msgid "Quit application" 127 | msgstr "" 128 | 129 | #: data/shortcuts.ui:78 130 | msgid "Show this help window" 131 | msgstr "" 132 | 133 | #, fuzzy 134 | #~ msgid "Agenda" 135 | #~ msgstr "Oor Agenda" 136 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- 1 | # Catalan translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-01-18 13:43+0000\n" 12 | "Last-Translator: Adolfo Jayme \n" 13 | "Language-Team: Catalan \n" 14 | "Language: ca\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Afegeix una tasca nova…" 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "No hi ha cap tasca." 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(afegeu una a continuació)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(camí a seguir)" 61 | 62 | #: src/Window.vala:179 63 | msgid "Add to list…" 64 | msgstr "" 65 | 66 | #: src/Window.vala:205 67 | msgid "Clear history" 68 | msgstr "" 69 | 70 | #: src/Prefs.vala:48 71 | msgid "Printing font" 72 | msgstr "" 73 | 74 | #: src/Prefs.vala:59 75 | msgid "Sort completed tasks upward" 76 | msgstr "" 77 | 78 | #: src/Prefs.vala:73 79 | msgid "Cancel" 80 | msgstr "" 81 | 82 | #: src/Prefs.vala:75 83 | msgid "OK" 84 | msgstr "" 85 | 86 | #: data/shortcuts.ui:4 87 | msgid "Keyboard shortcuts" 88 | msgstr "" 89 | 90 | #: data/shortcuts.ui:12 91 | #, fuzzy 92 | msgid "Tasks" 93 | msgstr "No hi ha cap tasca." 94 | 95 | #: data/shortcuts.ui:17 96 | msgid "Sort completed tasks" 97 | msgstr "" 98 | 99 | #: data/shortcuts.ui:24 100 | msgid "Remove completed tasks" 101 | msgstr "" 102 | 103 | #: data/shortcuts.ui:32 104 | msgid "Editing" 105 | msgstr "" 106 | 107 | #: data/shortcuts.ui:37 108 | msgid "Undo task modification" 109 | msgstr "" 110 | 111 | #: data/shortcuts.ui:44 112 | msgid "Redo task modification" 113 | msgstr "" 114 | 115 | #: data/shortcuts.ui:52 116 | msgid "Miscellaneous" 117 | msgstr "" 118 | 119 | #: data/shortcuts.ui:57 120 | msgid "Print tasks list" 121 | msgstr "" 122 | 123 | #: data/shortcuts.ui:64 124 | msgid "Close tasks window" 125 | msgstr "" 126 | 127 | #: data/shortcuts.ui:71 128 | msgid "Quit application" 129 | msgstr "" 130 | 131 | #: data/shortcuts.ui:78 132 | msgid "Show this help window" 133 | msgstr "" 134 | 135 | #, fuzzy 136 | #~ msgid "Agenda" 137 | #~ msgstr "Quant a l’Agenda" 138 | 139 | #~ msgid "Todo;Tasks;" 140 | #~ msgstr "Per fer;Tasques;" 141 | 142 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 143 | #~ msgstr "Un gestor de tasques fàcil d’utilitzar." 144 | 145 | #~ msgid "What's to be done" 146 | #~ msgstr "Pendents" 147 | -------------------------------------------------------------------------------- /po/com.github.dahenson.agenda.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 com.github.dahenson.agenda package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: com.github.dahenson.agenda\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2024-02-23 20:16+0100\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 | #: src/Window.vala:29 21 | msgid "Add a new task…" 22 | msgstr "" 23 | 24 | #: src/Window.vala:89 src/Prefs.vala:45 25 | msgid "Preferences" 26 | msgstr "" 27 | 28 | #: src/Window.vala:91 29 | msgid "Print task list" 30 | msgstr "" 31 | 32 | #: src/Window.vala:92 33 | msgid "Remove completed" 34 | msgstr "" 35 | 36 | #: src/Window.vala:93 37 | msgid "Sort completed" 38 | msgstr "" 39 | 40 | #: src/Window.vala:96 41 | msgid "Help" 42 | msgstr "" 43 | 44 | #: src/Window.vala:97 45 | msgid "_Quit" 46 | msgstr "" 47 | 48 | #: src/Window.vala:121 49 | msgid "No Tasks!" 50 | msgstr "" 51 | 52 | #: src/Window.vala:122 53 | msgid "(add one below)" 54 | msgstr "" 55 | 56 | #: src/Window.vala:122 57 | msgid "(way to go)" 58 | msgstr "" 59 | 60 | #: src/Window.vala:179 61 | msgid "Add to list…" 62 | msgstr "" 63 | 64 | #: src/Window.vala:205 65 | msgid "Clear history" 66 | msgstr "" 67 | 68 | #: src/Prefs.vala:48 69 | msgid "Printing font" 70 | msgstr "" 71 | 72 | #: src/Prefs.vala:59 73 | msgid "Sort completed tasks upward" 74 | msgstr "" 75 | 76 | #: src/Prefs.vala:73 77 | msgid "Cancel" 78 | msgstr "" 79 | 80 | #: src/Prefs.vala:75 81 | msgid "OK" 82 | msgstr "" 83 | 84 | #: data/shortcuts.ui:4 85 | msgid "Keyboard shortcuts" 86 | msgstr "" 87 | 88 | #: data/shortcuts.ui:12 89 | msgid "Tasks" 90 | msgstr "" 91 | 92 | #: data/shortcuts.ui:17 93 | msgid "Sort completed tasks" 94 | msgstr "" 95 | 96 | #: data/shortcuts.ui:24 97 | msgid "Remove completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:32 101 | msgid "Editing" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:37 105 | msgid "Undo task modification" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:44 109 | msgid "Redo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:52 113 | msgid "Miscellaneous" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:57 117 | msgid "Print tasks list" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:64 121 | msgid "Close tasks window" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:71 125 | msgid "Quit application" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:78 129 | msgid "Show this help window" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- 1 | # Danish translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-06-07 23:35+0000\n" 12 | "Last-Translator: Casper Christiansen \n" 13 | "Language-Team: Danish \n" 14 | "Language: da\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Ingen Opgaver!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(godt klaret)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Ingen Opgaver!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- 1 | # German translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-09-03 22:02+0000\n" 12 | "Last-Translator: Daniel \n" 13 | "Language-Team: German \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 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Neue Aufgabe hinzufügen..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Keine Aufgaben!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(unten hinzufügen)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(so soll's sein)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Zur Liste hinzufügen" 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Verlauf löschen" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Keine Aufgaben!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "Über Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Aufgabe erledigt" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Offenstehend;Aufgaben;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "" 149 | #~ "Ein einfacher, handlicher, schneller und nützlicher Aufgaben Verwalter." 150 | 151 | #~ msgid "What's to be done" 152 | #~ msgstr "Was noch getan werden muss" 153 | 154 | #~ msgid " tasks have been removed" 155 | #~ msgstr " Aufgaben wurden entfernt" 156 | 157 | #~ msgid "A task has been removed" 158 | #~ msgstr "Eine Aufgabe wurde entfernt" 159 | -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- 1 | # Greek translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-05-16 18:55+0000\n" 12 | "Last-Translator: Chris Triantafillis \n" 13 | "Language-Team: Greek \n" 14 | "Language: el\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Δεν υπάρχουν σημειώματα!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(σχεδόν τελειώσαμε)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Δεν υπάρχουν σημειώματα!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- 1 | # English (United Kingdom) translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-05-07 20:49+0000\n" 12 | "Last-Translator: Alfredo Hernández \n" 13 | "Language-Team: English (United Kingdom) \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "No Tasks!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(way to go)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "No Tasks!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- 1 | # Esperanto translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-02-04 13:07+0000\n" 12 | "Last-Translator: Michael Moroni \n" 13 | "Language-Team: Esperanto \n" 14 | "Language: eo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Neniu tasko!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Neniu tasko!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- 1 | # Spanish translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-05-04 12:07+0000\n" 12 | "Last-Translator: Cameron Norman \n" 13 | "Language-Team: Spanish \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 | "X-Launchpad-Export-Date: 2016-05-05 05:34+0000\n" 19 | "X-Generator: Launchpad (build 17995)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Añadir una nueva tarea…" 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "No hay tareas." 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(añada una más abajo)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(buen trabajo)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Añadir a la lista..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Borrar historial" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "No hay tareas." 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "Acerca de Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Tarea finalizada" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Por hacer;Tareas;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "" 149 | #~ "Un administrador de tareas simple, pulido, rápido y sin complicaciones." 150 | 151 | #~ msgid "What's to be done" 152 | #~ msgstr "Pendientes" 153 | 154 | #~ msgid " tasks have been removed" 155 | #~ msgstr " unas tareas han sido eliminadas" 156 | 157 | #~ msgid "A task has been removed" 158 | #~ msgstr "Una tarea ha sido eliminada" 159 | -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- 1 | # Estonian translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-01-11 18:04+0000\n" 12 | "Last-Translator: Cameron Norman \n" 13 | "Language-Team: Estonian \n" 14 | "Language: et\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Tubli!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "Ülesandeid pole" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Tubli!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | ja 2 | nl 3 | oc 4 | pl 5 | pt 6 | ru 7 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/com.github.dahenson.agenda.appdata.xml.in 2 | data/com.github.dahenson.agenda.desktop.in 3 | -------------------------------------------------------------------------------- /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: 2019-11-19 21:05+0900\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 | 20 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 21 | #: data/com.github.dahenson.agenda.desktop.in:4 22 | msgid "Agenda" 23 | msgstr "" 24 | 25 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 26 | #: data/com.github.dahenson.agenda.desktop.in:5 27 | msgid "Get things done" 28 | msgstr "" 29 | 30 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 31 | msgid "Dane Henson" 32 | msgstr "" 33 | 34 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 35 | msgid "A task manager to help you keep track of the tasks that matter most." 36 | msgstr "" 37 | 38 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 39 | msgid "" 40 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 41 | "a way to write down your tasks and tick them off as you complete them. The " 42 | "list is saved automatically, so you can close the list to get it out of the " 43 | "way without losing your place." 44 | msgstr "" 45 | 46 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 47 | msgid "Key Features:" 48 | msgstr "" 49 | 50 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 51 | msgid "Saves your task list automatically" 52 | msgstr "" 53 | 54 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 55 | msgid "See your completed tasks until you choose to delete them" 56 | msgstr "" 57 | 58 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 59 | msgid "Autocompletion for previously added tasks" 60 | msgstr "" 61 | 62 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 63 | msgid "Quit with the Esc key" 64 | msgstr "" 65 | 66 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 67 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 68 | msgid "Visual updates and code fixes" 69 | msgstr "" 70 | 71 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 72 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 73 | msgstr "" 74 | 75 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 76 | msgid "Cleaned up the list icons to only show on hover or select" 77 | msgstr "" 78 | 79 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 80 | msgid "Tweaks to the overall visual style." 81 | msgstr "" 82 | 83 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 84 | msgid "General code cleanup" 85 | msgstr "" 86 | 87 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 88 | msgid "Small bugfixes and a new icon" 89 | msgstr "" 90 | 91 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 92 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 93 | msgstr "" 94 | 95 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 96 | msgid "Pressing Esc no longer closes Agenda while editing a task" 97 | msgstr "" 98 | 99 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 100 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 101 | msgstr "" 102 | 103 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 104 | msgid "Metadata installs to the correct folder" 105 | msgstr "" 106 | 107 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 108 | msgid "Small Fixes" 109 | msgstr "" 110 | 111 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 112 | msgid "Fixed style issues for dark and light variants" 113 | msgstr "" 114 | 115 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 116 | msgid "Looks good, and feels good!" 117 | msgstr "" 118 | 119 | #: data/com.github.dahenson.agenda.desktop.in:6 120 | msgid "Task List" 121 | msgstr "" 122 | 123 | #: data/com.github.dahenson.agenda.desktop.in:8 124 | msgid "com.github.dahenson.agenda" 125 | msgstr "" 126 | 127 | #: data/com.github.dahenson.agenda.desktop.in:13 128 | msgid "Todo;Tasks;" 129 | msgstr "" 130 | -------------------------------------------------------------------------------- /po/extra/it.po: -------------------------------------------------------------------------------- 1 | # ITALIAN TRANSLATION FOR AGENDA. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # ALBANO BATTISTELLA , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-19 21:05+0900\n" 11 | "PO-Revision-Date: 2024-11-21 19:43+0100\n" 12 | "Last-Translator: Albano Battistella \n" 13 | "Language-Team: ITALIAN \n" 14 | "Language: it\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/com.github.dahenson.agenda.appdata.xml.in:7 20 | #: data/com.github.dahenson.agenda.desktop.in:4 21 | msgid "Agenda" 22 | msgstr "Agenda" 23 | 24 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 25 | #: data/com.github.dahenson.agenda.desktop.in:5 26 | msgid "Get things done" 27 | msgstr "Fare le cose" 28 | 29 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 30 | msgid "Dane Henson" 31 | msgstr "Dane Henson" 32 | 33 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 34 | msgid "A task manager to help you keep track of the tasks that matter most." 35 | msgstr "Un task manager per aiutarti a tenere traccia delle attività che contano di più." 36 | 37 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 38 | msgid "" 39 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 40 | "a way to write down your tasks and tick them off as you complete them. The " 41 | "list is saved automatically, so you can close the list to get it out of the " 42 | "way without losing your place." 43 | msgstr "" 44 | "A volte, hai solo bisogno di un elenco di attività per mantenerti motivato. Agenda fornisce " 45 | "un modo per annotare i tuoi compiti e spuntarli mentre li completi. " 46 | "L'elenco viene salvato automaticamente, quindi puoi chiudere l'elenco per estrarlo in " 47 | "modo senza perdere il tuo posto." 48 | 49 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 50 | msgid "Key Features:" 51 | msgstr "Caratteristiche principali:" 52 | 53 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 54 | msgid "Saves your task list automatically" 55 | msgstr "Salva automaticamente l'elenco delle attività" 56 | 57 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 58 | msgid "See your completed tasks until you choose to delete them" 59 | msgstr "Visualizza le tue attività completate finché non scegli di eliminarle" 60 | 61 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 62 | msgid "Autocompletion for previously added tasks" 63 | msgstr "Completamento automatico per attività aggiunte in precedenza" 64 | 65 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 66 | msgid "Quit with the Esc key" 67 | msgstr "Esci con il tasto Esc" 68 | 69 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 70 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 71 | msgid "Visual updates and code fixes" 72 | msgstr "Aggiornamenti visivi e correzioni del codice" 73 | 74 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 75 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 76 | msgstr "Piccole modifiche per una versione di debutto su elementary OS 5.0" 77 | 78 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 79 | msgid "Cleaned up the list icons to only show on hover or select" 80 | msgstr "Ripulite le icone dell'elenco per mostrarle solo al passaggio del mouse o selezionare" 81 | 82 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 83 | msgid "Tweaks to the overall visual style." 84 | msgstr "Modifiche allo stile visivo generale." 85 | 86 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 87 | msgid "General code cleanup" 88 | msgstr "Pulizia generale del codice" 89 | 90 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 91 | msgid "Small bugfixes and a new icon" 92 | msgstr "Piccole correzioni di bug e una nuova icona" 93 | 94 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 95 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 96 | msgstr "Aggiornata l'icona con un nuovo look (grazie, Harvey)" 97 | 98 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 99 | msgid "Pressing Esc no longer closes Agenda while editing a task" 100 | msgstr "Premendo Esc non si chiude più Agenda durante la modifica di un'attività" 101 | 102 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 103 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 104 | msgstr "Premendo Elimina non si blocca più Agenda durante la modifica di un'attività" 105 | 106 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 107 | msgid "Metadata installs to the correct folder" 108 | msgstr "I metadati vengono installati nella cartella corretta" 109 | 110 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 111 | msgid "Small Fixes" 112 | msgstr "Piccole correzioni" 113 | 114 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 115 | msgid "Fixed style issues for dark and light variants" 116 | msgstr "Risolti problemi di stile per le varianti scure e chiare" 117 | 118 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 119 | msgid "Looks good, and feels good!" 120 | msgstr "Ha un bell'aspetto e ti sente bene!" 121 | 122 | #: data/com.github.dahenson.agenda.desktop.in:6 123 | msgid "Task List" 124 | msgstr "Elenco Attività" 125 | 126 | #: data/com.github.dahenson.agenda.desktop.in:8 127 | msgid "com.github.dahenson.agenda" 128 | msgstr "com.github.dahenson.agenda" 129 | 130 | #: data/com.github.dahenson.agenda.desktop.in:13 131 | msgid "Todo;Tasks;" 132 | msgstr "cose da fare;compiti;" 133 | -------------------------------------------------------------------------------- /po/extra/ja.po: -------------------------------------------------------------------------------- 1 | # Japanese 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 | # Ryo Nakano , 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2020-02-07 21:48+0900\n" 11 | "PO-Revision-Date: 2020-02-08 07:56+0900\n" 12 | "Last-Translator: Ryo Nakano \n" 13 | "Language-Team: none\n" 14 | "Language: ja\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 | 20 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 21 | #: data/com.github.dahenson.agenda.desktop.in:4 22 | msgid "Agenda" 23 | msgstr "Agenda" 24 | 25 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 26 | #: data/com.github.dahenson.agenda.desktop.in:5 27 | msgid "Get things done" 28 | msgstr "タスクを完了しましょう" 29 | 30 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 31 | msgid "Dane Henson" 32 | msgstr "Dane Henson" 33 | 34 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 35 | msgid "A task manager to help you keep track of the tasks that matter most." 36 | msgstr "最も重要なタスクの記録に便利な、タスク管理アプリです。" 37 | 38 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 39 | msgid "" 40 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 41 | "a way to write down your tasks and tick them off as you complete them. The " 42 | "list is saved automatically, so you can close the list to get it out of the " 43 | "way without losing your place." 44 | msgstr "" 45 | "モチベーションを維持するために、タスクリストが必要なときはありませんか。" 46 | "Agenda を使えば、タスクを登録して、終わったらチェックマークをつけていくこと" 47 | "ができます。リストは自動的に保存されるので、最新の状態を失うことなくリストを" 48 | "閉じられます。" 49 | 50 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 51 | msgid "Key Features:" 52 | msgstr "主な機能:" 53 | 54 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 55 | msgid "Saves your task list automatically" 56 | msgstr "タスクリストを自動的に保存します" 57 | 58 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 59 | msgid "See your completed tasks until you choose to delete them" 60 | msgstr "完了したタスクは、削除しない限り確認できます" 61 | 62 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 63 | msgid "Autocompletion for previously added tasks" 64 | msgstr "以前に追加したタスクを自動補完します" 65 | 66 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 67 | msgid "Quit with the Esc key" 68 | msgstr "Esc キーで終了できます" 69 | 70 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 71 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 72 | msgid "Visual updates and code fixes" 73 | msgstr "" 74 | 75 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 76 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 77 | msgstr "" 78 | 79 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 80 | msgid "Cleaned up the list icons to only show on hover or select" 81 | msgstr "" 82 | 83 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 84 | msgid "Tweaks to the overall visual style." 85 | msgstr "" 86 | 87 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 88 | msgid "General code cleanup" 89 | msgstr "" 90 | 91 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 92 | msgid "Small bugfixes and a new icon" 93 | msgstr "" 94 | 95 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 96 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 97 | msgstr "" 98 | 99 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 100 | msgid "Pressing Esc no longer closes Agenda while editing a task" 101 | msgstr "" 102 | 103 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 104 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 105 | msgstr "" 106 | 107 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 108 | msgid "Metadata installs to the correct folder" 109 | msgstr "" 110 | 111 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 112 | msgid "Small Fixes" 113 | msgstr "" 114 | 115 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 116 | msgid "Fixed style issues for dark and light variants" 117 | msgstr "" 118 | 119 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 120 | msgid "Looks good, and feels good!" 121 | msgstr "" 122 | 123 | #: data/com.github.dahenson.agenda.desktop.in:6 124 | msgid "Task List" 125 | msgstr "タスクリスト" 126 | 127 | #: data/com.github.dahenson.agenda.desktop.in:8 128 | msgid "com.github.dahenson.agenda" 129 | msgstr "com.github.dahenson.agenda" 130 | 131 | #: data/com.github.dahenson.agenda.desktop.in:13 132 | msgid "Todo;Tasks;" 133 | msgstr "Todo;Tasks;やること;タスク;" 134 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: ['--directory='+meson.project_source_root(), '--from-code=UTF-8'], 3 | install: false 4 | ) 5 | -------------------------------------------------------------------------------- /po/extra/nl.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 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-19 21:05+0900\n" 11 | "PO-Revision-Date: 2021-04-05 18:39+0200\n" 12 | "Language-Team: \n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 2.4.2\n" 17 | "Last-Translator: Heimen Stoffels \n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "Language: nl\n" 20 | 21 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 22 | #: data/com.github.dahenson.agenda.desktop.in:4 23 | msgid "Agenda" 24 | msgstr "Agenda" 25 | 26 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 27 | #: data/com.github.dahenson.agenda.desktop.in:5 28 | msgid "Get things done" 29 | msgstr "Rond taken af" 30 | 31 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 32 | msgid "Dane Henson" 33 | msgstr "Dane Henson" 34 | 35 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 36 | msgid "A task manager to help you keep track of the tasks that matter most." 37 | msgstr "Een taakbeheerder die u helpt de belangrijkste taken bij te houden." 38 | 39 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 40 | msgid "" 41 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 42 | "a way to write down your tasks and tick them off as you complete them. The " 43 | "list is saved automatically, so you can close the list to get it out of the " 44 | "way without losing your place." 45 | msgstr "" 46 | "Soms heeft u een taak nodig om u bezig te houden. Agenda biedt de " 47 | "mogelijkheid uw taken te noteren en ze nadien af te vinken. De lijst wordt " 48 | "automatisch opgeslagen, dus u kunt de lijst sluiten zonder uw taken kwijt " 49 | "te raken." 50 | 51 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 52 | msgid "Key Features:" 53 | msgstr "Kenmerken:" 54 | 55 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 56 | msgid "Saves your task list automatically" 57 | msgstr "Slaat uw taken automatisch op" 58 | 59 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 60 | msgid "See your completed tasks until you choose to delete them" 61 | msgstr "Bekijk uw afgeronde taken totdat u besluit ze te verwijderen" 62 | 63 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 64 | msgid "Autocompletion for previously added tasks" 65 | msgstr "Taaknamen worden automatisch aangevuld" 66 | 67 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 68 | msgid "Quit with the Esc key" 69 | msgstr "Sluit af met de Esc-toets" 70 | 71 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 72 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 73 | msgid "Visual updates and code fixes" 74 | msgstr "Visuele en codeverbeteringen" 75 | 76 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 77 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 78 | msgstr "Kleine aanpassingen voor elementary OS 5.0" 79 | 80 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 81 | msgid "Cleaned up the list icons to only show on hover or select" 82 | msgstr "" 83 | "De lijstpictogrammen worden voortaan alleen getoond na aanwijzen of " 84 | "selecteren" 85 | 86 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 87 | msgid "Tweaks to the overall visual style." 88 | msgstr "Aanpassingen aan de visuele stijl." 89 | 90 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 91 | msgid "General code cleanup" 92 | msgstr "Algemene code-opruiming" 93 | 94 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 95 | msgid "Small bugfixes and a new icon" 96 | msgstr "Kleine foutoplossingen en een nieuw pictogram" 97 | 98 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 99 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 100 | msgstr "" 101 | "Pictogram bijgewerkt met een frisse, nieuwe stijl (met dan aan Harvey)" 102 | 103 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 104 | msgid "Pressing Esc no longer closes Agenda while editing a task" 105 | msgstr "" 106 | "Esc sluit voortaan Agenda niet meer af tijdens het bewerken van een taak" 107 | 108 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 109 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 110 | msgstr "" 111 | "Delete laat voortaan Agenda niet meer crashen tijdens het bewerken van een " 112 | "taak" 113 | 114 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 115 | msgid "Metadata installs to the correct folder" 116 | msgstr "Metagegevens worden voortaan in de juiste map geïnstalleerd" 117 | 118 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 119 | msgid "Small Fixes" 120 | msgstr "Kleine fouten opgelost" 121 | 122 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 123 | msgid "Fixed style issues for dark and light variants" 124 | msgstr "Stijlproblemen met lichte en donkere thema's opgelost" 125 | 126 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 127 | msgid "Looks good, and feels good!" 128 | msgstr "Ziet er goed uit werkt ook goed!" 129 | 130 | #: data/com.github.dahenson.agenda.desktop.in:6 131 | msgid "Task List" 132 | msgstr "Takenlijst" 133 | 134 | #: data/com.github.dahenson.agenda.desktop.in:8 135 | msgid "com.github.dahenson.agenda" 136 | msgstr "com.github.dahenson.agenda" 137 | 138 | #: data/com.github.dahenson.agenda.desktop.in:13 139 | msgid "Todo;Tasks;" 140 | msgstr "Taak;Taken;" 141 | -------------------------------------------------------------------------------- /po/extra/oc.po: -------------------------------------------------------------------------------- 1 | # Occitan translation file. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the extra package. 4 | # Quentin PAGÈS, 2024. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: extra\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2019-11-19 21:05+0900\n" 12 | "PO-Revision-Date: 2024-03-03 09:23+0100\n" 13 | "Last-Translator: Quentin PAGÈS\n" 14 | "Language-Team: \n" 15 | "Language: oc\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "X-Generator: Poedit 3.4.2\n" 20 | 21 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 22 | #: data/com.github.dahenson.agenda.desktop.in:4 23 | msgid "Agenda" 24 | msgstr "Agenda" 25 | 26 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 27 | #: data/com.github.dahenson.agenda.desktop.in:5 28 | msgid "Get things done" 29 | msgstr "Complissètz vòstres prètzfaches" 30 | 31 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 32 | msgid "Dane Henson" 33 | msgstr "Dane Henson" 34 | 35 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 36 | msgid "A task manager to help you keep track of the tasks that matter most." 37 | msgstr "" 38 | "Un gestionari de prètzfaches que vos ajudar a seguir los prètzfaches que " 39 | "mai impòrtan." 40 | 41 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 42 | msgid "" 43 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 44 | "a way to write down your tasks and tick them off as you complete them. The " 45 | "list is saved automatically, so you can close the list to get it out of the " 46 | "way without losing your place." 47 | msgstr "" 48 | 49 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 50 | msgid "Key Features:" 51 | msgstr "Caracteristicas principalas:" 52 | 53 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 54 | msgid "Saves your task list automatically" 55 | msgstr "" 56 | 57 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 58 | msgid "See your completed tasks until you choose to delete them" 59 | msgstr "" 60 | 61 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 62 | msgid "Autocompletion for previously added tasks" 63 | msgstr "" 64 | 65 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 66 | msgid "Quit with the Esc key" 67 | msgstr "" 68 | 69 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 70 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 71 | msgid "Visual updates and code fixes" 72 | msgstr "" 73 | 74 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 75 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 76 | msgstr "" 77 | 78 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 79 | msgid "Cleaned up the list icons to only show on hover or select" 80 | msgstr "" 81 | 82 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 83 | msgid "Tweaks to the overall visual style." 84 | msgstr "" 85 | 86 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 87 | msgid "General code cleanup" 88 | msgstr "" 89 | 90 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 91 | msgid "Small bugfixes and a new icon" 92 | msgstr "" 93 | 94 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 95 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 96 | msgstr "" 97 | 98 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 99 | msgid "Pressing Esc no longer closes Agenda while editing a task" 100 | msgstr "" 101 | 102 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 103 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 104 | msgstr "" 105 | 106 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 107 | msgid "Metadata installs to the correct folder" 108 | msgstr "" 109 | 110 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 111 | msgid "Small Fixes" 112 | msgstr "" 113 | 114 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 115 | msgid "Fixed style issues for dark and light variants" 116 | msgstr "" 117 | 118 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 119 | msgid "Looks good, and feels good!" 120 | msgstr "" 121 | 122 | #: data/com.github.dahenson.agenda.desktop.in:6 123 | msgid "Task List" 124 | msgstr "Lista de prètzfaches" 125 | 126 | #: data/com.github.dahenson.agenda.desktop.in:8 127 | msgid "com.github.dahenson.agenda" 128 | msgstr "com.github.dahenson.agenda" 129 | 130 | #: data/com.github.dahenson.agenda.desktop.in:13 131 | msgid "Todo;Tasks;" 132 | msgstr "Todo;Tasks;Prètzfach:Prètzfait;" 133 | -------------------------------------------------------------------------------- /po/extra/pl.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 | # 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: 2019-11-19 21:05+0900\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: pl\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/com.github.dahenson.agenda.appdata.xml.in:7 21 | #: data/com.github.dahenson.agenda.desktop.in:4 22 | msgid "Agenda" 23 | msgstr "" 24 | 25 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 26 | #: data/com.github.dahenson.agenda.desktop.in:5 27 | msgid "Get things done" 28 | msgstr "" 29 | 30 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 31 | msgid "Dane Henson" 32 | msgstr "" 33 | 34 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 35 | msgid "A task manager to help you keep track of the tasks that matter most." 36 | msgstr "" 37 | 38 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 39 | msgid "" 40 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 41 | "a way to write down your tasks and tick them off as you complete them. The " 42 | "list is saved automatically, so you can close the list to get it out of the " 43 | "way without losing your place." 44 | msgstr "" 45 | 46 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 47 | msgid "Key Features:" 48 | msgstr "" 49 | 50 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 51 | msgid "Saves your task list automatically" 52 | msgstr "" 53 | 54 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 55 | msgid "See your completed tasks until you choose to delete them" 56 | msgstr "" 57 | 58 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 59 | msgid "Autocompletion for previously added tasks" 60 | msgstr "" 61 | 62 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 63 | msgid "Quit with the Esc key" 64 | msgstr "" 65 | 66 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 67 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 68 | msgid "Visual updates and code fixes" 69 | msgstr "" 70 | 71 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 72 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 73 | msgstr "" 74 | 75 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 76 | msgid "Cleaned up the list icons to only show on hover or select" 77 | msgstr "" 78 | 79 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 80 | msgid "Tweaks to the overall visual style." 81 | msgstr "" 82 | 83 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 84 | msgid "General code cleanup" 85 | msgstr "" 86 | 87 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 88 | msgid "Small bugfixes and a new icon" 89 | msgstr "" 90 | 91 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 92 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 93 | msgstr "" 94 | 95 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 96 | msgid "Pressing Esc no longer closes Agenda while editing a task" 97 | msgstr "" 98 | 99 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 100 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 101 | msgstr "" 102 | 103 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 104 | msgid "Metadata installs to the correct folder" 105 | msgstr "" 106 | 107 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 108 | msgid "Small Fixes" 109 | msgstr "" 110 | 111 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 112 | msgid "Fixed style issues for dark and light variants" 113 | msgstr "" 114 | 115 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 116 | msgid "Looks good, and feels good!" 117 | msgstr "" 118 | 119 | #: data/com.github.dahenson.agenda.desktop.in:6 120 | msgid "Task List" 121 | msgstr "" 122 | 123 | #: data/com.github.dahenson.agenda.desktop.in:8 124 | msgid "com.github.dahenson.agenda" 125 | msgstr "" 126 | 127 | #: data/com.github.dahenson.agenda.desktop.in:13 128 | msgid "Todo;Tasks;" 129 | msgstr "Do zrobienia;Zadania;" 130 | -------------------------------------------------------------------------------- /po/extra/pt.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 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: extra\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2019-11-19 21:05+0900\n" 11 | "PO-Revision-Date: 2020-08-16 21:57+0100\n" 12 | "Language-Team: Portuguese\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "X-Generator: Poedit 2.4.1\n" 17 | "Last-Translator: André Barata \n" 18 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 19 | "Language: pt\n" 20 | 21 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 22 | #: data/com.github.dahenson.agenda.desktop.in:4 23 | msgid "Agenda" 24 | msgstr "Agenda" 25 | 26 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 27 | #: data/com.github.dahenson.agenda.desktop.in:5 28 | msgid "Get things done" 29 | msgstr "Faça as suas coisas" 30 | 31 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 32 | msgid "Dane Henson" 33 | msgstr "Dane Henson" 34 | 35 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 36 | msgid "A task manager to help you keep track of the tasks that matter most." 37 | msgstr "" 38 | "Um gestor de tarefas que o ajuda a manter o controle das tarefas que são " 39 | "mais importantes." 40 | 41 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 42 | msgid "" 43 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 44 | "a way to write down your tasks and tick them off as you complete them. The " 45 | "list is saved automatically, so you can close the list to get it out of the " 46 | "way without losing your place." 47 | msgstr "" 48 | "Às vezes, você só precisa precisa de uma lista de tarefas para o manter " 49 | "motivado. O Agenda proporciona uma forma de escrever as suas tarefas e ir " 50 | "assinalando aquelas que vai completando. A lista é gravada automaticamente, " 51 | "para que a possa fechar e tira-la do seu caminho sem que se perca." 52 | 53 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 54 | msgid "Key Features:" 55 | msgstr "Funcionalidades principais:" 56 | 57 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 58 | msgid "Saves your task list automatically" 59 | msgstr "Guarda a sua lista de tarefas automaticamente" 60 | 61 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 62 | msgid "See your completed tasks until you choose to delete them" 63 | msgstr "Veja as suas tarefas completadas até decidir apaga-las" 64 | 65 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 66 | msgid "Autocompletion for previously added tasks" 67 | msgstr "Preenchimento automático para tarefas adicionadas anteriormente" 68 | 69 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 70 | msgid "Quit with the Esc key" 71 | msgstr "Fechar com a tecla Esc" 72 | 73 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 74 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 75 | msgid "Visual updates and code fixes" 76 | msgstr "Atualizações visuais e correções de código" 77 | 78 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 79 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 80 | msgstr "Pequenos ajustes para um lançamento de depuração no Elementary OS 5.0" 81 | 82 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 83 | msgid "Cleaned up the list icons to only show on hover or select" 84 | msgstr "" 85 | "Lista de ícones limpa para somente a mostrar quando passa o rato ou ao " 86 | "selecionar" 87 | 88 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 89 | msgid "Tweaks to the overall visual style." 90 | msgstr "Ajustes gerais ao estilo visual." 91 | 92 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 93 | msgid "General code cleanup" 94 | msgstr "Correções gerais ao código" 95 | 96 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 97 | msgid "Small bugfixes and a new icon" 98 | msgstr "Pequenas correções e um novo ícone" 99 | 100 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 101 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 102 | msgstr "Atualização do ícone com um novo visual fresco (Obrigado, Harvey)" 103 | 104 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 105 | msgid "Pressing Esc no longer closes Agenda while editing a task" 106 | msgstr "" 107 | "Ao pressionar Esc já não fecha o Agenda enquanto está a editar uma tarefa" 108 | 109 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 110 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 111 | msgstr "" 112 | "Ao pressionar Delete já não bloqueia o Agenda enquanto está a editar uma " 113 | "tarefa" 114 | 115 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 116 | msgid "Metadata installs to the correct folder" 117 | msgstr "A metadata instala agora na pasta correta" 118 | 119 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 120 | msgid "Small Fixes" 121 | msgstr "Pequenas correções" 122 | 123 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 124 | msgid "Fixed style issues for dark and light variants" 125 | msgstr "Problemas de estilo corrigidos para as variantes escuro e claro" 126 | 127 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 128 | msgid "Looks good, and feels good!" 129 | msgstr "Parece bom e é bom!" 130 | 131 | #: data/com.github.dahenson.agenda.desktop.in:6 132 | msgid "Task List" 133 | msgstr "Lista de tarefas" 134 | 135 | #: data/com.github.dahenson.agenda.desktop.in:8 136 | msgid "com.github.dahenson.agenda" 137 | msgstr "com.github.dahenson.agenda" 138 | 139 | #: data/com.github.dahenson.agenda.desktop.in:13 140 | msgid "Todo;Tasks;" 141 | msgstr "Fazer;Tarefas;" 142 | -------------------------------------------------------------------------------- /po/extra/ru.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 | # 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: 2019-11-19 21:05+0900\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: nick87720z\n" 14 | "Language-Team: LANGUAGE \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 | 20 | #: data/com.github.dahenson.agenda.appdata.xml.in:7 21 | #: data/com.github.dahenson.agenda.desktop.in:4 22 | msgid "Agenda" 23 | msgstr "Повестка дня" 24 | 25 | #: data/com.github.dahenson.agenda.appdata.xml.in:8 26 | #: data/com.github.dahenson.agenda.desktop.in:5 27 | msgid "Get things done" 28 | msgstr "Довести до завершения" 29 | 30 | #: data/com.github.dahenson.agenda.appdata.xml.in:9 31 | msgid "Dane Henson" 32 | msgstr "" 33 | 34 | #: data/com.github.dahenson.agenda.appdata.xml.in:24 35 | msgid "A task manager to help you keep track of the tasks that matter most." 36 | msgstr "" 37 | 38 | #: data/com.github.dahenson.agenda.appdata.xml.in:27 39 | msgid "" 40 | "Sometimes, you just need a task list to keep you motivated. Agenda provides " 41 | "a way to write down your tasks and tick them off as you complete them. The " 42 | "list is saved automatically, so you can close the list to get it out of the " 43 | "way without losing your place." 44 | msgstr "" 45 | 46 | #: data/com.github.dahenson.agenda.appdata.xml.in:30 47 | msgid "Key Features:" 48 | msgstr "" 49 | 50 | #: data/com.github.dahenson.agenda.appdata.xml.in:32 51 | msgid "Saves your task list automatically" 52 | msgstr "" 53 | 54 | #: data/com.github.dahenson.agenda.appdata.xml.in:33 55 | msgid "See your completed tasks until you choose to delete them" 56 | msgstr "" 57 | 58 | #: data/com.github.dahenson.agenda.appdata.xml.in:34 59 | msgid "Autocompletion for previously added tasks" 60 | msgstr "" 61 | 62 | #: data/com.github.dahenson.agenda.appdata.xml.in:35 63 | msgid "Quit with the Esc key" 64 | msgstr "" 65 | 66 | #: data/com.github.dahenson.agenda.appdata.xml.in:42 67 | #: data/com.github.dahenson.agenda.appdata.xml.in:50 68 | msgid "Visual updates and code fixes" 69 | msgstr "" 70 | 71 | #: data/com.github.dahenson.agenda.appdata.xml.in:44 72 | msgid "Tiny tweaks for a debut release on elementary OS 5.0" 73 | msgstr "" 74 | 75 | #: data/com.github.dahenson.agenda.appdata.xml.in:52 76 | msgid "Cleaned up the list icons to only show on hover or select" 77 | msgstr "" 78 | 79 | #: data/com.github.dahenson.agenda.appdata.xml.in:53 80 | msgid "Tweaks to the overall visual style." 81 | msgstr "" 82 | 83 | #: data/com.github.dahenson.agenda.appdata.xml.in:54 84 | msgid "General code cleanup" 85 | msgstr "" 86 | 87 | #: data/com.github.dahenson.agenda.appdata.xml.in:60 88 | msgid "Small bugfixes and a new icon" 89 | msgstr "" 90 | 91 | #: data/com.github.dahenson.agenda.appdata.xml.in:62 92 | msgid "Updated the icon with a fresh new look (Thanks, Harvey)" 93 | msgstr "" 94 | 95 | #: data/com.github.dahenson.agenda.appdata.xml.in:63 96 | msgid "Pressing Esc no longer closes Agenda while editing a task" 97 | msgstr "" 98 | 99 | #: data/com.github.dahenson.agenda.appdata.xml.in:64 100 | msgid "Pressing Delete no longer crashes Agenda while editing a task" 101 | msgstr "" 102 | 103 | #: data/com.github.dahenson.agenda.appdata.xml.in:65 104 | msgid "Metadata installs to the correct folder" 105 | msgstr "" 106 | 107 | #: data/com.github.dahenson.agenda.appdata.xml.in:71 108 | msgid "Small Fixes" 109 | msgstr "" 110 | 111 | #: data/com.github.dahenson.agenda.appdata.xml.in:73 112 | msgid "Fixed style issues for dark and light variants" 113 | msgstr "" 114 | 115 | #: data/com.github.dahenson.agenda.appdata.xml.in:74 116 | msgid "Looks good, and feels good!" 117 | msgstr "" 118 | 119 | #: data/com.github.dahenson.agenda.desktop.in:6 120 | msgid "Task List" 121 | msgstr "Список задач" 122 | 123 | #: data/com.github.dahenson.agenda.desktop.in:8 124 | msgid "com.github.dahenson.agenda" 125 | msgstr "" 126 | 127 | #: data/com.github.dahenson.agenda.desktop.in:13 128 | msgid "Todo;Tasks;" 129 | msgstr "Выпонить;Задачи;Завершить;Сделать;" 130 | -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- 1 | # Finnish translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-08-13 19:22+0000\n" 12 | "Last-Translator: Jiri Grönroos \n" 13 | "Language-Team: Finnish \n" 14 | "Language: fi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Ei tehtäviä!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Ei tehtäviä!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- 1 | # French translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-02-21 20:50+0000\n" 12 | "Last-Translator: Jean-Marc \n" 13 | "Language-Team: French \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 | "X-Launchpad-Export-Date: 2016-02-22 05:52+0000\n" 19 | "X-Generator: Launchpad (build 17925)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "Ajouter une nouvelle tâche…" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "Préférences" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "Imprimer la liste des tâches" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "Retirer les terminées" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "Trier les terminées" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "Aide" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "_Quitter" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Aucune tâche !" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(en ajouter une ci-dessous)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(bien joué)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "Ajouter à la liste…" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "Effacer l'historique" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "Police d'impression" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "Trier les tâches terminées vers le haut" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "Annuler" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "Valider" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "Raccourcis clavier" 88 | 89 | #: data/shortcuts.ui:12 90 | msgid "Tasks" 91 | msgstr "Tâches" 92 | 93 | #: data/shortcuts.ui:17 94 | msgid "Sort completed tasks" 95 | msgstr "Trier les tâches terminées" 96 | 97 | #: data/shortcuts.ui:24 98 | msgid "Remove completed tasks" 99 | msgstr "Retirer les tâches terminées" 100 | 101 | #: data/shortcuts.ui:32 102 | msgid "Editing" 103 | msgstr "Édition" 104 | 105 | #: data/shortcuts.ui:37 106 | msgid "Undo task modification" 107 | msgstr "Défaire la modification" 108 | 109 | #: data/shortcuts.ui:44 110 | msgid "Redo task modification" 111 | msgstr "Refaire la modification" 112 | 113 | #: data/shortcuts.ui:52 114 | msgid "Miscellaneous" 115 | msgstr "Divers" 116 | 117 | #: data/shortcuts.ui:57 118 | msgid "Print tasks list" 119 | msgstr "Imprimer la liste des tâches" 120 | 121 | #: data/shortcuts.ui:64 122 | msgid "Close tasks window" 123 | msgstr "Fermer la fenêtre des tâches" 124 | 125 | #: data/shortcuts.ui:71 126 | msgid "Quit application" 127 | msgstr "Quitter l'application" 128 | 129 | #: data/shortcuts.ui:78 130 | msgid "Show this help window" 131 | msgstr "Montrer cette fenêtre d'aide" 132 | 133 | #~ msgid "Todo;Tasks;" 134 | #~ msgstr "À faire;Todo;Tâches" 135 | 136 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 137 | #~ msgstr "Un gestionnaire de tâches simple, rapide et élégant" 138 | 139 | #~ msgid "What's to be done" 140 | #~ msgstr "Ce qui doit être fait" 141 | 142 | #~ msgid " tasks have been removed" 143 | #~ msgstr " tâches qui ont été supprimées" 144 | 145 | #~ msgid "A task has been removed" 146 | #~ msgstr "Une tâche a été supprimée" 147 | -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- 1 | # French (Canada) translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-01-11 15:43+0000\n" 12 | "Last-Translator: Brendan William \n" 13 | "Language-Team: French (Canada) \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Pas de tâches!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(voie à suivre)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Pas de tâches!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- 1 | # Galician translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-08-13 23:59+0000\n" 12 | "Last-Translator: Jon Amil \n" 13 | "Language-Team: Galician \n" 14 | "Language: gl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Engadir unha tarefa nova..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Non hai tarefas." 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(engadir unha debaixo)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(camiño a seguir)" 61 | 62 | #: src/Window.vala:179 63 | msgid "Add to list…" 64 | msgstr "" 65 | 66 | #: src/Window.vala:205 67 | msgid "Clear history" 68 | msgstr "" 69 | 70 | #: src/Prefs.vala:48 71 | msgid "Printing font" 72 | msgstr "" 73 | 74 | #: src/Prefs.vala:59 75 | msgid "Sort completed tasks upward" 76 | msgstr "" 77 | 78 | #: src/Prefs.vala:73 79 | msgid "Cancel" 80 | msgstr "" 81 | 82 | #: src/Prefs.vala:75 83 | msgid "OK" 84 | msgstr "" 85 | 86 | #: data/shortcuts.ui:4 87 | msgid "Keyboard shortcuts" 88 | msgstr "" 89 | 90 | #: data/shortcuts.ui:12 91 | #, fuzzy 92 | msgid "Tasks" 93 | msgstr "Non hai tarefas." 94 | 95 | #: data/shortcuts.ui:17 96 | msgid "Sort completed tasks" 97 | msgstr "" 98 | 99 | #: data/shortcuts.ui:24 100 | msgid "Remove completed tasks" 101 | msgstr "" 102 | 103 | #: data/shortcuts.ui:32 104 | msgid "Editing" 105 | msgstr "" 106 | 107 | #: data/shortcuts.ui:37 108 | msgid "Undo task modification" 109 | msgstr "" 110 | 111 | #: data/shortcuts.ui:44 112 | msgid "Redo task modification" 113 | msgstr "" 114 | 115 | #: data/shortcuts.ui:52 116 | msgid "Miscellaneous" 117 | msgstr "" 118 | 119 | #: data/shortcuts.ui:57 120 | msgid "Print tasks list" 121 | msgstr "" 122 | 123 | #: data/shortcuts.ui:64 124 | msgid "Close tasks window" 125 | msgstr "" 126 | 127 | #: data/shortcuts.ui:71 128 | msgid "Quit application" 129 | msgstr "" 130 | 131 | #: data/shortcuts.ui:78 132 | msgid "Show this help window" 133 | msgstr "" 134 | 135 | #, fuzzy 136 | #~ msgid "Agenda" 137 | #~ msgstr "Acerca de Agenda" 138 | 139 | #, fuzzy 140 | #~ msgid "Task List" 141 | #~ msgstr "Tarefa concluída" 142 | 143 | #~ msgid "Todo;Tasks;" 144 | #~ msgstr "Facer;Tarefas;" 145 | 146 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 147 | #~ msgstr "Un xestor de tarefas pulido, sinxelo, rápido e sen complicacións." 148 | 149 | #~ msgid "What's to be done" 150 | #~ msgstr "Que é o que hai que facer" 151 | 152 | #~ msgid " tasks have been removed" 153 | #~ msgstr " tarefas foron eliminadas" 154 | 155 | #~ msgid "A task has been removed" 156 | #~ msgstr "Unha tarefa foi eliminada" 157 | -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- 1 | # Hebrew translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-04-01 11:53+0000\n" 12 | "Last-Translator: Megolas \n" 13 | "Language-Team: Hebrew \n" 14 | "Language: he\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "אין משימות!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "אין משימות!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- 1 | # Indonesian translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-07-28 08:06+0000\n" 12 | "Last-Translator: Viko Adi Rahmawan \n" 13 | "Language-Team: Indonesian \n" 14 | "Language: id\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Tak ada Tugas!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Tak ada Tugas!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- 1 | # Italian translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # ALBANO BATTISTELLA , 2021,2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2024-08-15 15:40+0100\n" 12 | "Last-Translator: Albano Battistella \n" 13 | "Language-Team: Italian \n" 14 | "Language: it\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "Aggiungi una nuova attività…" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "Preferenze" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "Stampa elenco attività" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "Rimuovi completato" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "Ordina completato" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "Aiuto" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "_Esci" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Nessuna attività!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(aggiungi qui sotto)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(sei sulla strada giusta)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "Aggiungi alla lista…" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "Cancella la cronologia" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "Carattere di stampa" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "Ordina verso l'alto le attività completate" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "Annulla" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "Ok" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "Scorciatoie da tastiera" 88 | 89 | #: data/shortcuts.ui:12 90 | msgid "Tasks" 91 | msgstr "Attività" 92 | 93 | #: data/shortcuts.ui:17 94 | msgid "Sort completed tasks" 95 | msgstr "Ordina le attività completate" 96 | 97 | #: data/shortcuts.ui:24 98 | msgid "Remove completed tasks" 99 | msgstr "Rimuovi le attività completate" 100 | 101 | #: data/shortcuts.ui:32 102 | msgid "Editing" 103 | msgstr "Modifica" 104 | 105 | #: data/shortcuts.ui:37 106 | msgid "Undo task modification" 107 | msgstr "Annulla modifica attività" 108 | 109 | #: data/shortcuts.ui:44 110 | msgid "Redo task modification" 111 | msgstr "Ripeti modifica attività" 112 | 113 | #: data/shortcuts.ui:52 114 | msgid "Miscellaneous" 115 | msgstr "Varie" 116 | 117 | #: data/shortcuts.ui:57 118 | msgid "Print tasks list" 119 | msgstr "Stampa elenco attività" 120 | 121 | #: data/shortcuts.ui:64 122 | msgid "Close tasks window" 123 | msgstr "Chiudi finestra attività" 124 | 125 | #: data/shortcuts.ui:71 126 | msgid "Quit application" 127 | msgstr "Esci dall'applicazione" 128 | 129 | #: data/shortcuts.ui:78 130 | msgid "Show this help window" 131 | msgstr "Mostra questa finestra di aiuto" 132 | 133 | #~ msgid "Agenda" 134 | #~ msgstr "Agenda" 135 | 136 | #~ msgid "Task List" 137 | #~ msgstr "Lista Attività" 138 | 139 | #~ msgid "Todo;Tasks;" 140 | #~ msgstr "Da fare;compiti;attività;" 141 | 142 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 143 | #~ msgstr "Un promemoria semplice, elegante, veloce e senza fronzoli." 144 | 145 | #~ msgid "What's to be done" 146 | #~ msgstr "Cosa c'è da fare" 147 | 148 | #~ msgid " tasks have been removed" 149 | #~ msgstr " attività sono state rimosse" 150 | 151 | #~ msgid "A task has been removed" 152 | #~ msgstr "Un'attività è stata rimossa" 153 | -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- 1 | # Japanese translations for com.github.dahenson.agenda package. 2 | # Copyright (C) 2020 THE com.github.dahenson.agenda'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.dahenson.agenda package. 4 | # Ryo Nakano , 2020, 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.dahenson.agenda\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2024-09-19 22:22+0900\n" 12 | "Last-Translator: Ryo Nakano \n" 13 | "Language-Team: none\n" 14 | "Language: ja\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 | 20 | #: src/Window.vala:29 21 | msgid "Add a new task…" 22 | msgstr "新しいタスクを追加…" 23 | 24 | #: src/Window.vala:89 src/Prefs.vala:45 25 | msgid "Preferences" 26 | msgstr "設定" 27 | 28 | #: src/Window.vala:91 29 | msgid "Print task list" 30 | msgstr "タスクリストを印刷" 31 | 32 | #: src/Window.vala:92 33 | msgid "Remove completed" 34 | msgstr "完了したタスクを削除" 35 | 36 | #: src/Window.vala:93 37 | msgid "Sort completed" 38 | msgstr "完了したタスクで並べ替え" 39 | 40 | #: src/Window.vala:96 41 | msgid "Help" 42 | msgstr "ヘルプ" 43 | 44 | #: src/Window.vala:97 45 | msgid "_Quit" 46 | msgstr "終了(_Q)" 47 | 48 | #: src/Window.vala:121 49 | msgid "No Tasks!" 50 | msgstr "タスクがありません!" 51 | 52 | #: src/Window.vala:122 53 | msgid "(add one below)" 54 | msgstr "(下で追加してください)" 55 | 56 | #: src/Window.vala:122 57 | msgid "(way to go)" 58 | msgstr "(その調子)" 59 | 60 | #: src/Window.vala:179 61 | msgid "Add to list…" 62 | msgstr "リストに追加…" 63 | 64 | #: src/Window.vala:205 65 | msgid "Clear history" 66 | msgstr "履歴を消去" 67 | 68 | #: src/Prefs.vala:48 69 | msgid "Printing font" 70 | msgstr "印刷用のフォント" 71 | 72 | #: src/Prefs.vala:59 73 | msgid "Sort completed tasks upward" 74 | msgstr "完了したタスクを上に並べる" 75 | 76 | #: src/Prefs.vala:73 77 | msgid "Cancel" 78 | msgstr "キャンセル" 79 | 80 | #: src/Prefs.vala:75 81 | msgid "OK" 82 | msgstr "OK" 83 | 84 | #: data/shortcuts.ui:4 85 | msgid "Keyboard shortcuts" 86 | msgstr "キーボードショートカット" 87 | 88 | #: data/shortcuts.ui:12 89 | msgid "Tasks" 90 | msgstr "タスク" 91 | 92 | #: data/shortcuts.ui:17 93 | msgid "Sort completed tasks" 94 | msgstr "完了したタスクで並べ替える" 95 | 96 | #: data/shortcuts.ui:24 97 | msgid "Remove completed tasks" 98 | msgstr "完了したタスクを削除する" 99 | 100 | #: data/shortcuts.ui:32 101 | msgid "Editing" 102 | msgstr "編集" 103 | 104 | #: data/shortcuts.ui:37 105 | msgid "Undo task modification" 106 | msgstr "タスクの変更を元に戻す" 107 | 108 | #: data/shortcuts.ui:44 109 | msgid "Redo task modification" 110 | msgstr "タスクの変更をやり直す" 111 | 112 | #: data/shortcuts.ui:52 113 | msgid "Miscellaneous" 114 | msgstr "その他" 115 | 116 | #: data/shortcuts.ui:57 117 | msgid "Print tasks list" 118 | msgstr "タスクリストを印刷する" 119 | 120 | #: data/shortcuts.ui:64 121 | msgid "Close tasks window" 122 | msgstr "タスクウィンドウを閉じる" 123 | 124 | #: data/shortcuts.ui:71 125 | msgid "Quit application" 126 | msgstr "アプリケーションを終了する" 127 | 128 | #: data/shortcuts.ui:78 129 | msgid "Show this help window" 130 | msgstr "このヘルプウィンドウを表示する" 131 | -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- 1 | # Georgian translation for agenda-tasks 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-11-17 19:46+0000\n" 12 | "Last-Translator: Beqa Arabuli \n" 13 | "Language-Team: Georgian \n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "ახალი დავალების დამატება..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "დავალებები არაა!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(დაამატე ქვემოდან)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(ეგრე უნდა)" 61 | 62 | #: src/Window.vala:179 63 | msgid "Add to list…" 64 | msgstr "" 65 | 66 | #: src/Window.vala:205 67 | msgid "Clear history" 68 | msgstr "" 69 | 70 | #: src/Prefs.vala:48 71 | msgid "Printing font" 72 | msgstr "" 73 | 74 | #: src/Prefs.vala:59 75 | msgid "Sort completed tasks upward" 76 | msgstr "" 77 | 78 | #: src/Prefs.vala:73 79 | msgid "Cancel" 80 | msgstr "" 81 | 82 | #: src/Prefs.vala:75 83 | msgid "OK" 84 | msgstr "" 85 | 86 | #: data/shortcuts.ui:4 87 | msgid "Keyboard shortcuts" 88 | msgstr "" 89 | 90 | #: data/shortcuts.ui:12 91 | #, fuzzy 92 | msgid "Tasks" 93 | msgstr "დავალებები არაა!" 94 | 95 | #: data/shortcuts.ui:17 96 | msgid "Sort completed tasks" 97 | msgstr "" 98 | 99 | #: data/shortcuts.ui:24 100 | msgid "Remove completed tasks" 101 | msgstr "" 102 | 103 | #: data/shortcuts.ui:32 104 | msgid "Editing" 105 | msgstr "" 106 | 107 | #: data/shortcuts.ui:37 108 | msgid "Undo task modification" 109 | msgstr "" 110 | 111 | #: data/shortcuts.ui:44 112 | msgid "Redo task modification" 113 | msgstr "" 114 | 115 | #: data/shortcuts.ui:52 116 | msgid "Miscellaneous" 117 | msgstr "" 118 | 119 | #: data/shortcuts.ui:57 120 | msgid "Print tasks list" 121 | msgstr "" 122 | 123 | #: data/shortcuts.ui:64 124 | msgid "Close tasks window" 125 | msgstr "" 126 | 127 | #: data/shortcuts.ui:71 128 | msgid "Quit application" 129 | msgstr "" 130 | 131 | #: data/shortcuts.ui:78 132 | msgid "Show this help window" 133 | msgstr "" 134 | 135 | #, fuzzy 136 | #~ msgid "Agenda" 137 | #~ msgstr "Agenda-ს შესახებ" 138 | 139 | #, fuzzy 140 | #~ msgid "Task List" 141 | #~ msgstr "დავალება დასრულებულია" 142 | 143 | #~ msgid "Todo;Tasks;" 144 | #~ msgstr "გასაკეთებელი;დავალებები;" 145 | 146 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 147 | #~ msgstr "" 148 | #~ "მარტივი, მოხერხებული, სწრაფი დავალებების მმართველი ყოველგვარი უაზრობების " 149 | #~ "გარეშე." 150 | 151 | #~ msgid "What's to be done" 152 | #~ msgstr "რაც გასაკეთებელია" 153 | 154 | #~ msgid " tasks have been removed" 155 | #~ msgstr " დავალება წაიშალა" 156 | 157 | #~ msgid "A task has been removed" 158 | #~ msgstr "დავალება წაიშალა" 159 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | # Khmer translation for agenda-tasks 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-04-13 08:42+0000\n" 12 | "Last-Translator: Sovichet \n" 13 | "Language-Team: Khmer \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "គ្មាន​កិច្ចការ!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(អបអរសាទរ)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "គ្មាន​កិច្ចការ!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- 1 | # Korean translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2017-01-20 04:04+0000\n" 12 | "Last-Translator: MinSik CHO \n" 13 | "Language-Team: Korean \n" 14 | "Language: ko\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2017-01-21 06:43+0000\n" 19 | "X-Generator: Launchpad (build 18302)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "새 할 일 추가하기..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "할 일이 없습니다!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(아래에 추가)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(추후 추가 예정)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "리스트에 추가..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "기록 삭제" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "할 일이 없습니다!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "어젠다에 대해서" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "작업 완료" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "할 일;일정;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "간단하고 미려한 일정 관리자" 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "곧 해야 할 일" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " 개의 작업이 제거되었습니다." 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "한 개의 작업이 제거되었습니다." 158 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | # Latin translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-02-21 16:41+0000\n" 12 | "Last-Translator: Mikael Hiort af Ornäs \n" 13 | "Language-Team: Latin \n" 14 | "Language: la\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Nullae res propositae!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(bene factum)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Nullae res propositae!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- 1 | # Lithuanian translation for agenda-tasks 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-08-04 12:42+0000\n" 12 | "Last-Translator: Moo \n" 13 | "Language-Team: Lithuanian \n" 14 | "Language: lt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-08-05 05:38+0000\n" 19 | "X-Generator: Launchpad (build 18169)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Pridėti naują užduotį..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Nėra užduočių!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(pridėkite jas žemiau)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(taip ir toliau)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Pridėti į sąrašą..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Išvalyti istoriją" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Nėra užduočių!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "Apie Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Užduotis baigta" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Atlikti;Užduotys;Užduotis;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "Paprasta, vikri, greita, dalykiška užduočių tvarkytuvė." 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "Kas turi būti atlikta" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " užduočių buvo pašalinta" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "Užduotis buvo pašalinta" 158 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: ['--directory='+meson.project_source_root(), '--from-code=UTF-8'] 3 | ) 4 | 5 | subdir('extra') 6 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-09-22 07:21+0000\n" 12 | "Last-Translator: abuyop \n" 13 | "Language-Team: Malay \n" 14 | "Language: ms\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Tambah tugas baharu..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Tiada Tugas!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(satu satu di bawah)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(lagi)" 61 | 62 | #: src/Window.vala:179 63 | msgid "Add to list…" 64 | msgstr "" 65 | 66 | #: src/Window.vala:205 67 | msgid "Clear history" 68 | msgstr "" 69 | 70 | #: src/Prefs.vala:48 71 | msgid "Printing font" 72 | msgstr "" 73 | 74 | #: src/Prefs.vala:59 75 | msgid "Sort completed tasks upward" 76 | msgstr "" 77 | 78 | #: src/Prefs.vala:73 79 | msgid "Cancel" 80 | msgstr "" 81 | 82 | #: src/Prefs.vala:75 83 | msgid "OK" 84 | msgstr "" 85 | 86 | #: data/shortcuts.ui:4 87 | msgid "Keyboard shortcuts" 88 | msgstr "" 89 | 90 | #: data/shortcuts.ui:12 91 | #, fuzzy 92 | msgid "Tasks" 93 | msgstr "Tiada Tugas!" 94 | 95 | #: data/shortcuts.ui:17 96 | msgid "Sort completed tasks" 97 | msgstr "" 98 | 99 | #: data/shortcuts.ui:24 100 | msgid "Remove completed tasks" 101 | msgstr "" 102 | 103 | #: data/shortcuts.ui:32 104 | msgid "Editing" 105 | msgstr "" 106 | 107 | #: data/shortcuts.ui:37 108 | msgid "Undo task modification" 109 | msgstr "" 110 | 111 | #: data/shortcuts.ui:44 112 | msgid "Redo task modification" 113 | msgstr "" 114 | 115 | #: data/shortcuts.ui:52 116 | msgid "Miscellaneous" 117 | msgstr "" 118 | 119 | #: data/shortcuts.ui:57 120 | msgid "Print tasks list" 121 | msgstr "" 122 | 123 | #: data/shortcuts.ui:64 124 | msgid "Close tasks window" 125 | msgstr "" 126 | 127 | #: data/shortcuts.ui:71 128 | msgid "Quit application" 129 | msgstr "" 130 | 131 | #: data/shortcuts.ui:78 132 | msgid "Show this help window" 133 | msgstr "" 134 | 135 | #, fuzzy 136 | #~ msgid "Agenda" 137 | #~ msgstr "Perihal Agenda" 138 | 139 | #, fuzzy 140 | #~ msgid "Task List" 141 | #~ msgstr "Tugas selesai" 142 | 143 | #~ msgid "Todo;Tasks;" 144 | #~ msgstr "Todo;Tugas;" 145 | 146 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 147 | #~ msgstr "Pengurus tugas yang ringkas dan pantas." 148 | 149 | #~ msgid "What's to be done" 150 | #~ msgstr "Perkara yang perlu diselesaikan" 151 | 152 | #~ msgid " tasks have been removed" 153 | #~ msgstr " tugas telah dibuang" 154 | 155 | #~ msgid "A task has been removed" 156 | #~ msgstr "Satu tugas telah dibuang" 157 | -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- 1 | # Norwegian Bokmal translation for agenda-tasks 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-03-31 13:08+0000\n" 12 | "Last-Translator: Magnus Meyer Hustveit \n" 13 | "Language-Team: Norwegian Bokmal \n" 14 | "Language: nb\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Ingen oppgaver!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(bra jobba)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Ingen oppgaver!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/nl.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 com.github.dahenson.agenda package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.dahenson.agenda\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2021-04-05 18:32+0200\n" 12 | "Last-Translator: Heimen Stoffels \n" 13 | "Language-Team: \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 | "X-Generator: Poedit 2.4.2\n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "Taak toevoegen…" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Geen taken!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(voeg er hieronder één toe)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(ga zo door)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "Toevoegen aan lijst…" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "Geschiedenis wissen" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Geen taken!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- 1 | # Norwegian Nynorsk translation for agenda-tasks 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2014-10-20 20:39+0000\n" 12 | "Last-Translator: Martin Myrvold \n" 13 | "Language-Team: Norwegian Nynorsk \n" 14 | "Language: nn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Ingen oppgåver!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(legg til ei nedanfor)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(bra jobba)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Ingen oppgåver!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- 1 | # Occitan translation file. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.dahenson.agenda package. 4 | # Quentin PAGÈS, 2023. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: com.github.dahenson.agenda\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 12 | "PO-Revision-Date: 2024-03-03 00:26+0100\n" 13 | "Last-Translator: Quentin PAGÈS\n" 14 | "Language-Team: \n" 15 | "Language: oc\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | "X-Generator: Poedit 3.4.2\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "Apondre un prètzfach novèl…" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "Preferéncias" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "Imprimir la lista de prètzfach" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "Supression terminada" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "Triada terminada" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "Ajuda" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "_Quitar" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Cap de prètzfach !" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(ajustatz-ne un çai-jos)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(coma cal)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "Ajustar a la lista…" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "Escafar l’istoric" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "Polissa d’impression" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "Triar los prètzfaches per òrdre creissent" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "Anullar" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "D'acòrdi" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "Acorchis clavièr" 88 | 89 | #: data/shortcuts.ui:12 90 | msgid "Tasks" 91 | msgstr "Prètzfaches" 92 | 93 | #: data/shortcuts.ui:17 94 | msgid "Sort completed tasks" 95 | msgstr "Triar los prètzfaches acabats" 96 | 97 | #: data/shortcuts.ui:24 98 | msgid "Remove completed tasks" 99 | msgstr "Suprimir los prètzfaches acabats" 100 | 101 | #: data/shortcuts.ui:32 102 | msgid "Editing" 103 | msgstr "Edicion" 104 | 105 | #: data/shortcuts.ui:37 106 | msgid "Undo task modification" 107 | msgstr "Desfar las modificacion del prètzfach" 108 | 109 | #: data/shortcuts.ui:44 110 | msgid "Redo task modification" 111 | msgstr "Refar las modificacion del prètzfach" 112 | 113 | #: data/shortcuts.ui:52 114 | msgid "Miscellaneous" 115 | msgstr "Divèrs" 116 | 117 | #: data/shortcuts.ui:57 118 | msgid "Print tasks list" 119 | msgstr "Imprimir la lista de prètzfaches" 120 | 121 | #: data/shortcuts.ui:64 122 | msgid "Close tasks window" 123 | msgstr "Tampar la fenèstra de prètzfaches" 124 | 125 | #: data/shortcuts.ui:71 126 | msgid "Quit application" 127 | msgstr "Quitar l’aplicacion" 128 | 129 | #: data/shortcuts.ui:78 130 | msgid "Show this help window" 131 | msgstr "Mostrar aquesta fenèstra d’ajuda" 132 | -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- 1 | # Polish translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-02-01 09:45+0000\n" 12 | "Last-Translator: Piotr Strębski \n" 13 | "Language-Team: Polish \n" 14 | "Language: pl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-02-02 05:39+0000\n" 19 | "X-Generator: Launchpad (build 17908)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Dodaj nowe zadanie…" 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Brak zadań!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(dodaj jakieś poniżej)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(tak trzymaj)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Dodaj do listy…" 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Wyczyść historię" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Brak zadań!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "O programie Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Zadanie zakończone" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Todo;Zadania;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "Prosty, gładki, szybki i niebezsensowny menedżer zadań." 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "Co należy zrobić" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " zadania zostały usunięte" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "Zadanie zostało usunięte" 158 | -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2020-08-16 21:32+0100\n" 12 | "Last-Translator: André Barata \n" 13 | "Language-Team: Portuguese \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 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Poedit 2.4.1\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "Adicione uma nova tarefa…" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Nenhuma tarefa!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "(adicione uma em baixo)" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(assim mesmo)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "Adicionar à lista…" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "Limpar história" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Nenhuma tarefa!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Brazilian Portuguese translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2017-02-23 20:16+0000\n" 12 | "Last-Translator: Vaguiner Gonzalez \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "Language: pt_BR\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2017-02-25 05:56+0000\n" 19 | "X-Generator: Launchpad (build 18328)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Adicione nova tarefa..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Sem tarefas!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(e uma abaixo)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(modo de ir)" 61 | 62 | #: src/Window.vala:179 63 | msgid "Add to list…" 64 | msgstr "" 65 | 66 | #: src/Window.vala:205 67 | msgid "Clear history" 68 | msgstr "Limpar histórico" 69 | 70 | #: src/Prefs.vala:48 71 | msgid "Printing font" 72 | msgstr "" 73 | 74 | #: src/Prefs.vala:59 75 | msgid "Sort completed tasks upward" 76 | msgstr "" 77 | 78 | #: src/Prefs.vala:73 79 | msgid "Cancel" 80 | msgstr "" 81 | 82 | #: src/Prefs.vala:75 83 | msgid "OK" 84 | msgstr "" 85 | 86 | #: data/shortcuts.ui:4 87 | msgid "Keyboard shortcuts" 88 | msgstr "" 89 | 90 | #: data/shortcuts.ui:12 91 | #, fuzzy 92 | msgid "Tasks" 93 | msgstr "Sem tarefas!" 94 | 95 | #: data/shortcuts.ui:17 96 | msgid "Sort completed tasks" 97 | msgstr "" 98 | 99 | #: data/shortcuts.ui:24 100 | msgid "Remove completed tasks" 101 | msgstr "" 102 | 103 | #: data/shortcuts.ui:32 104 | msgid "Editing" 105 | msgstr "" 106 | 107 | #: data/shortcuts.ui:37 108 | msgid "Undo task modification" 109 | msgstr "" 110 | 111 | #: data/shortcuts.ui:44 112 | msgid "Redo task modification" 113 | msgstr "" 114 | 115 | #: data/shortcuts.ui:52 116 | msgid "Miscellaneous" 117 | msgstr "" 118 | 119 | #: data/shortcuts.ui:57 120 | msgid "Print tasks list" 121 | msgstr "" 122 | 123 | #: data/shortcuts.ui:64 124 | msgid "Close tasks window" 125 | msgstr "" 126 | 127 | #: data/shortcuts.ui:71 128 | msgid "Quit application" 129 | msgstr "" 130 | 131 | #: data/shortcuts.ui:78 132 | msgid "Show this help window" 133 | msgstr "" 134 | 135 | #, fuzzy 136 | #~ msgid "Agenda" 137 | #~ msgstr "Sobre Agenda" 138 | 139 | #, fuzzy 140 | #~ msgid "Task List" 141 | #~ msgstr "Tarefa concluída" 142 | 143 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 144 | #~ msgstr "Um gestor de tarefas simples, liso, rápido e sem falhas." 145 | 146 | #~ msgid "What's to be done" 147 | #~ msgstr "O que há para ser feito" 148 | 149 | #~ msgid " tasks have been removed" 150 | #~ msgstr " tarefas foram removidas" 151 | 152 | #~ msgid "A task has been removed" 153 | #~ msgstr "Uma tarefa foi removida" 154 | -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- 1 | # Russian translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-03-29 14:38+0000\n" 12 | "Last-Translator: Eugene Marshal \n" 13 | "Language-Team: Russian \n" 14 | "Language: ru\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-03-30 06:13+0000\n" 19 | "X-Generator: Launchpad (build 17967)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Создать новую задачу..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Задачи отсутствуют!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(добавить один ниже)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(хорошая работа)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Добавить в список..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Очистить журнал" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Задачи отсутствуют!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "Сведения о Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Задание завершено" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Задачи;Планы" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "Простой и быстрый менеджер задач" 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "Намеченные задачи" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " задач было удалено" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "Задача была удалена" 158 | -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- 1 | # Serbian translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-12-18 09:05+0000\n" 12 | "Last-Translator: Мирослав Николић \n" 13 | "Language-Team: Serbian \n" 14 | "Language: sr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-12-19 05:27+0000\n" 19 | "X-Generator: Launchpad (build 18298)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Додај нови задатак..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Нема задатака!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(додајте један испод)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(куда да се иде)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Додај на списак..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Очисти историјат" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Нема задатака!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "О Агенди" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Задатак је обављен" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Урадити;Задаци;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "Једноставан, гладак, брз и без којештарија управник задатака." 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "Шта ће бити урађено" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " задатка су уклоњена" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "Задатак је уклоњен" 158 | -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- 1 | # Serbian Latin translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-07-03 21:59+0000\n" 12 | "Last-Translator: Иван Благојевић \n" 13 | "Language-Team: Serbian Latin \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Nema zadataka!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(way to go)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Nema zadataka!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for agenda-tasks 2 | # Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2013. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2013-02-21 16:16+0000\n" 12 | "Last-Translator: Mikael Hiort af Ornäs \n" 13 | "Language-Team: Swedish \n" 14 | "Language: sv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "Inga uppgifter!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(bra gjort)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "Inga uppgifter!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-04-15 15:52+0000\n" 12 | "Last-Translator: Melih Güçlü \n" 13 | "Language-Team: Turkish \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 | "X-Launchpad-Export-Date: 2016-04-16 05:41+0000\n" 19 | "X-Generator: Launchpad (build 17995)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "Yeni bir görev ekle..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "Görev yok!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(aşagıdan bir tane ekleyin)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "helal olsun" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "Listeye ekle..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "Geçmişi temizle" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "Görev yok!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "Ajanda Hakkında" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "Görev tamamlandı" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Yapılacaklar;Görevler;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "Basit, şık, hızlı ve zırvalıksız görev yöneticisi" 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "Yapılacak bir şey mi var?" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " görev tamamlandı" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "Görev tamamlandı" 158 | -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- 1 | # Uyghur translation for agenda-tasks 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2015-10-24 12:36+0000\n" 12 | "Last-Translator: Eltikin \n" 13 | "Language-Team: Uyghur \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-01-26 05:28+0000\n" 19 | "X-Generator: Launchpad (build 17902)\n" 20 | 21 | #: src/Window.vala:29 22 | msgid "Add a new task…" 23 | msgstr "" 24 | 25 | #: src/Window.vala:89 src/Prefs.vala:45 26 | msgid "Preferences" 27 | msgstr "" 28 | 29 | #: src/Window.vala:91 30 | msgid "Print task list" 31 | msgstr "" 32 | 33 | #: src/Window.vala:92 34 | msgid "Remove completed" 35 | msgstr "" 36 | 37 | #: src/Window.vala:93 38 | msgid "Sort completed" 39 | msgstr "" 40 | 41 | #: src/Window.vala:96 42 | msgid "Help" 43 | msgstr "" 44 | 45 | #: src/Window.vala:97 46 | msgid "_Quit" 47 | msgstr "" 48 | 49 | #: src/Window.vala:121 50 | msgid "No Tasks!" 51 | msgstr "ۋەزىپە يوق!" 52 | 53 | #: src/Window.vala:122 54 | msgid "(add one below)" 55 | msgstr "" 56 | 57 | #: src/Window.vala:122 58 | msgid "(way to go)" 59 | msgstr "(غەيرەت قىلىڭ)" 60 | 61 | #: src/Window.vala:179 62 | msgid "Add to list…" 63 | msgstr "" 64 | 65 | #: src/Window.vala:205 66 | msgid "Clear history" 67 | msgstr "" 68 | 69 | #: src/Prefs.vala:48 70 | msgid "Printing font" 71 | msgstr "" 72 | 73 | #: src/Prefs.vala:59 74 | msgid "Sort completed tasks upward" 75 | msgstr "" 76 | 77 | #: src/Prefs.vala:73 78 | msgid "Cancel" 79 | msgstr "" 80 | 81 | #: src/Prefs.vala:75 82 | msgid "OK" 83 | msgstr "" 84 | 85 | #: data/shortcuts.ui:4 86 | msgid "Keyboard shortcuts" 87 | msgstr "" 88 | 89 | #: data/shortcuts.ui:12 90 | #, fuzzy 91 | msgid "Tasks" 92 | msgstr "ۋەزىپە يوق!" 93 | 94 | #: data/shortcuts.ui:17 95 | msgid "Sort completed tasks" 96 | msgstr "" 97 | 98 | #: data/shortcuts.ui:24 99 | msgid "Remove completed tasks" 100 | msgstr "" 101 | 102 | #: data/shortcuts.ui:32 103 | msgid "Editing" 104 | msgstr "" 105 | 106 | #: data/shortcuts.ui:37 107 | msgid "Undo task modification" 108 | msgstr "" 109 | 110 | #: data/shortcuts.ui:44 111 | msgid "Redo task modification" 112 | msgstr "" 113 | 114 | #: data/shortcuts.ui:52 115 | msgid "Miscellaneous" 116 | msgstr "" 117 | 118 | #: data/shortcuts.ui:57 119 | msgid "Print tasks list" 120 | msgstr "" 121 | 122 | #: data/shortcuts.ui:64 123 | msgid "Close tasks window" 124 | msgstr "" 125 | 126 | #: data/shortcuts.ui:71 127 | msgid "Quit application" 128 | msgstr "" 129 | 130 | #: data/shortcuts.ui:78 131 | msgid "Show this help window" 132 | msgstr "" 133 | 134 | #, fuzzy 135 | #~ msgid "Task List" 136 | #~ msgstr "ۋەزىپە ئۇرۇنلىنىپ بولدى" 137 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | # Urdu translation for agenda-tasks 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-10-16 11:24+0000\n" 12 | "Last-Translator: Waqar Ahmed \n" 13 | "Language-Team: Urdu \n" 14 | "Language: ur\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-10-17 06:47+0000\n" 19 | "X-Generator: Launchpad (build 18232)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "ایک نیا کام شامل کریں ..." 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "کوئی کام نہیں!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(نیچے ایک کو شامل کریں)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "فہرست میں شامل کریں..." 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "ہسٹری صاف کریں" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "کوئی کام نہیں!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "ایجچڈا کے بارے میں" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "کام مکمل ہو گیا" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "ہونے والے کام؛ ٹاسک؛ کام" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "ایک سادہ، ہوشیار، فوری اور سیداہ سادہ ٹاسک مینیجر." 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "کیا ہونے والا ہے" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " کام ہٹا دیے گئے" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "ایک کام ہٹا دیا گیا" 158 | -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Chinese (Simplified) translation for agenda-tasks 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the agenda-tasks package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: agenda-tasks\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2024-02-23 20:16+0100\n" 11 | "PO-Revision-Date: 2016-02-24 22:54+0000\n" 12 | "Last-Translator: Mingye Wang \n" 13 | "Language-Team: Chinese (Simplified) \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2016-02-25 05:17+0000\n" 19 | "X-Generator: Launchpad (build 17925)\n" 20 | 21 | #: src/Window.vala:29 22 | #, fuzzy 23 | msgid "Add a new task…" 24 | msgstr "新增任务…" 25 | 26 | #: src/Window.vala:89 src/Prefs.vala:45 27 | msgid "Preferences" 28 | msgstr "" 29 | 30 | #: src/Window.vala:91 31 | msgid "Print task list" 32 | msgstr "" 33 | 34 | #: src/Window.vala:92 35 | msgid "Remove completed" 36 | msgstr "" 37 | 38 | #: src/Window.vala:93 39 | msgid "Sort completed" 40 | msgstr "" 41 | 42 | #: src/Window.vala:96 43 | msgid "Help" 44 | msgstr "" 45 | 46 | #: src/Window.vala:97 47 | msgid "_Quit" 48 | msgstr "" 49 | 50 | #: src/Window.vala:121 51 | msgid "No Tasks!" 52 | msgstr "无任务!" 53 | 54 | #: src/Window.vala:122 55 | msgid "(add one below)" 56 | msgstr "(在下面加入一个)" 57 | 58 | #: src/Window.vala:122 59 | msgid "(way to go)" 60 | msgstr "(加油)" 61 | 62 | #: src/Window.vala:179 63 | #, fuzzy 64 | msgid "Add to list…" 65 | msgstr "加入列表…" 66 | 67 | #: src/Window.vala:205 68 | msgid "Clear history" 69 | msgstr "清除历史" 70 | 71 | #: src/Prefs.vala:48 72 | msgid "Printing font" 73 | msgstr "" 74 | 75 | #: src/Prefs.vala:59 76 | msgid "Sort completed tasks upward" 77 | msgstr "" 78 | 79 | #: src/Prefs.vala:73 80 | msgid "Cancel" 81 | msgstr "" 82 | 83 | #: src/Prefs.vala:75 84 | msgid "OK" 85 | msgstr "" 86 | 87 | #: data/shortcuts.ui:4 88 | msgid "Keyboard shortcuts" 89 | msgstr "" 90 | 91 | #: data/shortcuts.ui:12 92 | #, fuzzy 93 | msgid "Tasks" 94 | msgstr "无任务!" 95 | 96 | #: data/shortcuts.ui:17 97 | msgid "Sort completed tasks" 98 | msgstr "" 99 | 100 | #: data/shortcuts.ui:24 101 | msgid "Remove completed tasks" 102 | msgstr "" 103 | 104 | #: data/shortcuts.ui:32 105 | msgid "Editing" 106 | msgstr "" 107 | 108 | #: data/shortcuts.ui:37 109 | msgid "Undo task modification" 110 | msgstr "" 111 | 112 | #: data/shortcuts.ui:44 113 | msgid "Redo task modification" 114 | msgstr "" 115 | 116 | #: data/shortcuts.ui:52 117 | msgid "Miscellaneous" 118 | msgstr "" 119 | 120 | #: data/shortcuts.ui:57 121 | msgid "Print tasks list" 122 | msgstr "" 123 | 124 | #: data/shortcuts.ui:64 125 | msgid "Close tasks window" 126 | msgstr "" 127 | 128 | #: data/shortcuts.ui:71 129 | msgid "Quit application" 130 | msgstr "" 131 | 132 | #: data/shortcuts.ui:78 133 | msgid "Show this help window" 134 | msgstr "" 135 | 136 | #, fuzzy 137 | #~ msgid "Agenda" 138 | #~ msgstr "关于 Agenda" 139 | 140 | #, fuzzy 141 | #~ msgid "Task List" 142 | #~ msgstr "任务已完成" 143 | 144 | #~ msgid "Todo;Tasks;" 145 | #~ msgstr "Todo;Tasks;待办;事项;" 146 | 147 | #~ msgid "A simple, slick, speedy and no-nonsense task manager." 148 | #~ msgstr "简单流畅、快速不脑残的任务规划管理器。" 149 | 150 | #~ msgid "What's to be done" 151 | #~ msgstr "还要做什么" 152 | 153 | #~ msgid " tasks have been removed" 154 | #~ msgstr " 个任务已被移除" 155 | 156 | #~ msgid "A task has been removed" 157 | #~ msgstr "一个任务已被移除" 158 | -------------------------------------------------------------------------------- /src/Agenda.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2021 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | using Gtk; 23 | using Granite; 24 | 25 | namespace Agenda { 26 | 27 | public class Agenda : Gtk.Application { 28 | public static GLib.Settings settings; 29 | private static Agenda app; 30 | private AgendaWindow window = null; 31 | 32 | static construct { 33 | settings = new GLib.Settings ("com.github.dahenson.agenda"); 34 | } 35 | 36 | public Agenda () { 37 | Object (application_id: Build.APPNAME == "agenda" ? null : Build.APPNAME, 38 | flags: ApplicationFlags.FLAGS_NONE); 39 | } 40 | 41 | protected override void activate () { 42 | if (window != null) { 43 | window.present (); 44 | return; 45 | } 46 | 47 | /* follow system drak/light theme */ 48 | var granite_settings = Granite.Settings.get_default (); 49 | var gtk_settings = Gtk.Settings.get_default (); 50 | gtk_settings.gtk_application_prefer_dark_theme = 51 | granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK; 52 | granite_settings.notify["prefers-color-scheme"].connect (() => { 53 | gtk_settings.gtk_application_prefer_dark_theme = 54 | granite_settings.prefers_color_scheme == Granite.Settings.ColorScheme.DARK; 55 | }); 56 | 57 | window = new AgendaWindow (this); 58 | window.delete_event.connect (window.main_quit); 59 | window.show_all (); 60 | window.update (); 61 | 62 | if (elementary_stylesheet ()) { 63 | var elementary_provider = new Gtk.CssProvider (); 64 | elementary_provider.load_from_resource ( 65 | "com/github/dahenson/agenda/Agenda.css"); 66 | Gtk.StyleContext.add_provider_for_screen ( 67 | Gdk.Screen.get_default (), 68 | elementary_provider, 69 | Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); 70 | } 71 | } 72 | 73 | public static Agenda get_instance () { 74 | if (app == null) { 75 | app = new Agenda (); 76 | } 77 | 78 | return app; 79 | } 80 | 81 | public static int main (string[] args) { 82 | Intl.setlocale (GLib.LocaleCategory.ALL, ""); 83 | Intl.bindtextdomain (Build.APPNAME, Build.PREFIX + "/share/locale"); 84 | Intl.textdomain (Build.APPNAME); 85 | 86 | app = new Agenda (); 87 | 88 | if (args.length == 2 && args[1] == "-s") { 89 | return 0; 90 | } 91 | 92 | return app.run (args); 93 | } 94 | 95 | public static bool elementary_stylesheet () { 96 | return Gtk.Settings.get_default ().gtk_theme_name.contains 97 | ("elementary"); 98 | } 99 | } 100 | } 101 | -------------------------------------------------------------------------------- /src/Backend/BackendInterface.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | public interface Backend : GLib.Object { 24 | public abstract Task[] load_tasks (); 25 | public abstract string[] load_history (); 26 | public abstract void save_tasks (Task[] tasks); 27 | public abstract void save_history (string[] history); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Backend/FileBackend.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2021 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | public class FileBackend : GLib.Object, Backend { 24 | 25 | private File task_file; 26 | private File history_file; 27 | 28 | public FileBackend () { 29 | string user_data = Environment.get_user_data_dir (); 30 | 31 | File dir = File.new_for_path (user_data).get_child ("agenda"); 32 | 33 | try { 34 | dir.make_directory_with_parents (); 35 | } catch (Error e) { 36 | if (e is IOError.EXISTS) { 37 | info ("%s", e.message); 38 | } else { 39 | error ("Could not access or create directory '%s'.", 40 | dir.get_path ()); 41 | } 42 | } 43 | 44 | task_file = dir.get_child ("tasks"); 45 | history_file = dir.get_child ("history"); 46 | } 47 | 48 | public string[] load_history () { 49 | string[] history = {}; 50 | 51 | try { 52 | string line; 53 | var file_input_stream = history_file.read (); 54 | var f_dis = new DataInputStream (file_input_stream); 55 | 56 | while ((line = f_dis.read_line (null)) != null) { 57 | history += line; 58 | } 59 | } catch (Error e) { 60 | if (e is IOError.NOT_FOUND) { 61 | info ("%s", e.message); 62 | } else { 63 | error ("%s", e.message); 64 | } 65 | } 66 | 67 | return history; 68 | } 69 | 70 | public Task[] load_tasks () { 71 | Task[] tasks = {}; 72 | 73 | try { 74 | string line; 75 | var file_input_stream = task_file.read (); 76 | var f_dis = new DataInputStream (file_input_stream); 77 | 78 | while ((line = f_dis.read_line (null)) != null) { 79 | var task_line = line.split (",", 2); 80 | Task task = new Task (); 81 | task.text = task_line[1]; 82 | 83 | if (task_line[0] == "t") { 84 | task.complete = true; 85 | } else { 86 | task.complete = false; 87 | } 88 | tasks += task; 89 | } 90 | } catch (Error e) { 91 | if (e is IOError.NOT_FOUND) { 92 | info ("%s", e.message); 93 | } else { 94 | error ("%s", e.message); 95 | } 96 | } 97 | 98 | return tasks; 99 | } 100 | 101 | public void save_history (string[] history) { 102 | save_to_file (history, history_file); 103 | } 104 | 105 | public void save_tasks (Task[] tasks) { 106 | string[] lines = {}; 107 | 108 | foreach (Task task in tasks) { 109 | lines += task.to_string (); 110 | } 111 | 112 | save_to_file (lines, task_file); 113 | } 114 | 115 | private void save_to_file (string[] lines, File file) { 116 | try { 117 | var file_fos = file.replace (null, false, FileCreateFlags.NONE); 118 | var file_dos = new DataOutputStream (file_fos); 119 | foreach (string line in lines) { 120 | file_dos.put_string (line + "\n"); 121 | } 122 | } catch (Error e) { 123 | error ("Error: %s\n", e.message); 124 | } 125 | } 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /src/Models/HistoryList.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | 24 | public class HistoryList : Gtk.ListStore { 25 | 26 | construct { 27 | Type[] types = { typeof (string) }; 28 | set_column_types (types); 29 | } 30 | 31 | public void add_item (string text) { 32 | Gtk.TreeIter iter; 33 | string row; 34 | bool valid = get_iter_first (out iter); 35 | 36 | if (valid == false) { 37 | append (out iter); 38 | set (iter, 0, text); 39 | } else { 40 | while (valid) { 41 | get (iter, 0, out row); 42 | if (row == text) { 43 | #if VALA_0_36 44 | remove (ref iter); 45 | #else 46 | remove (iter); 47 | #endif 48 | } 49 | 50 | valid = iter_next (ref iter); 51 | } 52 | 53 | append (out iter); 54 | set (iter, 0, text); 55 | } 56 | } 57 | 58 | /** 59 | * Gets all tasks in the list 60 | * 61 | * @return Array of items from the list 62 | */ 63 | public string[] get_all_tasks () { 64 | Gtk.TreeIter iter; 65 | bool valid = get_iter_first (out iter); 66 | 67 | string[] items = {}; 68 | 69 | while (valid) { 70 | string text; 71 | get (iter, 0, out text); 72 | items += text; 73 | valid = iter_next (ref iter); 74 | } 75 | 76 | return items; 77 | } 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /src/Models/Task.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | 24 | public class Task : GLib.Object { 25 | public string id { get; set; default = ""; } 26 | public bool complete { get; set; default = false; } 27 | public string text { get; set; default = ""; } 28 | 29 | public Task () { 30 | } 31 | 32 | public Task.with_attributes (string id, bool complete, string text) { 33 | Object ( 34 | id: id, 35 | complete: complete, 36 | text: text); 37 | } 38 | 39 | public string to_string () { 40 | string str; 41 | 42 | if (this.complete) { 43 | str = "t," + this.text; 44 | } else { 45 | str = "f," + this.text; 46 | } 47 | 48 | return str; 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /src/Models/TaskListHistory.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | 24 | public class TaskListHistory : GLib.Object { 25 | 26 | private Gee.LinkedList list; 27 | private Gee.BidirListIterator iter; 28 | 29 | construct { 30 | list = new Gee.LinkedList (); 31 | iter = list.bidir_list_iterator (); 32 | } 33 | 34 | public int size { 35 | public get { return list.size; } 36 | } 37 | 38 | public int index { 39 | public get { return iter.index (); } 40 | } 41 | 42 | public void add (TaskList state) { 43 | if (iter.has_next ()) { 44 | var temp_list = list.slice (0, iter.index () + 1); 45 | list.retain_all (temp_list); 46 | } 47 | 48 | TaskList current_state = state.copy (); 49 | 50 | list.add (current_state); 51 | iter = list.bidir_list_iterator (); 52 | iter.last (); 53 | } 54 | 55 | public TaskList? get_next_state () { 56 | if (iter.next ()) { 57 | return iter.@get (); 58 | } else { 59 | return null; 60 | } 61 | } 62 | 63 | public TaskList? get_previous_state () { 64 | if (iter.previous ()) { 65 | var state = iter.@get (); 66 | return state; 67 | } else { 68 | return null; 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/Prefs.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2021 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | namespace Agenda { 23 | 24 | public class PrefsWindow : Gtk.Window { 25 | public static GLib.Settings settings; 26 | Gtk.FontButton font_button; 27 | Gtk.Switch sort_switch; 28 | 29 | public PrefsWindow (AgendaWindow win) { 30 | Object (); 31 | 32 | settings = new GLib.Settings (Build.APPNAME); 33 | 34 | this.set_transient_for (win); 35 | this.set_modal (true); 36 | 37 | var header = new Gtk.HeaderBar (); 38 | header.get_style_context ().add_class ("titlebar"); 39 | this.set_titlebar (header); 40 | 41 | setup_ui (); 42 | } 43 | 44 | private void setup_ui () { 45 | this.set_title (_("Preferences")); 46 | 47 | var font_hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 2); 48 | Gtk.Label font_label = new Gtk.Label (_("Printing font")); 49 | font_label.hexpand = true; 50 | 51 | this.font_button = new Gtk.FontButton (); 52 | font_button.set_font (settings.get_string ("print-font-description")); 53 | 54 | font_hbox.spacing = 6; 55 | font_hbox.add (font_label); 56 | font_hbox.add (font_button); 57 | 58 | var sort_hbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 2); 59 | Gtk.Label sort_label = new Gtk.Label (_("Sort completed tasks upward")); 60 | sort_label.hexpand = true; 61 | 62 | this.sort_switch = new Gtk.Switch (); 63 | sort_switch.set_active (settings.get_boolean ("sort-completed-upward")); 64 | 65 | sort_hbox.spacing = 6; 66 | sort_hbox.add (sort_label); 67 | sort_hbox.add (sort_switch); 68 | 69 | var buttonbox = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 2); 70 | buttonbox.homogeneous = true; 71 | buttonbox.hexpand = true; 72 | 73 | Gtk.Button cancel = new Gtk.Button.with_label (_("Cancel")); 74 | cancel.halign = Gtk.Align.START; 75 | Gtk.Button ok = new Gtk.Button.with_label (_("OK")); 76 | ok.halign = Gtk.Align.END; 77 | 78 | buttonbox.add (cancel); 79 | buttonbox.add (ok); 80 | 81 | var vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 3); 82 | vbox.spacing = 6; 83 | vbox.margin = 6; 84 | vbox.add (font_hbox); 85 | vbox.add (sort_hbox); 86 | vbox.add (buttonbox); 87 | 88 | ok.clicked.connect (this.on_ok); 89 | cancel.clicked.connect (this.on_cancel); 90 | this.add (vbox); 91 | } 92 | 93 | void on_ok () { 94 | settings.set_string ("print-font-description", font_button.get_font ()); 95 | settings.set_boolean ("sort-completed-upward", sort_switch.get_active ()); 96 | this.destroy (); 97 | } 98 | 99 | void on_cancel () { 100 | this.destroy (); 101 | } 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /test/TestCase.vala: -------------------------------------------------------------------------------- 1 | /* testcase.vala 2 | * 3 | * Copyright (C) 2009 Julien Peeters 4 | * 5 | * This library is free software; you can redistribute it and/or 6 | * modify it under the terms of the GNU Lesser General Public 7 | * License as published by the Free Software Foundation; either 8 | * version 2.1 of the License, or (at your option) any later version. 9 | * This library 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 | * Lesser General Public License for more details. 13 | * You should have received a copy of the GNU Lesser General Public 14 | * License along with this library; if not, write to the Free Software 15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 16 | * 17 | * Author: 18 | * Julien Peeters 19 | */ 20 | 21 | public abstract class Gee.TestCase : Object { 22 | 23 | private GLib.TestSuite suite; 24 | private Adaptor[] adaptors = new Adaptor[0]; 25 | 26 | public delegate void TestMethod (); 27 | 28 | protected TestCase (string name) { 29 | this.suite = new GLib.TestSuite (name); 30 | } 31 | 32 | public void add_test (string name, owned TestMethod test) { 33 | var adaptor = new Adaptor (name, (owned)test, this); 34 | this.adaptors += adaptor; 35 | 36 | this.suite.add (new GLib.TestCase (adaptor.name, 37 | adaptor.set_up, 38 | adaptor.run, 39 | adaptor.tear_down )); 40 | } 41 | 42 | public virtual void set_up () { 43 | } 44 | 45 | public virtual void tear_down () { 46 | } 47 | 48 | public GLib.TestSuite get_suite () { 49 | return this.suite; 50 | } 51 | 52 | private class Adaptor { 53 | [CCode (notify = false)] 54 | public string name { get; private set; } 55 | private TestMethod test; 56 | private TestCase test_case; 57 | 58 | public Adaptor (string name, 59 | owned TestMethod test, 60 | TestCase test_case) { 61 | this.name = name; 62 | this.test = (owned)test; 63 | this.test_case = test_case; 64 | } 65 | 66 | public void set_up (void* fixture) { 67 | this.test_case.set_up (); 68 | } 69 | 70 | public void run (void* fixture) { 71 | this.test (); 72 | } 73 | 74 | public void tear_down (void* fixture) { 75 | this.test_case.tear_down (); 76 | } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /test/TestTask.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | using Agenda; 23 | 24 | public class TaskTests : Gee.TestCase { 25 | 26 | private Agenda.Task test_task; 27 | 28 | public TaskTests () { 29 | base ("Agenda"); 30 | add_test ("[Task] test construction", test_construction); 31 | add_test ("[Task] test to_string", test_to_string); 32 | } 33 | 34 | public override void set_up () { 35 | test_task = new Agenda.Task (); 36 | } 37 | 38 | public override void tear_down () { 39 | test_task = null; 40 | } 41 | 42 | public void test_construction () { 43 | assert (test_task.id == ""); 44 | assert (test_task.complete == false); 45 | assert (test_task.text == ""); 46 | 47 | test_task = new Agenda.Task.with_attributes ("foo", true, "bar"); 48 | assert (test_task.id == "foo"); 49 | assert (test_task.complete == true); 50 | assert (test_task.text == "bar"); 51 | } 52 | 53 | public void test_to_string () { 54 | assert (test_task.to_string () == "f," + test_task.text); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /test/TestTaskListHistory.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | using Agenda; 23 | 24 | public class TaskListHistoryTests : Gee.TestCase { 25 | 26 | private TaskListHistory test_list; 27 | private TaskList list; 28 | private Agenda.Task test_task_1; 29 | private Agenda.Task test_task_2; 30 | 31 | public TaskListHistoryTests () { 32 | base ("Agenda"); 33 | add_test ("[TaskListHistory] test add", test_add); 34 | add_test ("[TaskListHistory] test get_previous_state", 35 | test_get_previous_state); 36 | add_test ("[TaskListHistory] test get_next_state", 37 | test_get_next_state); 38 | } 39 | 40 | public override void set_up () { 41 | test_list = new TaskListHistory (); 42 | list = new TaskList (); 43 | 44 | test_task_1 = new Agenda.Task.with_attributes ("1", false, "foo"); 45 | test_task_2 = new Agenda.Task.with_attributes ("2", true, "bar"); 46 | } 47 | 48 | public override void tear_down () { 49 | test_list = null; 50 | list = null; 51 | } 52 | 53 | public void test_add () { 54 | assert (test_list.size == 0); 55 | 56 | test_list.add (list); 57 | test_list.add (list); 58 | 59 | assert (test_list.size == 2); 60 | } 61 | 62 | public void test_get_previous_state () { 63 | assert (test_list.get_previous_state () == null); 64 | 65 | test_list.add (list); 66 | 67 | list.append_task (test_task_1); 68 | test_list.add (list); 69 | 70 | list.append_task (test_task_2); 71 | test_list.add (list); 72 | 73 | assert (test_list.size == 3); 74 | 75 | var one_task = test_list.get_previous_state (); 76 | assert (one_task.size == 1); 77 | 78 | assert (test_list.get_previous_state () != null); 79 | assert (test_list.get_previous_state () == null); 80 | assert (test_list.size == 3); 81 | } 82 | 83 | public void test_get_next_state () { 84 | assert (test_list.get_next_state () == null); 85 | 86 | test_list.add (list); 87 | test_list.add (list); 88 | test_list.add (list); 89 | assert (test_list.size == 3); 90 | 91 | test_list.get_previous_state (); 92 | test_list.get_previous_state (); 93 | 94 | assert (test_list.get_next_state () != null); 95 | assert (test_list.size == 3); 96 | 97 | test_list.get_previous_state (); 98 | test_list.add (list); 99 | assert (test_list.size == 2); 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /test/TestTaskListHistoryMain.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | void main (string[] args) { 23 | Test.init (ref args); 24 | 25 | TestSuite.get_root ().add_suite (new TaskListHistoryTests ().get_suite ()); 26 | 27 | Test.run (); 28 | } 29 | -------------------------------------------------------------------------------- /test/TestTaskListMain.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | void main (string[] args) { 23 | Test.init (ref args); 24 | 25 | TestSuite.get_root ().add_suite (new TaskListTests ().get_suite ()); 26 | 27 | Test.run (); 28 | } 29 | -------------------------------------------------------------------------------- /test/TestTaskMain.vala: -------------------------------------------------------------------------------- 1 | /*** 2 | 3 | Copyright (C) 2014-2020 Agenda Developers 4 | 5 | This file is part of Agenda. 6 | 7 | Agenda is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | Agenda is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with Agenda. If not, see . 19 | 20 | ***/ 21 | 22 | void main (string[] args) { 23 | Test.init (ref args); 24 | 25 | TestSuite.get_root ().add_suite (new TaskTests ().get_suite ()); 26 | 27 | Test.run (); 28 | } 29 | -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- 1 | test_task_source = files( 2 | 'TestCase.vala', 3 | 'TestTask.vala', 4 | 'TestTaskMain.vala' 5 | ) 6 | 7 | test_task_list_source = files( 8 | 'TestCase.vala', 9 | 'TestTaskList.vala', 10 | 'TestTaskListMain.vala' 11 | ) 12 | 13 | test_task_list_history_source = files( 14 | 'TestCase.vala', 15 | 'TestTaskListHistory.vala', 16 | 'TestTaskListHistoryMain.vala' 17 | ) 18 | 19 | task_test_bin = executable('test-task', 20 | test_task_source + agenda_model_sources, 21 | include_directories: config_h_dir, 22 | dependencies: agenda_deps, 23 | vala_args: vala_args, 24 | c_args: c_args, 25 | ) 26 | 27 | task_list_test_bin = executable('test-task-list', 28 | test_task_list_source + agenda_model_sources, 29 | include_directories: config_h_dir, 30 | dependencies: agenda_deps, 31 | vala_args: vala_args, 32 | c_args: c_args, 33 | ) 34 | 35 | task_list_history_test_bin = executable('test-task-list-history', 36 | test_task_list_history_source + agenda_model_sources, 37 | include_directories: config_h_dir, 38 | dependencies: agenda_deps, 39 | vala_args: vala_args, 40 | c_args: c_args, 41 | ) 42 | 43 | test('test-task', task_test_bin) 44 | test('test-task-list', task_list_test_bin) 45 | test('test-task-list-history', task_list_history_test_bin) 46 | -------------------------------------------------------------------------------- /vapi/config.vapi: -------------------------------------------------------------------------------- 1 | [CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")] 2 | namespace Build { 3 | public const string APPNAME; 4 | public const string PREFIX; 5 | public const string PKGDATADIR; 6 | public const string VERSION; 7 | } 8 | --------------------------------------------------------------------------------