├── .bzrignore
├── .github
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ └── feature_request.md
└── workflows
│ └── main.yml
├── .gitignore
├── .travis.yml
├── AUTHORS
├── CHANGELOG.md
├── CMakeLists.txt
├── CONFIGURING.md
├── COPYING
├── README.md
├── cmake
├── FindGirCompiler.cmake
├── FindVala.cmake
├── GObjectIntrospectionMacros.cmake
├── GResource.cmake
├── GSettings.cmake
├── README.Vala.rst
├── README.md
├── Tests.cmake
├── Translations.cmake
├── Uninstall.cmake
├── ValaPrecompile.cmake
└── ValaVersion.cmake
├── data
├── CMakeLists.txt
├── go-for-it.appdata.xml.in.in
├── go-for-it.desktop.in.in
├── go-for-it.gschema.xml.in
├── icons
│ ├── 128x128
│ │ └── apps
│ │ │ └── go-for-it.svg
│ ├── 16x16
│ │ ├── actions
│ │ │ ├── drag-handle-symbolic.svg
│ │ │ ├── go-to-done-symbolic.svg
│ │ │ ├── go-to-done.svg
│ │ │ └── go-to-list-symbolic.svg
│ │ └── apps
│ │ │ ├── go-for-it-symbolic.svg
│ │ │ └── go-for-it.svg
│ ├── 24x24
│ │ ├── actions
│ │ │ ├── go-to-done-symbolic.svg
│ │ │ ├── go-to-done.svg
│ │ │ ├── go-to-list-symbolic.svg
│ │ │ └── open-menu-fallback.svg
│ │ └── apps
│ │ │ ├── go-for-it-symbolic.svg
│ │ │ └── go-for-it.svg
│ ├── 32x32
│ │ └── apps
│ │ │ └── go-for-it.svg
│ ├── 48x48
│ │ └── apps
│ │ │ └── go-for-it.svg
│ └── 64x64
│ │ └── apps
│ │ └── go-for-it.svg
├── resources.gresource.xml.in
├── sounds
│ ├── aluminium-bowl.ogg
│ ├── bell.ogg
│ ├── loud-bell.ogg
│ └── singing-bowl.ogg
└── style
│ ├── dark-3.10.css
│ ├── dark-3.20.css
│ ├── light-3.10.css
│ ├── light-3.20.css
│ ├── palettes
│ ├── dark.css
│ ├── light.css
│ └── theme-based.css
│ ├── safe-colors-3.10.css
│ ├── safe-colors-3.20.css
│ ├── widgets-minimal-3.10.css
│ └── widgets-minimal-3.20.css
├── executable
├── CMakeLists.txt
└── go-for-it.vala
├── plugins
├── CMakeLists.txt
├── appindicator
│ ├── CMakeLists.txt
│ ├── Constants.vala.in
│ ├── appindicator.plugin
│ ├── appindicator.vala
│ └── icons
│ │ ├── status-break-symbolic.svg
│ │ └── status-task-symbolic.svg
└── launcher_indicator
│ ├── CMakeLists.txt
│ ├── LauncherEntryAPI.vala
│ ├── LauncherIndicator.vala
│ └── launcherindicator.plugin
├── po
├── CMakeLists.txt
├── aa.po
├── ab.po
├── ae.po
├── af.po
├── ak.po
├── am.po
├── an.po
├── ar.po
├── as.po
├── ast.po
├── av.po
├── ay.po
├── az.po
├── ba.po
├── be.po
├── bg.po
├── bh.po
├── bi.po
├── bm.po
├── bn.po
├── bo.po
├── br.po
├── bs.po
├── ca.po
├── ce.po
├── ch.po
├── ckb.po
├── co.po
├── com.github.jmoerman.go-for-it.pot
├── cr.po
├── cs.po
├── cu.po
├── cv.po
├── cy.po
├── da.po
├── de.po
├── dv.po
├── dz.po
├── ee.po
├── el.po
├── en_AU.po
├── en_CA.po
├── en_GB.po
├── eo.po
├── es.po
├── et.po
├── eu.po
├── extra
│ ├── aa.po
│ ├── ab.po
│ ├── ae.po
│ ├── af.po
│ ├── ak.po
│ ├── am.po
│ ├── an.po
│ ├── ar.po
│ ├── as.po
│ ├── ast.po
│ ├── av.po
│ ├── ay.po
│ ├── az.po
│ ├── ba.po
│ ├── be.po
│ ├── bg.po
│ ├── bh.po
│ ├── bi.po
│ ├── bm.po
│ ├── bn.po
│ ├── bo.po
│ ├── br.po
│ ├── bs.po
│ ├── ca.po
│ ├── ce.po
│ ├── ch.po
│ ├── ckb.po
│ ├── co.po
│ ├── cr.po
│ ├── cs.po
│ ├── cu.po
│ ├── cv.po
│ ├── cy.po
│ ├── da.po
│ ├── de.po
│ ├── dv.po
│ ├── dz.po
│ ├── ee.po
│ ├── el.po
│ ├── en_AU.po
│ ├── en_CA.po
│ ├── en_GB.po
│ ├── eo.po
│ ├── es.po
│ ├── et.po
│ ├── eu.po
│ ├── extra.pot
│ ├── fa.po
│ ├── ff.po
│ ├── fi.po
│ ├── fj.po
│ ├── fo.po
│ ├── fr.po
│ ├── fr_CA.po
│ ├── fy.po
│ ├── ga.po
│ ├── gd.po
│ ├── gl.po
│ ├── gn.po
│ ├── gu.po
│ ├── gv.po
│ ├── ha.po
│ ├── he.po
│ ├── hi.po
│ ├── ho.po
│ ├── hr.po
│ ├── ht.po
│ ├── hu.po
│ ├── hy.po
│ ├── hz.po
│ ├── ia.po
│ ├── id.po
│ ├── ie.po
│ ├── ig.po
│ ├── ii.po
│ ├── ik.po
│ ├── io.po
│ ├── is.po
│ ├── it.po
│ ├── iu.po
│ ├── ja.po
│ ├── jv.po
│ ├── ka.po
│ ├── kg.po
│ ├── ki.po
│ ├── kj.po
│ ├── kk.po
│ ├── kl.po
│ ├── km.po
│ ├── kn.po
│ ├── ko.po
│ ├── kr.po
│ ├── ks.po
│ ├── ku.po
│ ├── kv.po
│ ├── kw.po
│ ├── ky.po
│ ├── la.po
│ ├── lb.po
│ ├── lg.po
│ ├── li.po
│ ├── ln.po
│ ├── lo.po
│ ├── lt.po
│ ├── lu.po
│ ├── lv.po
│ ├── mg.po
│ ├── mh.po
│ ├── mi.po
│ ├── mk.po
│ ├── ml.po
│ ├── mn.po
│ ├── mo.po
│ ├── mr.po
│ ├── ms.po
│ ├── mt.po
│ ├── my.po
│ ├── na.po
│ ├── nd.po
│ ├── ne.po
│ ├── ng.po
│ ├── nl.po
│ ├── nn.po
│ ├── no.po
│ ├── nr.po
│ ├── nv.po
│ ├── ny.po
│ ├── oc.po
│ ├── oj.po
│ ├── om.po
│ ├── or.po
│ ├── os.po
│ ├── pa.po
│ ├── pi.po
│ ├── pl.po
│ ├── ps.po
│ ├── pt.po
│ ├── pt_BR.po
│ ├── qu.po
│ ├── rm.po
│ ├── rn.po
│ ├── ro.po
│ ├── ru.po
│ ├── rue.po
│ ├── rw.po
│ ├── sa.po
│ ├── sc.po
│ ├── sd.po
│ ├── se.po
│ ├── sg.po
│ ├── si.po
│ ├── sk.po
│ ├── sl.po
│ ├── sm.po
│ ├── sma.po
│ ├── sn.po
│ ├── so.po
│ ├── sq.po
│ ├── sr.po
│ ├── ss.po
│ ├── st.po
│ ├── su.po
│ ├── sv.po
│ ├── sw.po
│ ├── ta.po
│ ├── te.po
│ ├── tg.po
│ ├── th.po
│ ├── ti.po
│ ├── tk.po
│ ├── tl.po
│ ├── tn.po
│ ├── to.po
│ ├── tr.po
│ ├── ts.po
│ ├── tt.po
│ ├── tw.po
│ ├── ty.po
│ ├── ug.po
│ ├── uk.po
│ ├── ur.po
│ ├── uz.po
│ ├── ve.po
│ ├── vi.po
│ ├── vo.po
│ ├── wa.po
│ ├── wo.po
│ ├── xh.po
│ ├── yi.po
│ ├── yo.po
│ ├── za.po
│ ├── zh.po
│ ├── zh_HK.po
│ ├── zh_TW.po
│ └── zu.po
├── fa.po
├── ff.po
├── fi.po
├── fj.po
├── fo.po
├── fr.po
├── fr_CA.po
├── fy.po
├── ga.po
├── gd.po
├── gl.po
├── gn.po
├── gu.po
├── gv.po
├── ha.po
├── he.po
├── hi.po
├── ho.po
├── hr.po
├── ht.po
├── hu.po
├── hy.po
├── hz.po
├── ia.po
├── id.po
├── ie.po
├── ig.po
├── ii.po
├── ik.po
├── io.po
├── is.po
├── it.po
├── iu.po
├── ja.po
├── jv.po
├── ka.po
├── kg.po
├── ki.po
├── kj.po
├── kk.po
├── kl.po
├── km.po
├── kn.po
├── ko.po
├── kr.po
├── ks.po
├── ku.po
├── kv.po
├── kw.po
├── ky.po
├── la.po
├── lb.po
├── lg.po
├── li.po
├── ln.po
├── lo.po
├── lt.po
├── lu.po
├── lv.po
├── mg.po
├── mh.po
├── mi.po
├── mk.po
├── ml.po
├── mn.po
├── mr.po
├── ms.po
├── mt.po
├── my.po
├── na.po
├── nd.po
├── ne.po
├── ng.po
├── nl.po
├── nn.po
├── no.po
├── nr.po
├── nv.po
├── ny.po
├── oc.po
├── oj.po
├── om.po
├── or.po
├── os.po
├── pa.po
├── pi.po
├── pl.po
├── ps.po
├── pt.po
├── pt_BR.po
├── qu.po
├── rm.po
├── rn.po
├── ro.po
├── ru.po
├── rue.po
├── rw.po
├── sa.po
├── sc.po
├── sd.po
├── se.po
├── sg.po
├── si.po
├── sk.po
├── sl.po
├── sm.po
├── sma.po
├── sn.po
├── so.po
├── sq.po
├── sr.po
├── ss.po
├── st.po
├── su.po
├── sv.po
├── sw.po
├── ta.po
├── te.po
├── tg.po
├── th.po
├── ti.po
├── tk.po
├── tl.po
├── tn.po
├── to.po
├── tr.po
├── ts.po
├── tt.po
├── tw.po
├── ty.po
├── ug.po
├── uk.po
├── ur.po
├── uz.po
├── ve.po
├── vi.po
├── vo.po
├── wa.po
├── wo.po
├── xh.po
├── yi.po
├── yo.po
├── za.po
├── zh.po
├── zh_HK.po
├── zh_TW.po
└── zu.po
├── screenshot.png
├── src
├── CMakeLists.txt
├── Constants.vala.cmake
├── Date.vala
├── Dialogs
│ ├── AboutDialog.vala
│ ├── ContributeDialog.vala
│ ├── DialogUtils.vala
│ ├── FileConflictDialog.vala
│ ├── SettingsDialog.vala
│ └── SettingsPages
│ │ ├── AppearancePage.vala
│ │ ├── BehaviorPage.vala
│ │ ├── NotificationsPage.vala
│ │ └── ShortcutsPage.vala
├── LegacyStrings.vala
├── ListIdentifier.vala
├── Main.vala
├── MainWindow.vala
├── Pages
│ ├── SelectionPage.vala
│ └── TaskListPage.vala
├── PluginInterface.vala
├── Recurrence
│ ├── RecurrenceFrequency.vala
│ ├── RecurrenceIterator.vala
│ ├── RecurrenceMode.vala
│ └── RecurrenceRule.vala
├── Schedule.vala
├── SequentialList.vala
├── Services
│ ├── ActivityLog.vala
│ ├── FileWatcher.vala
│ ├── ListManager.vala
│ ├── Notifications.vala
│ ├── PluginManager.vala
│ ├── SettingsManager.vala
│ ├── Shortcuts.vala
│ ├── SoundPlayer.vala
│ └── TaskTimer.vala
├── TaskList.vala
├── Todo.txt
│ ├── Constants.vala
│ ├── Dialogs
│ │ └── TxtListEditDialog.vala
│ ├── Filter.vala
│ ├── ListSettings.vala
│ ├── TaskManager.vala
│ ├── TaskStore.vala
│ ├── TxtList.vala
│ ├── TxtListManager.vala
│ ├── TxtTask.vala
│ ├── TxtUtils.vala
│ └── Widgets
│ │ ├── DynOrientationBox.vala
│ │ ├── TaskListWidget.vala
│ │ └── TaskRow.vala
├── TodoListInfo.vala
├── TodoTask.vala
├── Utils.vala
├── Widgets
│ ├── DragList.vala
│ ├── DragListModel.vala
│ ├── DragListRowBox.vala
│ ├── FileChooserWidget.vala
│ ├── TimerScheduleWidget.vala
│ ├── TimerView.vala
│ ├── TodoListInfoRow.vala
│ └── ViewSwitcher.vala
├── go-for-it.deps
└── go-for-it.pc.in
├── tests
├── CMakeLists.txt
├── DragListTest.vala
├── TestCase.vala
├── Tests.vala
└── todo.txt
│ ├── TaskManagerTest.vala
│ ├── TaskStoreTest.vala
│ └── TodoTaskTest.vala
└── vapi
└── glib_assert.vapi
/.bzrignore:
--------------------------------------------------------------------------------
1 | build
2 | *~
3 | src/Constants.vala
4 | .git
5 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: "[BUG]"
5 | labels: bug
6 | assignees: ''
7 |
8 | ---
9 |
10 |
15 |
16 | **Describe the bug**
17 |
18 |
19 | **To Reproduce**
20 |
27 |
28 | **Expected behavior**
29 |
30 |
31 | **Screenshots**
32 |
33 |
34 | **Command line output**
35 |
36 |
37 | **OS and application version:**
38 |
43 |
44 | **Additional context**
45 |
46 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: "[Feature request]"
5 | labels: enhancement
6 | assignees: ''
7 |
8 | ---
9 |
10 |
15 |
16 | **Is your feature request related to a problem? Please describe.**
17 |
18 |
19 | **Describe the solution you'd like**
20 |
21 |
22 | **Describe alternatives you've considered**
23 |
24 |
25 | **Additional context**
26 |
27 |
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | build:
7 |
8 | runs-on: ubuntu-latest
9 |
10 | container:
11 | image: elementary/docker:unstable
12 |
13 | steps:
14 | - uses: actions/checkout@v1
15 | - name: Install Dependencies
16 | run: |
17 | apt update
18 | apt install -y libgranite-dev libgtk-3-dev libcanberra-dev libayatana-appindicator3-dev libpeas-dev cmake ninja-build valac
19 | - name: Build
20 | run: |
21 | mkdir build
22 | cd build
23 | cmake -DNO_CONTRIBUTE_DIALOG:BOOL="1" -DUSE_GRANITE:BOOL="1" -DDEFAULT_PLUGINS:STRING="['launcherindicator']" -DBUILD_TESTS:BOOL="1" -G Ninja ..
24 | ninja
25 | ninja install
26 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | build*
2 | *~
3 | src/Constants.vala
4 | plugins/appindicator/Constants.vala
5 | .*
6 | *.mo
7 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | language: node_js
4 |
5 | node_js:
6 | - 10.17.0
7 |
8 | sudo: required
9 |
10 | services:
11 | - docker
12 |
13 | addons:
14 | apt:
15 | sources:
16 | - ubuntu-toolchain-r-test
17 | packages:
18 | - libstdc++-5-dev
19 |
20 | install:
21 | - npm i -g @elementaryos/houston
22 |
23 | script:
24 | - houston ci
25 |
--------------------------------------------------------------------------------
/AUTHORS:
--------------------------------------------------------------------------------
1 | Manuel Kehl (mank319) mank319@zoho.com - Concept and Development
2 | Micah Ilbery (TraumaD91) - Icon Design
3 | Jonathan Moerman - Development
4 |
5 | Akshay Shekher - Code Contributor
6 |
7 | To see who contributed to a translation, see: https://translations.launchpad.net/go-for-it
8 |
--------------------------------------------------------------------------------
/cmake/README.md:
--------------------------------------------------------------------------------
1 | # elementary CMake Modules
2 |
3 | This is a set of CMake modules: Translations, GSettings, and Vala modules.
4 |
5 | For all the Vala related modules see [README.Vala.rst](/README.Vala.rst):
6 | - ParseArguments.cmake
7 | - ValaPrecompile.cmake
8 | - ValaVersion.cmake
9 | - FindVala.cmake
10 |
11 |
--------------------------------------------------------------------------------
/cmake/Tests.cmake:
--------------------------------------------------------------------------------
1 | # Test macros for Marlin, feel free to re-use them.
2 |
3 | macro(add_test_executable EXE_NAME)
4 | add_test(${EXE_NAME} gtester ${CMAKE_CURRENT_BINARY_DIR}/${EXE_NAME})
5 | endmacro()
6 |
--------------------------------------------------------------------------------
/cmake/Uninstall.cmake:
--------------------------------------------------------------------------------
1 | # Taken from CMake FAQ http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
2 | # TODO: that should probably be improved, do we really need to configure a file to read something in the current binary directory?
3 | if (NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
4 | message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"")
5 | endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
6 |
7 | file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
8 | string(REGEX REPLACE "\n" ";" files "${files}")
9 | cmake_policy (SET CMP0007 NEW)
10 | list(REVERSE files)
11 | foreach (file ${files})
12 | message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"")
13 | if (EXISTS "$ENV{DESTDIR}${file}")
14 | execute_process(
15 | COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}"
16 | OUTPUT_VARIABLE rm_out
17 | RESULT_VARIABLE rm_retval
18 | )
19 | if(NOT ${rm_retval} EQUAL 0)
20 | message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"")
21 | endif (NOT ${rm_retval} EQUAL 0)
22 | else (EXISTS "$ENV{DESTDIR}${file}")
23 | message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.")
24 | endif (EXISTS "$ENV{DESTDIR}${file}")
25 | endforeach(file)
26 |
--------------------------------------------------------------------------------
/data/go-for-it.desktop.in.in:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Name=@APP_NAME@
3 | GenericName=@APP_NAME@
4 | Comment=@RELEASE_NAME@
5 | Categories=GTK;Office;ProjectManagement;Utility;
6 | Exec=@EXEC_NAME@
7 | Icon=@ICON_NAME@
8 | Terminal=false
9 | Type=Application
10 | StartupWMClass=@EXEC_NAME@
11 | X-GNOME-UsesNotifications=true
12 | X-GNOME-Gettext-Domain=@GETTEXT_PACKAGE@
13 | Keywords=Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;
14 | X-GNOME-Keywords=Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;
15 | @ABOUT_ACTION@
16 |
--------------------------------------------------------------------------------
/data/resources.gresource.xml.in:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | icons/16x16/actions/go-to-done.svg
5 | icons/16x16/actions/go-to-list-symbolic.svg
6 | icons/16x16/actions/go-to-done-symbolic.svg
7 | icons/16x16/actions/drag-handle-symbolic.svg
8 | icons/24x24/actions/go-to-done.svg
9 | icons/24x24/actions/go-to-done-symbolic.svg
10 | icons/24x24/actions/go-to-list-symbolic.svg
11 | icons/24x24/actions/open-menu-fallback.svg
12 |
13 | style/widgets-minimal-3.20.css
14 | style/widgets-minimal-3.10.css
15 | style/safe-colors-3.20.css
16 | style/safe-colors-3.10.css
17 | style/light-3.20.css
18 | style/light-3.10.css
19 | style/dark-3.20.css
20 | style/dark-3.10.css
21 |
22 | style/palettes/theme-based.css
23 | style/palettes/dark.css
24 | style/palettes/light.css
25 |
26 |
27 |
--------------------------------------------------------------------------------
/data/sounds/aluminium-bowl.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JMoerman/Go-For-It/9cff7e958024e7404327d624acf528cdae620720/data/sounds/aluminium-bowl.ogg
--------------------------------------------------------------------------------
/data/sounds/bell.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JMoerman/Go-For-It/9cff7e958024e7404327d624acf528cdae620720/data/sounds/bell.ogg
--------------------------------------------------------------------------------
/data/sounds/loud-bell.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JMoerman/Go-For-It/9cff7e958024e7404327d624acf528cdae620720/data/sounds/loud-bell.ogg
--------------------------------------------------------------------------------
/data/sounds/singing-bowl.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JMoerman/Go-For-It/9cff7e958024e7404327d624acf528cdae620720/data/sounds/singing-bowl.ogg
--------------------------------------------------------------------------------
/data/style/dark-3.10.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/dark.css");
2 | @import url("widgets-minimal-3.10.css");
3 |
4 | .gofi_main_window {
5 | -gtk-icon-style: symbolic
6 | }
7 |
--------------------------------------------------------------------------------
/data/style/dark-3.20.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/dark.css");
2 | @import url("widgets-minimal-3.20.css");
3 |
4 | .gofi_main_window {
5 | -gtk-icon-style: symbolic
6 | }
7 |
--------------------------------------------------------------------------------
/data/style/light-3.10.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/light.css");
2 | @import url("widgets-minimal-3.10.css");
3 |
--------------------------------------------------------------------------------
/data/style/light-3.20.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/light.css");
2 | @import url("widgets-minimal-3.20.css");
3 |
--------------------------------------------------------------------------------
/data/style/palettes/dark.css:
--------------------------------------------------------------------------------
1 | @define-color gofi_task_active_label_color #ababab;
2 | @define-color gofi_text_attention @warning_color;
3 |
4 | @define-color gofi_main_layout_background @theme_base_color;
5 |
6 | @define-color gofi_row_bg @theme_base_color;
7 | @define-color gofi_row_fg @theme_text_color;
8 |
9 | @define-color gofi_row_drag_icon_border @theme_fg_color;
10 | @define-color gofi_row_drag_icon_background @theme_base_color;
11 |
--------------------------------------------------------------------------------
/data/style/palettes/light.css:
--------------------------------------------------------------------------------
1 | @define-color gofi_task_active_label_color #ababab;
2 | @define-color gofi_text_attention @warning_color;
3 |
4 | @define-color gofi_main_layout_background @theme_base_color;
5 |
6 | @define-color gofi_row_bg @theme_base_color;
7 | @define-color gofi_row_fg @theme_text_color;
8 |
9 | @define-color gofi_row_drag_icon_border @theme_fg_color;
10 | @define-color gofi_row_drag_icon_background @theme_base_color;
11 |
--------------------------------------------------------------------------------
/data/style/palettes/theme-based.css:
--------------------------------------------------------------------------------
1 | @define-color gofi_task_active_label_color @theme_fg_color;
2 | @define-color gofi_text_attention @warning_color;
3 |
4 | @define-color gofi_main_layout_background @theme_base_color;
5 |
6 | @define-color gofi_row_bg @theme_base_color;
7 | @define-color gofi_row_fg @theme_text_color;
8 |
9 | @define-color gofi_row_drag_icon_border @theme_fg_color;
10 | @define-color gofi_row_drag_icon_background @theme_base_color;
11 |
--------------------------------------------------------------------------------
/data/style/safe-colors-3.10.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/theme-based.css");
2 | @import url("widgets-minimal-3.10.css");
3 |
4 | .gofi_main_window {
5 | -gtk-icon-style: symbolic
6 | }
7 |
--------------------------------------------------------------------------------
/data/style/safe-colors-3.20.css:
--------------------------------------------------------------------------------
1 | @import url("palettes/theme-based.css");
2 | @import url("widgets-minimal-3.20.css");
3 |
4 | .gofi_main_window {
5 | -gtk-icon-style: symbolic
6 | }
7 |
--------------------------------------------------------------------------------
/data/style/widgets-minimal-3.10.css:
--------------------------------------------------------------------------------
1 | GtkLabel.task-status {
2 | font-size: 200%;
3 | font-weight: bold;
4 | }
5 |
6 | GtkLabel.task-break {
7 | font-size: 120%;
8 | color: @gofi_task_active_label_color;
9 | }
10 |
11 | GtkLabel.task-active {
12 | font-size: 120%;
13 | }
14 |
15 | GtkLabel.task-duration-exceeded {
16 | color: @gofi_text_attention;
17 | }
18 |
19 | .timerview GtkSpinButton {
20 | font-size: 400%;
21 | }
22 |
23 | .timerview GtkLabel {
24 | font-size: 250%;
25 | }
26 |
27 | .task-layout,
28 | .main-layout .list {
29 | background: @gofi_main_layout_background;
30 | }
31 |
32 | .main-layout .list-row.drag-icon,
33 | .main-layout .list-row.drag-icon:selected,
34 | .main-layout .list-row.drag-icon:selected:focus {
35 | background: @gofi_row_drag_icon_background;
36 | border: 1px solid @gofi_row_drag_icon_border;
37 | color: @gofi_row_fg;
38 | }
39 |
40 | .list-row.drag-icon label {
41 | color: @gofi_row_fg;
42 | }
43 |
44 | .no-margin {
45 | margin: 0;
46 | padding: 0;
47 | border: 0px;
48 | }
49 |
50 | .settings-frame {
51 | background-color: @theme_base_color
52 | }
53 |
--------------------------------------------------------------------------------
/data/style/widgets-minimal-3.20.css:
--------------------------------------------------------------------------------
1 | label.task-status {
2 | font-size: 200%;
3 | font-weight: bold;
4 | }
5 |
6 | label.task-break {
7 | font-size: 120%;
8 | color: @gofi_task_active_label_color;
9 | }
10 |
11 | label.task-active {
12 | font-size: 120%;
13 | }
14 |
15 | label.task-duration-exceeded {
16 | color: @gofi_text_attention;
17 | }
18 |
19 | .timerview spinbutton {
20 | font-size: 400%;
21 | }
22 |
23 | .timerview label {
24 | font-size: 250%;
25 | }
26 |
27 | .task-layout,
28 | .main-layout list {
29 | background: @gofi_main_layout_background;
30 | }
31 |
32 | .main-layout row.drag-icon,
33 | .main-layout row.drag-icon:selected,
34 | .main-layout row.drag-icon:selected:focus {
35 | background: @gofi_row_drag_icon_background;
36 | border: 1px solid @gofi_row_drag_icon_border;
37 | color: @gofi_row_fg;
38 | }
39 |
40 | row.drag-icon label {
41 | color: @gofi_row_fg;
42 | }
43 |
44 | .no-margin {
45 | margin: 0;
46 | padding: 0;
47 | border: 0px;
48 | }
49 |
50 | .settings-frame {
51 | background-color: @theme_base_color
52 | }
53 |
--------------------------------------------------------------------------------
/executable/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | # files we want to compile
2 | include (ValaPrecompile)
3 |
4 | vala_precompile (VALA_C ${EXEC_NAME}
5 | go-for-it.vala
6 |
7 | # tell what libraries to use when compiling
8 | PACKAGES
9 | ${DEPS_VALA_PACKAGES}
10 | OPTIONS
11 | ${VALAC_OPTIONS}
12 | CUSTOM_VAPIS
13 | ${CMAKE_BINARY_DIR}/${LIBRARY_PATH}/${LIBNAME}_internal.vapi
14 | )
15 |
16 | include(GResource)
17 |
18 | configure_file (${CMAKE_SOURCE_DIR}/data/resources.gresource.xml.in ${CMAKE_CURRENT_BINARY_DIR}/resources.gresource.xml)
19 |
20 | glib_compile_resources("${CMAKE_CURRENT_BINARY_DIR}/resources.gresource.xml"
21 | SOURCE_DIR "${CMAKE_SOURCE_DIR}/data"
22 | SOURCE "${CMAKE_CURRENT_BINARY_DIR}/gui-resources.c"
23 | C_NAME "gofi_gui_resources"
24 | INTERNAL)
25 |
26 | # tell cmake what to call the executable we just made
27 | add_executable (${EXEC_NAME}
28 | "${CMAKE_CURRENT_BINARY_DIR}/gui-resources.c"
29 | ${VALA_C}
30 | )
31 | add_dependencies (${EXEC_NAME} ${LIBNAME})
32 | set_target_properties (${EXEC_NAME} PROPERTIES
33 | INCLUDE_DIRECTORIES ${CMAKE_BINARY_DIR}/${LIBRARY_PATH}
34 | )
35 | target_link_libraries (${EXEC_NAME} ${LIBNAME})
36 | # install the binaries we just made
37 | install (TARGETS ${EXEC_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_FULL_BINDIR})
38 |
--------------------------------------------------------------------------------
/executable/go-for-it.vala:
--------------------------------------------------------------------------------
1 | using GOFI;
2 |
3 | /**
4 | * The entry point for running the application.
5 | */
6 | public static int main (string[] args) {
7 | Intl.setlocale (LocaleCategory.MESSAGES, "");
8 | Intl.textdomain (GOFI.GETTEXT_PACKAGE);
9 | Intl.bind_textdomain_codeset (GOFI.GETTEXT_PACKAGE, "utf-8");
10 | string locale_dir = Path.build_filename (GOFI.INSTALL_PREFIX, "share", "locale");
11 | Intl.bindtextdomain (GOFI.GETTEXT_PACKAGE, locale_dir);
12 |
13 | apply_desktop_specific_tweaks ();
14 | Main app = new Main ();
15 | int status = app.run (args);
16 | return status;
17 | }
18 |
19 | /**
20 | * This function handles different tweaks that have to be applied to
21 | * make GoForIt! work properly on certain desktop environments.
22 | */
23 | public static void apply_desktop_specific_tweaks () {
24 | string desktop = Environment.get_variable ("DESKTOP_SESSION");
25 |
26 | if (desktop == "ubuntu") {
27 | // Disable overlay scrollbars on unity, to avoid a strange Gtk bug
28 | Environment.set_variable ("LIBOVERLAY_SCROLLBAR", "0", true);
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/plugins/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | add_subdirectory (appindicator)
2 | add_subdirectory (launcher_indicator)
3 |
--------------------------------------------------------------------------------
/plugins/appindicator/Constants.vala.in:
--------------------------------------------------------------------------------
1 |
2 | namespace GOFI.Plugins.AyatanaIndicator {
3 | const string STATUS_TASK_PANEL_ICON = "@STATUS_TASK_PANEL_ICON@";
4 | const string STATUS_BREAK_PANEL_ICON = "@STATUS_BREAK_PANEL_ICON@";
5 | const bool ICONS_IN_DATA_DIR = @ICONS_IN_DATA_DIR@;
6 | }
7 |
--------------------------------------------------------------------------------
/plugins/appindicator/appindicator.plugin:
--------------------------------------------------------------------------------
1 | [Plugin]
2 | Module=appindicator
3 | Loader=C
4 | Name=Panel indicator
5 | Description=Show and control the timer from a panel supporting Ayatana appindicators.
6 | Copyright=Copyright © 2020 Jonathan Moerman
7 | Authors=Jonathan Moerman
8 | Website=https://github.com/JMoerman/Go-For-It
9 |
--------------------------------------------------------------------------------
/plugins/launcher_indicator/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | include (Translations)
2 | include_directories(${CMAKE_BINARY_DIR} ${CMAKE_BINARY_DIR}/src/lib/)
3 |
4 | set (PLUGIN_NAME "launcherindicator")
5 |
6 | set (VALA_PACKAGES gtk+-3.0 libpeas-1.0)
7 |
8 | if (USE_GRANITE)
9 | set (LAUNCHER_PLUGIN_SOURCES LauncherIndicator.vala)
10 | set (VALAC_OPTIONS ${VALAC_OPTIONS} -D USE_GRANITE)
11 | set (VALA_PACKAGES ${VALA_PACKAGES} granite)
12 | else ()
13 | set (LAUNCHER_PLUGIN_SOURCES LauncherIndicator.vala LauncherEntryAPI.vala)
14 | endif ()
15 |
16 | include(ValaPrecompile)
17 | vala_precompile(VALA_C ${PLUGIN_NAME}
18 | ${LAUNCHER_PLUGIN_SOURCES}
19 |
20 | # tell what libraries to use when compiling
21 | PACKAGES
22 | ${VALA_PACKAGES}
23 |
24 | CUSTOM_VAPIS
25 | ${CMAKE_BINARY_DIR}/src/${LIBNAME}.vapi
26 | OPTIONS
27 | ${VALAC_OPTIONS}
28 | )
29 |
30 | add_definitions(${DEPS_CFLAGS})
31 | link_directories (${DEPS_LIBRARY_DIRS})
32 |
33 | add_library(${PLUGIN_NAME} MODULE ${VALA_C})
34 | target_link_libraries(${PLUGIN_NAME} ${LIBNAME} ${DEPS_LIBRARIES})
35 |
36 | configure_file_translation (${PLUGIN_NAME}.plugin ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_NAME}.plugin ${CMAKE_SOURCE_DIR}/po/)
37 |
38 | install(TARGETS ${PLUGIN_NAME} DESTINATION ${PLUGINDIR}/${PLUGIN_NAME})
39 | install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PLUGIN_NAME}.plugin DESTINATION ${PLUGINDIR}/${PLUGIN_NAME})
40 |
41 | message("-- Launcher inidicator plugin (Unity LauncherEntry API) will be compiled")
42 |
--------------------------------------------------------------------------------
/plugins/launcher_indicator/launcherindicator.plugin:
--------------------------------------------------------------------------------
1 | [Plugin]
2 | Module=launcherindicator
3 | Loader=C
4 | Name=Launcher indicator
5 | Description=Show the timer in the launcher. Works with the Plank dock, the Unity dash and the dash to dock GNOME extension.
6 | Copyright=Copyright © 2020 Jonathan Moerman
7 | Authors=Jonathan Moerman
8 | Website=https://github.com/JMoerman/Go-For-It
9 |
--------------------------------------------------------------------------------
/po/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | include (Translations)
2 | add_translations_directory (${GETTEXT_PACKAGE})
3 | add_translations_catalog (${GETTEXT_PACKAGE}
4 | ../src
5 | ../plugins
6 | DESKTOP_FILES
7 | ${CMAKE_BINARY_DIR}/data/${APP_ID}.desktop.in
8 | APPDATA_FILES
9 | ${CMAKE_BINARY_DIR}/data/${APP_ID}.appdata.xml.in
10 | PLUGIN_FILES
11 | ../plugins/appindicator/appindicator.plugin
12 | ../plugins/launcher_indicator/launcherindicator.plugin
13 | )
14 |
--------------------------------------------------------------------------------
/po/extra/aa.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ab.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ae.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Report-Msgid-Bugs-To: \n"
4 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
5 | "MIME-Version: 1.0\n"
6 | "Content-Type: text/plain; charset=UTF-8\n"
7 |
8 | msgid "A stylish to-do list with built-in productivity timer"
9 | msgstr ""
10 |
11 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
12 | msgstr ""
13 |
14 | msgid "About GoForIt!"
15 | msgstr ""
16 |
17 | msgid "Panel indicator"
18 | msgstr ""
19 |
20 | msgid ""
21 | "Show and control the timer from a panel supporting Ayatana appindicators."
22 | msgstr ""
23 |
24 | msgid "Launcher indicator"
25 | msgstr ""
26 |
27 | msgid ""
28 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
29 | "and the dash to dock GNOME extension."
30 | msgstr ""
31 |
32 | msgid "The GoForIt! developers"
33 | msgstr ""
34 |
35 | msgid ""
36 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
37 | "merged with a timer that keeps your focus on the current task."
38 | msgstr ""
39 |
40 | msgid ""
41 | "To-do lists are stored in the Todo.txt format. This simplifies "
42 | "synchronization with mobile devices and makes it possible to edit tasks "
43 | "using other front-ends."
44 | msgstr ""
45 |
46 | msgid ""
47 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
48 | "archives completed tasks to the done list!"
49 | msgstr ""
50 |
--------------------------------------------------------------------------------
/po/extra/af.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ak.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/am.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/an.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/as.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ast.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/av.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ay.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/az.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ba.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/be.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bh.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bi.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bm.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bn.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bo.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/br.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/bs.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ce.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ch.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ckb.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/co.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/cr.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/cu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Report-Msgid-Bugs-To: \n"
4 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
5 | "MIME-Version: 1.0\n"
6 | "Content-Type: text/plain; charset=UTF-8\n"
7 |
8 | msgid "A stylish to-do list with built-in productivity timer"
9 | msgstr ""
10 |
11 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
12 | msgstr ""
13 |
14 | msgid "About GoForIt!"
15 | msgstr ""
16 |
17 | msgid "Panel indicator"
18 | msgstr ""
19 |
20 | msgid ""
21 | "Show and control the timer from a panel supporting Ayatana appindicators."
22 | msgstr ""
23 |
24 | msgid "Launcher indicator"
25 | msgstr ""
26 |
27 | msgid ""
28 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
29 | "and the dash to dock GNOME extension."
30 | msgstr ""
31 |
32 | msgid "The GoForIt! developers"
33 | msgstr ""
34 |
35 | msgid ""
36 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
37 | "merged with a timer that keeps your focus on the current task."
38 | msgstr ""
39 |
40 | msgid ""
41 | "To-do lists are stored in the Todo.txt format. This simplifies "
42 | "synchronization with mobile devices and makes it possible to edit tasks "
43 | "using other front-ends."
44 | msgstr ""
45 |
46 | msgid ""
47 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
48 | "archives completed tasks to the done list!"
49 | msgstr ""
50 |
--------------------------------------------------------------------------------
/po/extra/cv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/cy.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/dv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/dz.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ee.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/el.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/en_AU.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/en_CA.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/en_GB.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/et.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/eu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fa.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ff.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fi.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fj.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fo.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fr_CA.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:39+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/fy.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ga.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/gd.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/gl.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/gn.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/gu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/gv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ha.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/hi.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ho.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ht.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/hu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/hy.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/hz.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ia.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ie.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ig.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ii.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ik.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/io.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/is.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/iu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/jv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ka.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kg.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ki.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kj.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kk.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kl.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/km.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kn.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kr.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ks.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ku.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/kw.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ky.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/la.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/lb.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/lg.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/li.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ln.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/lo.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/lu.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/lv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mg.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mh.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mi.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mk.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ml.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mn.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mo.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Report-Msgid-Bugs-To: \n"
4 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
5 | "MIME-Version: 1.0\n"
6 | "Content-Type: text/plain; charset=UTF-8\n"
7 |
8 | msgid "A stylish to-do list with built-in productivity timer"
9 | msgstr ""
10 |
11 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
12 | msgstr ""
13 |
14 | msgid "About GoForIt!"
15 | msgstr ""
16 |
17 | msgid "Panel indicator"
18 | msgstr ""
19 |
20 | msgid ""
21 | "Show and control the timer from a panel supporting Ayatana appindicators."
22 | msgstr ""
23 |
24 | msgid "Launcher indicator"
25 | msgstr ""
26 |
27 | msgid ""
28 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
29 | "and the dash to dock GNOME extension."
30 | msgstr ""
31 |
32 | msgid "The GoForIt! developers"
33 | msgstr ""
34 |
35 | msgid ""
36 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
37 | "merged with a timer that keeps your focus on the current task."
38 | msgstr ""
39 |
40 | msgid ""
41 | "To-do lists are stored in the Todo.txt format. This simplifies "
42 | "synchronization with mobile devices and makes it possible to edit tasks "
43 | "using other front-ends."
44 | msgstr ""
45 |
46 | msgid ""
47 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
48 | "archives completed tasks to the done list!"
49 | msgstr ""
50 |
--------------------------------------------------------------------------------
/po/extra/ms.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/mt.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/my.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/na.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/nd.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ne.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ng.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/nn.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/nr.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/nv.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/ny.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:22+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/oc.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: PACKAGE VERSION\n"
4 | "Report-Msgid-Bugs-To: \n"
5 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
6 | "PO-Revision-Date: 2017-10-29 18:23+0000\n"
7 | "Last-Translator: FULL NAME \n"
8 | "Language-Team: LANGUAGE \n"
9 | "Language: \n"
10 | "MIME-Version: 1.0\n"
11 | "Content-Type: text/plain; charset=UTF-8\n"
12 | "Content-Transfer-Encoding: 8bit\n"
13 | "X-Launchpad-Export-Date: 2017-11-11 05:38+0000\n"
14 | "X-Generator: Launchpad (build 18505)\n"
15 |
16 | msgid "A stylish to-do list with built-in productivity timer"
17 | msgstr ""
18 |
19 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
20 | msgstr ""
21 |
22 | msgid "About GoForIt!"
23 | msgstr ""
24 |
25 | msgid "Panel indicator"
26 | msgstr ""
27 |
28 | msgid ""
29 | "Show and control the timer from a panel supporting Ayatana appindicators."
30 | msgstr ""
31 |
32 | msgid "Launcher indicator"
33 | msgstr ""
34 |
35 | msgid ""
36 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
37 | "and the dash to dock GNOME extension."
38 | msgstr ""
39 |
40 | msgid "The GoForIt! developers"
41 | msgstr ""
42 |
43 | msgid ""
44 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
45 | "merged with a timer that keeps your focus on the current task."
46 | msgstr ""
47 |
48 | msgid ""
49 | "To-do lists are stored in the Todo.txt format. This simplifies "
50 | "synchronization with mobile devices and makes it possible to edit tasks "
51 | "using other front-ends."
52 | msgstr ""
53 |
54 | msgid ""
55 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
56 | "archives completed tasks to the done list!"
57 | msgstr ""
58 |
--------------------------------------------------------------------------------
/po/extra/pi.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Report-Msgid-Bugs-To: \n"
4 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
5 | "MIME-Version: 1.0\n"
6 | "Content-Type: text/plain; charset=UTF-8\n"
7 |
8 | msgid "A stylish to-do list with built-in productivity timer"
9 | msgstr ""
10 |
11 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
12 | msgstr ""
13 |
14 | msgid "About GoForIt!"
15 | msgstr ""
16 |
17 | msgid "Panel indicator"
18 | msgstr ""
19 |
20 | msgid ""
21 | "Show and control the timer from a panel supporting Ayatana appindicators."
22 | msgstr ""
23 |
24 | msgid "Launcher indicator"
25 | msgstr ""
26 |
27 | msgid ""
28 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
29 | "and the dash to dock GNOME extension."
30 | msgstr ""
31 |
32 | msgid "The GoForIt! developers"
33 | msgstr ""
34 |
35 | msgid ""
36 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
37 | "merged with a timer that keeps your focus on the current task."
38 | msgstr ""
39 |
40 | msgid ""
41 | "To-do lists are stored in the Todo.txt format. This simplifies "
42 | "synchronization with mobile devices and makes it possible to edit tasks "
43 | "using other front-ends."
44 | msgstr ""
45 |
46 | msgid ""
47 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
48 | "archives completed tasks to the done list!"
49 | msgstr ""
50 |
--------------------------------------------------------------------------------
/po/extra/vo.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Report-Msgid-Bugs-To: \n"
4 | "POT-Creation-Date: 2020-11-18 15:53+0100\n"
5 | "MIME-Version: 1.0\n"
6 | "Content-Type: text/plain; charset=UTF-8\n"
7 |
8 | msgid "A stylish to-do list with built-in productivity timer"
9 | msgstr ""
10 |
11 | msgid "Productivity;Todo.txt;Todo;Timer;Task;PIM;Time Management;"
12 | msgstr ""
13 |
14 | msgid "About GoForIt!"
15 | msgstr ""
16 |
17 | msgid "Panel indicator"
18 | msgstr ""
19 |
20 | msgid ""
21 | "Show and control the timer from a panel supporting Ayatana appindicators."
22 | msgstr ""
23 |
24 | msgid "Launcher indicator"
25 | msgstr ""
26 |
27 | msgid ""
28 | "Show the timer in the launcher. Works with the Plank dock, the Unity dash "
29 | "and the dash to dock GNOME extension."
30 | msgstr ""
31 |
32 | msgid "The GoForIt! developers"
33 | msgstr ""
34 |
35 | msgid ""
36 | "GoForIt! is a simple and stylish productivity app, featuring a to-do list, "
37 | "merged with a timer that keeps your focus on the current task."
38 | msgstr ""
39 |
40 | msgid ""
41 | "To-do lists are stored in the Todo.txt format. This simplifies "
42 | "synchronization with mobile devices and makes it possible to edit tasks "
43 | "using other front-ends."
44 | msgstr ""
45 |
46 | msgid ""
47 | "If you already use Todo.txt, beware of the fact, that GoForIt! automatically "
48 | "archives completed tasks to the done list!"
49 | msgstr ""
50 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JMoerman/Go-For-It/9cff7e958024e7404327d624acf528cdae620720/screenshot.png
--------------------------------------------------------------------------------
/src/LegacyStrings.vala:
--------------------------------------------------------------------------------
1 | // vala-lint=skip-file
2 | string[] unused_strings_1_8 {
3 | _("Todo.txt files were found in the destination folder.") /// For versions <= 1.8, shown in a dialog when destination folder contains either todo.txt or done.txt
4 | ,_("What should be done with these files?") /// For versions <= 1.8, shown in a dialog when destination folder contains either todo.txt or done.txt
5 | ,_("Overwrite"),
6 | ,_("The configured folder is already in use by another list.")
7 | ,"Todo.txt "+ _("folder")
8 | , _("Inherit from GTK theme")
9 | ,_("Dark theme")
10 | ,_("Couldn't properly import settings from %s: %s") /// For versions <= 1.8, argument 1: filename, argument 2: error message
11 | ,_("The path to the todo.txt folder does not point to a folder, but to a file or mountable location. Please change the path in the settings to a suitable folder or remove this file."); /// For versions <= 1.8
12 | };
13 |
--------------------------------------------------------------------------------
/src/Recurrence/RecurrenceFrequency.vala:
--------------------------------------------------------------------------------
1 | /* Copyright 2021 GoForIt! developers
2 | *
3 | * This file is part of Go For It!.
4 | *
5 | * Go For It! is free software: you can redistribute it
6 | * and/or modify it under the terms of version 3 of the
7 | * GNU General Public License as published by the Free Software Foundation.
8 | *
9 | * Go For It! is distributed in the hope that it will be
10 | * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
12 | * Public License for more details.
13 | *
14 | * You should have received a copy of the GNU General Public License along
15 | * with Go For It!. If not, see http://www.gnu.org/licenses/.
16 | */
17 |
18 | // Subset of libical RecurrenceFrequency in use by GoForIt!
19 | public enum GOFI.RecurrenceFrequency {
20 | DAILY_RECURRENCE = 3,
21 | WEEKLY_RECURRENCE = 4,
22 | MONTHLY_RECURRENCE = 5,
23 | YEARLY_RECURRENCE = 6;
24 | }
25 |
--------------------------------------------------------------------------------
/src/Recurrence/RecurrenceMode.vala:
--------------------------------------------------------------------------------
1 | /* Copyright 2021 GoForIt! developers
2 | *
3 | * This file is part of Go For It!.
4 | *
5 | * Go For It! is free software: you can redistribute it
6 | * and/or modify it under the terms of version 3 of the
7 | * GNU General Public License as published by the Free Software Foundation.
8 | *
9 | * Go For It! is distributed in the hope that it will be
10 | * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
12 | * Public License for more details.
13 | *
14 | * You should have received a copy of the GNU General Public License along
15 | * with Go For It!. If not, see http://www.gnu.org/licenses/.
16 | */
17 |
18 | public enum GOFI.RecurrenceMode {
19 | NO_RECURRENCE = 0,
20 | PERIODICALLY = 1,
21 | PERIODICALLY_SKIP_OLD = 2,
22 | PERIODICALLY_AUTO_RESCHEDULE = 3,
23 | ON_COMPLETION = 4;
24 | }
25 |
--------------------------------------------------------------------------------
/src/Todo.txt/Constants.vala:
--------------------------------------------------------------------------------
1 | /* Copyright 2019 GoForIt! developers
2 | *
3 | * This file is part of GoForIt!.
4 | *
5 | * GoForIt! is free software: you can redistribute it
6 | * and/or modify it under the terms of version 3 of the
7 | * GNU General Public License as published by the Free Software Foundation.
8 | *
9 | * GoForIt! is distributed in the hope that it will be
10 | * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
12 | * Public License for more details.
13 | *
14 | * You should have received a copy of the GNU General Public License along
15 | * with GoForIt!. If not, see http://www.gnu.org/licenses/.
16 | */
17 | namespace GOFI.TXT {
18 | const string PROVIDER_NAME = "Todo.txt";
19 | }
20 |
--------------------------------------------------------------------------------
/src/go-for-it.deps:
--------------------------------------------------------------------------------
1 | gobject-2.0
2 | gio-2.0
3 | gtk+-3.0
4 | libpeas-1.0
5 |
--------------------------------------------------------------------------------
/src/go-for-it.pc.in:
--------------------------------------------------------------------------------
1 | prefix=@PREFIX@
2 | exec_prefix=@DOLLAR@{prefix}
3 | libdir=@DOLLAR@{prefix}/lib
4 | includedir=@DOLLAR@{prefix}/include
5 |
6 | Name: Go For It!
7 | Description: Go For It! headers
8 | Version: @VERSION@
9 | Libs: -L@DOLLAR@{libdir} -l@LIBNAME@
10 | Cflags: -I@DOLLAR@{includedir}/@PACKAGE_NAME@
11 | Requires: gtk+-3.0 libpeas-1.0
12 |
--------------------------------------------------------------------------------
/tests/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | set (TEST_EXEC_NAME ${APP_ID}-tests)
2 |
3 | # files we want to compile
4 | include (ValaPrecompile)
5 | vala_precompile (VALA_C ${TEST_EXEC_NAME}
6 | TestCase.vala
7 | DragListTest.vala
8 | Tests.vala
9 | todo.txt/TodoTaskTest.vala
10 | todo.txt/TaskStoreTest.vala
11 | todo.txt/TaskManagerTest.vala
12 |
13 | # tell what libraries to use when compiling
14 | PACKAGES
15 | ${DEPS_VALA_PACKAGES}
16 | OPTIONS
17 | ${VALAC_OPTIONS}
18 | CUSTOM_VAPIS
19 | ${CMAKE_BINARY_DIR}/${LIBRARY_PATH}/${LIBNAME}_internal.vapi
20 | CUSTOM_VAPIS
21 | ${CUSTOM_VAPIS}
22 | )
23 |
24 | # tell cmake what to call the executable we just made
25 | add_executable (${TEST_EXEC_NAME} ${VALA_C})
26 | add_dependencies (${TEST_EXEC_NAME} ${LIBNAME})
27 | target_link_libraries (${TEST_EXEC_NAME} ${DEPS_LIBRARIES} ${LIBNAME})
28 |
29 | set_target_properties (${TEST_EXEC_NAME} PROPERTIES
30 | INCLUDE_DIRECTORIES ${CMAKE_BINARY_DIR}/${LIBRARY_PATH}
31 | )
32 |
--------------------------------------------------------------------------------
/tests/Tests.vala:
--------------------------------------------------------------------------------
1 | void main (string[] args) {
2 | Gtk.init (ref args);
3 | Test.init (ref args);
4 |
5 | TestSuite.get_root ().add_suite (new TaskStoreTest ().get_suite ());
6 | TestSuite.get_root ().add_suite (new TodoTaskTest ().get_suite ());
7 | TestSuite.get_root ().add_suite (new DragListTest ().get_suite ());
8 | TestSuite.get_root ().add_suite (new TaskManagerTest ().get_suite ());
9 |
10 | Idle.add (() => {
11 | Test.run ();
12 | Gtk.main_quit ();
13 | return false;
14 | });
15 |
16 | Gtk.main ();
17 | }
18 |
--------------------------------------------------------------------------------