├── debian ├── compat ├── install ├── source │ └── format ├── rules ├── postinst ├── control ├── copyright └── changelog ├── usr ├── share │ ├── thingy │ │ ├── doc-doc.svg │ │ ├── doc-docx.svg │ │ ├── doc-ppt.svg │ │ ├── doc-pptx.svg │ │ ├── doc-xls.svg │ │ ├── doc-xlsx.svg │ │ ├── thingy.css │ │ ├── doc.svg │ │ ├── doc-epub.svg │ │ ├── doc-pdf.svg │ │ ├── doc-odp.svg │ │ └── doc-txt.svg │ ├── glib-2.0 │ │ └── schemas │ │ │ └── org.x.thingy.gschema.xml │ └── applications │ │ └── thingy.desktop └── bin │ └── thingy ├── test ├── makepot ├── Makefile ├── .github └── workflows │ └── build.yml ├── README.md ├── generate_desktop_files ├── thingy.pot └── po ├── thingy-ga.po ├── thingy-zgh.po ├── thingy-ckb.po ├── thingy-tt.po ├── thingy-ig.po ├── thingy-zh_TW.po ├── thingy-am.po ├── thingy-ko.po ├── thingy-zh_CN.po ├── thingy-ja.po ├── thingy-sn.po ├── thingy-he.po ├── thingy-lo.po ├── thingy-kk.po ├── thingy-ar.po ├── thingy-et.po ├── thingy-gl.po ├── thingy-lv.po ├── thingy-ro.po ├── thingy-be.po ├── thingy-fa.po ├── thingy-tr.po ├── thingy-eu.po ├── thingy-kab.po ├── thingy-ru.po ├── thingy-ast.po ├── thingy-ca.po ├── thingy-th.po ├── thingy-uk.po ├── thingy-en_CA.po ├── thingy-hr.po ├── thingy-ku.po ├── thingy-fi.po ├── thingy-rue.po ├── thingy-aa.po ├── thingy-hi.po ├── thingy-ia.po ├── thingy-ie.po ├── thingy-la.po ├── thingy-sl.po ├── thingy-szl.po ├── thingy-mk.po ├── thingy-sv.po ├── thingy-cs.po ├── thingy-cy.po ├── thingy-gu.po ├── thingy-is.po ├── thingy-it.po ├── thingy-pl.po ├── thingy-sq.po ├── thingy-es.po ├── thingy-ms.po ├── thingy-pt.po ├── thingy-sr.po ├── thingy-vi.po ├── thingy-bn.po ├── thingy-da.po ├── thingy-el.po ├── thingy-en_GB.po ├── thingy-ka.po ├── thingy-lt.po ├── thingy-nn.po ├── thingy-bg.po ├── thingy-eo.po ├── thingy-fr.po ├── thingy-nb.po ├── thingy-pt_BR.po ├── thingy-sk.po ├── thingy-te.po ├── thingy-nl.po ├── thingy-fil.po ├── thingy-hu.po ├── thingy-oc.po ├── thingy-de.po ├── thingy-fr_CA.po ├── thingy-id.po ├── thingy-kn.po ├── thingy-sr@latin.po ├── thingy-uz.po ├── thingy-br.po └── thingy-ml.po /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /usr/share/thingy/doc-doc.svg: -------------------------------------------------------------------------------- 1 | doc-odt.svg -------------------------------------------------------------------------------- /usr/share/thingy/doc-docx.svg: -------------------------------------------------------------------------------- 1 | doc-odt.svg -------------------------------------------------------------------------------- /usr/share/thingy/doc-ppt.svg: -------------------------------------------------------------------------------- 1 | doc-odp.svg -------------------------------------------------------------------------------- /usr/share/thingy/doc-pptx.svg: -------------------------------------------------------------------------------- 1 | doc-odp.svg -------------------------------------------------------------------------------- /usr/share/thingy/doc-xls.svg: -------------------------------------------------------------------------------- 1 | doc-ods.svg -------------------------------------------------------------------------------- /usr/share/thingy/doc-xlsx.svg: -------------------------------------------------------------------------------- 1 | doc-ods.svg -------------------------------------------------------------------------------- /usr/bin/thingy: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | /usr/lib/thingy/thingy.py "$@" & 3 | -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo rm -rf /usr/lib/thingy 3 | sudo rm -rf /usr/share/thingy 4 | sudo cp -R usr / 5 | thingy 6 | -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | intltool-extract --type=gettext/glade usr/share/thingy/thingy.ui 3 | xgettext --language=Python --keyword=_ --keyword=N_ --output=thingy.pot usr/lib/thingy/*.py generate_desktop_files usr/share/thingy/thingy.ui.h 4 | rm -f usr/share/thingy/*.ui.h 5 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') 4 | 5 | %: 6 | dh ${@} 7 | 8 | # Inject version number in the code 9 | override_dh_installdeb: 10 | dh_installdeb 11 | for pkg in $$(dh_listpackages -i); do \ 12 | find debian/$$pkg -type f -exec sed -i -e s/__DEB_VERSION__/$(DEB_VERSION)/g {} +; \ 13 | done 14 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | case "$1" in 5 | configure) 6 | if which glib-compile-schemas >/dev/null 2>&1 7 | then 8 | glib-compile-schemas /usr/share/glib-2.0/schemas 9 | fi 10 | ;; 11 | 12 | abort-upgrade|abort-remove|abort-deconfigure) 13 | 14 | ;; 15 | 16 | *) 17 | echo "postinst called with unknown argument \`$1'" >&2 18 | exit 1 19 | ;; 20 | esac 21 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: buildmo 2 | 3 | buildmo: 4 | @echo "Building the mo files" 5 | # WARNING: the second sed below will only works correctly with the languages that don't contain "-" 6 | for file in `ls po/*.po`; do \ 7 | lang=`echo $$file | sed 's@po/@@' | sed 's/\.po//' | sed 's/thingy-//'`; \ 8 | install -d usr/share/locale/$$lang/LC_MESSAGES/; \ 9 | msgfmt -o usr/share/locale/$$lang/LC_MESSAGES/thingy.mo $$file; \ 10 | done \ 11 | 12 | clean: 13 | rm -rf usr/share/locale 14 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | name: Build 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | branches: 9 | - master 10 | workflow_dispatch: 11 | 12 | jobs: 13 | build: 14 | uses: linuxmint/github-actions/.github/workflows/do-builds.yml@master 15 | with: 16 | commit_id: master 17 | ############################## Comma separated list - like 'linuxmint/xapp, linuxmint/cinnamon-desktop' 18 | dependencies: linuxmint/xapp 19 | ############################## 20 | 21 | -------------------------------------------------------------------------------- /usr/share/thingy/thingy.css: -------------------------------------------------------------------------------- 1 | /* Remove all the border and bg styling */ 2 | .thingy-button.flat, 3 | .thingy-button.flat:hover, 4 | .thingy-button.flat:active { 5 | border: none; 6 | background-image: none; 7 | background-color: transparent; 8 | } 9 | 10 | .thingy-image { 11 | border-radius: 0px; 12 | border: 1px solid #aaa; 13 | box-shadow: 4px 4px 6px alpha(black, 0.2); 14 | margin-bottom: 7px; 15 | -gtk-icon-shadow: none; 16 | } 17 | 18 | .thingy-button:hover .thingy-image { 19 | box-shadow: 4px 4px 6px alpha(black, 0.4); 20 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Thingy 2 | ![build](https://github.com/linuxmint/thingy/actions/workflows/build.yml/badge.svg) 3 | 4 | Thingy is used to quickly access recent and favorite documents. 5 | 6 | It's an XApp so it can work in any distribution and many desktop environments (Cinnamon, MATE, Xfce, GNOME, etc..). 7 | 8 | # Translations 9 | 10 | Please use Launchpad to translate Thingy: https://translations.launchpad.net/linuxmint/latest/. 11 | 12 | The PO files in this project are imported from there. 13 | 14 | # License 15 | 16 | - Code: GPLv3 17 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: thingy 2 | Section: misc 3 | Priority: optional 4 | Maintainer: Linux Mint 5 | Build-Depends: debhelper (>= 9) 6 | Standards-Version: 3.9.6 7 | Rules-Requires-Root: no 8 | 9 | Package: thingy 10 | Architecture: all 11 | Depends: python3, 12 | python3-gi, 13 | python3-setproctitle, 14 | gir1.2-xapp-1.0 (>= 2.5.0), 15 | xreader, 16 | libgsf-bin, 17 | ${misc:Depends} 18 | Description: Document Manager 19 | Utility application used to make collections and quickly access recent and favorite documents. 20 | -------------------------------------------------------------------------------- /usr/share/glib-2.0/schemas/org.x.thingy.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1000 6 | 7 | 8 | 9 | 10 | 600 11 | 12 | 13 | 14 | 15 | false 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /generate_desktop_files: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | DOMAIN = "thingy" 4 | PATH = "/usr/share/locale" 5 | 6 | import os 7 | import gettext 8 | from mintcommon import additionalfiles 9 | 10 | os.environ['LANGUAGE'] = "en_US.UTF-8" 11 | gettext.install(DOMAIN, PATH) 12 | 13 | prefix = "[Desktop Entry]\n" 14 | 15 | suffix = """Exec=thingy 16 | Icon=thingy 17 | Terminal=false 18 | Type=Application 19 | Encoding=UTF-8 20 | Categories=GTK;Office; 21 | Keywords=files;collection;documents;recent;favorite 22 | StartupNotify=false 23 | """ 24 | 25 | additionalfiles.generate(DOMAIN, PATH, "usr/share/applications/thingy.desktop", prefix, _("Library"), _("Recent and favorite documents"), suffix) 26 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: thingy 3 | Upstream-Contact: Linux Mint 4 | Source: https://github.com/linuxmint/thingy 5 | 6 | Files: * 7 | Copyright: 2021 Linux Mint 8 | License: GPL-3+ 9 | This program is free software; you can redistribute it and/or modify 10 | it under the terms of the GNU General Public License as published by 11 | the Free Software Foundation; either version 3 of the License, or 12 | (at your option) any later version. 13 | . 14 | This program is distributed in the hope that it will be useful, 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | GNU General Public License for more details. 18 | . 19 | On Debian systems, the complete text of the GNU General 20 | Public License can be found in `/usr/share/common-licenses/GPL' 21 | -------------------------------------------------------------------------------- /thingy.pot: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the PACKAGE package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: PACKAGE VERSION\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 | "Last-Translator: FULL NAME \n" 14 | "Language-Team: LANGUAGE \n" 15 | "Language: \n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=CHARSET\n" 18 | "Content-Transfer-Encoding: 8bit\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-ga.po: -------------------------------------------------------------------------------- 1 | # Irish translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-09-07 08:10+0000\n" 12 | "Last-Translator: Mark O'Dowd \n" 13 | "Language-Team: Irish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Leabharlann" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Oscail" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-zgh.po: -------------------------------------------------------------------------------- 1 | # Standard Moroccan Tamazight translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-02-20 19:22+0000\n" 12 | "Last-Translator: Hakim Oubouali \n" 13 | "Language-Team: Standard Moroccan Tamazight \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "ⵖⴼ" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "ⴼⴼⵖ" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "ⵕⵥⵎ" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-ckb.po: -------------------------------------------------------------------------------- 1 | # Kurdish, Central translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-05-17 01:02+0000\n" 12 | "Last-Translator: rasti \n" 13 | "Language-Team: Kurdish, Central \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "دەربارە" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "دەرچوون" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "کردنەوە" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "سڕینەوە لە دڵخوازەکان" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-tt.po: -------------------------------------------------------------------------------- 1 | # Tatar translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-11-11 11:20+0000\n" 12 | "Last-Translator: Karolina Novosiltseva \n" 13 | "Language-Team: Tatar \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Китапханә" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Турында" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Чыгу" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ачу" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Соңгы һәм яраткан документлар" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-ig.po: -------------------------------------------------------------------------------- 1 | # Igbo translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-09-30 19:48+0000\n" 12 | "Last-Translator: Mr. Robot \n" 13 | "Language-Team: Igbo \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "ọba akwụkwọ" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Banyere" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Kwụsị" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "meghe" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Wepụ na ọkacha mmasị" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Tinye na ọkacha mmasị" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-zh_TW.po: -------------------------------------------------------------------------------- 1 | # Chinese (Traditional) translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-02-11 17:43+0000\n" 12 | "Last-Translator: 爽自由 \n" 13 | "Language-Team: Chinese (Traditional) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "檔案庫" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "關於" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "結束" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "開啟" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "開啟存放的資料夾" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "從最愛移除" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "加到最愛" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "移至回收筒" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "最近開啟以及最愛的檔案" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "找不到檔案" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "可經由開啟或加入最愛來新增文件" 64 | -------------------------------------------------------------------------------- /po/thingy-am.po: -------------------------------------------------------------------------------- 1 | # Amharic translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-28 17:40+0000\n" 12 | "Last-Translator: samson \n" 13 | "Language-Team: Amharic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "መጻህፍት ቤት" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "ስለ" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "ማጥፊያ" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "መክፈቻ" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "ፎልደሩን የያዘውን መክፈቻ" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ከ የምወደው ውስጥ ማስወገጃ" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "ወደ የምወደው ውስጥ መጨመሪያ" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ወደ ቆሻሻ ማንቀሳቀሻ" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "የ ቅርብ ጊዜ እና የምወዳቸው ሰነዶች" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ምንም ሰነድ አልተገኘም" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | -------------------------------------------------------------------------------- /po/thingy-ko.po: -------------------------------------------------------------------------------- 1 | # Korean translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-07-09 16:17+0000\n" 12 | "Last-Translator: Jung-Kyu Park \n" 13 | "Language-Team: Korean \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "라이브러리" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "정보" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "닫기" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "열기" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "파일이 저장된 폴더 열기" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "즐겨찾기에서 제거" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "즐겨찾기에 추가" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "휴지통으로 옮기기" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "즐겨찾기 및 최근 사용한 문서" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "문서가 없습니다" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "문서를 열거나 즐겨찾기로 표시해서 문서를 추가할 수 있습니다." 64 | -------------------------------------------------------------------------------- /po/thingy-zh_CN.po: -------------------------------------------------------------------------------- 1 | # Chinese (Simplified) translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-09-10 16:33+0000\n" 12 | "Last-Translator: shenlebantongying \n" 13 | "Language-Team: Chinese (Simplified) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "书库" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "关于" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "退出" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "打开" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "打开所在目录" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "从收藏中删除" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "添加到收藏夹" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "移动到回收站" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "最近及收藏的文件" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "无相关文件" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "你可以通过打开或者收藏来添加文件" 64 | -------------------------------------------------------------------------------- /po/thingy-ja.po: -------------------------------------------------------------------------------- 1 | # Japanese translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-12-02 11:02+0000\n" 12 | "Last-Translator: kmyyfz8q \n" 13 | "Language-Team: Japanese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: ja\n" 20 | 21 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 22 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 23 | msgid "Library" 24 | msgstr "ライブラリ" 25 | 26 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 27 | msgid "About" 28 | msgstr "このアプリケーションについて" 29 | 30 | #: usr/lib/thingy/thingy.py:91 31 | msgid "Quit" 32 | msgstr "終了" 33 | 34 | #: usr/lib/thingy/thingy.py:284 35 | msgid "Open" 36 | msgstr "開く" 37 | 38 | #: usr/lib/thingy/thingy.py:287 39 | msgid "Open containing folder" 40 | msgstr "このアイテムがあるフォルダーを開く" 41 | 42 | #: usr/lib/thingy/thingy.py:292 43 | msgid "Remove from favorites" 44 | msgstr "お気に入りから削除" 45 | 46 | #: usr/lib/thingy/thingy.py:295 47 | msgid "Add to favorites" 48 | msgstr "お気に入りに追加" 49 | 50 | #: usr/lib/thingy/thingy.py:299 51 | msgid "Move to trash" 52 | msgstr "ゴミ箱に移動" 53 | 54 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 55 | msgid "Recent and favorite documents" 56 | msgstr "最近またはお気に入りのドキュメント" 57 | 58 | #: usr/share/thingy/thingy.ui.h:3 59 | msgid "No documents found" 60 | msgstr "ドキュメントがありません" 61 | 62 | #: usr/share/thingy/thingy.ui.h:4 63 | msgid "You can add documents by opening them or by marking them as favorites" 64 | msgstr "ドキュメントを開くか、お気に入りとしてマークすると、ここに追加されます" 65 | -------------------------------------------------------------------------------- /po/thingy-sn.po: -------------------------------------------------------------------------------- 1 | # Shona translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-11-04 11:02+0000\n" 12 | "Last-Translator: Keith Matarutse \n" 13 | "Language-Team: Shona \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Maringe" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Buda" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Zarura" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Zarura butiro rinazvo" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Bvisa mune zvinofarirwa" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Isa kune zvinofarirwa" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Endesa kumarara" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Apana mabepa awanikwa" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Unogona kuisa mabepa nekuwa vura kana kuwa farira" 64 | -------------------------------------------------------------------------------- /po/thingy-he.po: -------------------------------------------------------------------------------- 1 | # Hebrew translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-08-23 08:47+0000\n" 12 | "Last-Translator: Avi Markovitz \n" 13 | "Language-Team: Hebrew \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "ספרייה" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "על אודות" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "יציאה" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "פתיחה" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "פתיחת תיקייה מכילה" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "הסרה ממועדפים" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "הוספה למועדפים" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "העברה לסל־מיחזור" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "מסמכים אחרונים ומועדפים" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "לא נמצאו מסמכים" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "ניתן להוסיף מסמכים על־ידי פתיחתם או סימונם כמועדפים" 64 | -------------------------------------------------------------------------------- /po/thingy-lo.po: -------------------------------------------------------------------------------- 1 | # Lao translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-10-15 00:12+0000\n" 12 | "Last-Translator: boneni \n" 13 | "Language-Team: Lao \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "ຫ້ອງສະໝຸດ" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "ກ່ຽວກັບ" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "ອອກ" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "ເປີດ" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "ເປີດໂຟນເດີທີ່ບັນຈຸ" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ເອົາອອກຈາກລາຍການທີ່ມັກ" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "ເພີ່ມໃສ່ລາຍການທີ່ມັກ" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ຍ້າຍໄປຖັງຂີ້ເຫຍື້ອ" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "ເອກະສານທີ່ໃຊ້ຫຼ້າສຸດ ແລະ ລາຍການທີ່ມັກ" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ບໍ່ພົບເອກະສານ" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "ທ່ານສາມາດເພີ່ມເອກະສານໄດ້ໂດຍການເປີດ ຫຼື ໝາຍໄວ້ເປັນລາຍການທີ່ມັກ" 64 | -------------------------------------------------------------------------------- /po/thingy-kk.po: -------------------------------------------------------------------------------- 1 | # Kazakh translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-05 09:41+0000\n" 12 | "Last-Translator: Murat Käribay \n" 13 | "Language-Team: Kazakh \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Жинақ" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Бағдарлама жайлы" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Шығу" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ашу" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Орналасқан бумасын ашу" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Таңдаулыдан алып тастау" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Таңдаулыға қосу" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Себетке тастау" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Жуырдағы мен таңдаулы құжаттар" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Құжат табылмады" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Құжаттарды ашып, немесе таңдаулы деп белгілеп, қоса аласыз" 64 | -------------------------------------------------------------------------------- /po/thingy-ar.po: -------------------------------------------------------------------------------- 1 | # Arabic translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-01-11 12:35+0000\n" 12 | "Last-Translator: Sod Emin \n" 13 | "Language-Team: Arabic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "المكتبة" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "عن التطبيق" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "إغلاق" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "فتح" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "فتح المجلد المحتوي" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "إزالة من المفضلة" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "إضافة إلى المفضلة" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "نقل إلى سلّة المهملات" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "المستندات المستخدمة حديثا والمفضلة" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "لم يُعثَر على مستندات" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "يمكنك إضافة المستندات عن طريق فتحها أو بوضع علامة عليها كمفضلة" 64 | -------------------------------------------------------------------------------- /po/thingy-et.po: -------------------------------------------------------------------------------- 1 | # Estonian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-25 11:30+0000\n" 12 | "Last-Translator: vaba \n" 13 | "Language-Team: Estonian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Kogumik" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Teave" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Välju" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ava" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ava sisaldav kaust" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Eemalda lemmikutest" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Lisa lemmikutesse" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Viska prügikasti" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Viimased ja lemmik dokumendid" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Dokumente ei leitud" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Dokumente saate lisada, avades need või märkides need lemmikute hulka" 65 | -------------------------------------------------------------------------------- /po/thingy-gl.po: -------------------------------------------------------------------------------- 1 | # Galician translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-05-01 18:56+0000\n" 12 | "Last-Translator: Eloi Barcón Piñeiro \n" 13 | "Language-Team: Galician \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Acerca de" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Saír" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Abrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Eliminar dos favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Engadir a favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover ao lixo" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documentos recentes e favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Non se atoparon documentos" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Podes engadir documentos abríndoos ou marcándoos como favoritos" 64 | -------------------------------------------------------------------------------- /po/thingy-lv.po: -------------------------------------------------------------------------------- 1 | # Latvian translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-09-09 14:45+0000\n" 12 | "Last-Translator: Klavs Petersons \n" 13 | "Language-Team: Latvian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotēka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Par" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Iziet" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Atvērt" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Atvērt, kurā ir mape" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Noņemt no izlases" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Pievienot izlasei" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Pārvietot uz atkritni" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Jaunākie un izlases dokumenti" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nav atrasts neviens dokuments" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Dokumentus var pievienot, tos atverot vai atzīmējot kā izlasi" 64 | -------------------------------------------------------------------------------- /po/thingy-ro.po: -------------------------------------------------------------------------------- 1 | # Romanian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-14 20:02+0000\n" 12 | "Last-Translator: Vladm \n" 13 | "Language-Team: Romanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotecă" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Despre" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Ieșire" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Deschide" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Deschide dosarul conținător" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Elimină din favorite" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Adaugă la favorite" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mută la gunoi" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documente favorite și recente" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Niciun document găsit" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Poți adăuga documente deschizându-le sau adăugându-le la favorite" 64 | -------------------------------------------------------------------------------- /po/thingy-be.po: -------------------------------------------------------------------------------- 1 | # Belarusian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-06-28 17:44+0000\n" 12 | "Last-Translator: Anton Hryb \n" 13 | "Language-Team: Belarusian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Бібліятэка" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Аб праграме" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Выйсці" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Адкрыць" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Адкрыць папку з файлам" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Выдаліць з абраных" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Дадаць да абраных" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Выкінуць у сметніцу" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Нядаўнія і абраныя дакументы" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Дакументы не знойдзены" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Каб дадаць дакумент, проста адкрыйце яго або пазначце як абраны" 64 | -------------------------------------------------------------------------------- /po/thingy-fa.po: -------------------------------------------------------------------------------- 1 | # Persian translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-08-05 06:02+0000\n" 12 | "Last-Translator: Mr.Ravi \n" 13 | "Language-Team: Persian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "کتابخانه" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "درباره" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "خروج" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "بازکردن" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "بازکردن پوشه‌ی حاوی" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "حذف از علاقه‌مندی‌ها" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "افزودن به علاقه‌مندی‌ها" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "انتقال به زباله‌دان" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "پرونده های اخیر و موردعلاقه" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "هیچ سندی پیدا نشد" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "میتوانید با بازکردن یا علامت زدن به عنوان موردعلاقه اسناد را اضافه کنید" 65 | -------------------------------------------------------------------------------- /po/thingy-tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 21:46+0000\n" 12 | "Last-Translator: Butterfly \n" 13 | "Language-Team: Turkish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Kütüphane" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Hakkında" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Çıkış" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Aç" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Bulunduğu dizini aç" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Sık kullanılanlardan sil" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Sık kullanılanlara ekle" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Çöpe taşı" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Son ve sık kullanılan belgeler" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Belge bulunamadı" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Belgeleri açarak ya da sık kullanılan olarak işaretleyerek ekleyebilirsiniz" 65 | -------------------------------------------------------------------------------- /po/thingy-eu.po: -------------------------------------------------------------------------------- 1 | # Basque translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-08 11:52+0000\n" 12 | "Last-Translator: Asier Iturralde Sarasola \n" 13 | "Language-Team: Basque \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Liburutegia" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Honi buruz" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Irten" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ireki" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ireki dagoen karpeta" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Kendu gogokoetatik" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Gehitu gogokoetara" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Bota zakarrontzira" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Azken dokumentuak eta gogokoak" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ez da dokumenturik aurkitu" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Dokumentuak gehitzeko ireki itzazu edo gogoko bezala markatu." 64 | -------------------------------------------------------------------------------- /po/thingy-kab.po: -------------------------------------------------------------------------------- 1 | # Kabyle translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-04 12:30+0000\n" 12 | "Last-Translator: Yacine Bouklif \n" 13 | "Language-Team: Kabyle \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Tamkaṛḍit" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Ɣef" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Ffeɣ" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ldi" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ldi akaram amagbar" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Kkes seg yinurifen" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Rnu s inurifen" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Smutti ɣer tqecwalt" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Isemliyen n melmi kan akked yinurifen" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ulac isemliyen yettwafen" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Tzemreḍ ad ternuḍ isemliyen s ulday-nnsen neɣ s ucraḍ-nnsen d inurifen" 65 | -------------------------------------------------------------------------------- /po/thingy-ru.po: -------------------------------------------------------------------------------- 1 | # Russian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-02 07:12+0000\n" 12 | "Last-Translator: Aleksey Kabanov \n" 13 | "Language-Team: Russian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Библиотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "О программе" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Выйти" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Открыть" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Открыть папку объекта" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Убрать из избранного" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Добавить в избранное" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Переместить в корзину" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Недавние и избранные документы" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Документы не найдены" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Документы можно добавлять, открывая их или отмечая как избранные" 64 | -------------------------------------------------------------------------------- /po/thingy-ast.po: -------------------------------------------------------------------------------- 1 | # Asturian translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-07-19 06:52+0000\n" 12 | "Last-Translator: Havi \n" 13 | "Language-Team: Asturian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Tocante a" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Colar" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Abrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Abrir direutoriu contenedor" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Desaniciar de favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Amestar a favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover a la papelera" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Ficheros recientes ya favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nun s'atoparon documentos" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Puedes añedir ficheros abriéndolos o esbillándolos comu favoritos." 64 | -------------------------------------------------------------------------------- /po/thingy-ca.po: -------------------------------------------------------------------------------- 1 | # Catalan translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-23 13:09+0000\n" 12 | "Last-Translator: Isidro Pisa \n" 13 | "Language-Team: Catalan \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Llibreria" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Quant a" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Surt" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Obre" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Obre la carpeta contenidora" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Treu dels favorits" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Afegeix als favorits" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mou a la paperera" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documents recents i preferits" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "No s'ha trobat cap document" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Podeu afegir-hi documents obrint-los o marcant-los com a preferits" 64 | -------------------------------------------------------------------------------- /po/thingy-th.po: -------------------------------------------------------------------------------- 1 | # Thai translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-09-21 09:23+0000\n" 12 | "Last-Translator: Rockworld \n" 13 | "Language-Team: Thai \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "คลัง" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "เกี่ยวกับ" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "ออก" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "เปิด" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "เปิดโฟลเดอร์ที่เก็บ" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ลบออกจากรายการโปรด" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "เพิ่มลงในรายการโปรด" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ทิ้งลงถังขยะ" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "เอกสารล่าสุดและเอกสารโปรด" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ไม่พบเอกสารใด" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "คุณสามารถเพิ่มเอกสารได้โดยการเปิดเอกสารนั้น " 65 | "หรือทำเครื่องหมายเอกสารนั้นว่าเป็นเอกสารโปรด" 66 | -------------------------------------------------------------------------------- /po/thingy-uk.po: -------------------------------------------------------------------------------- 1 | # Ukrainian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-06-27 20:31+0000\n" 12 | "Last-Translator: Ostap Telychko \n" 13 | "Language-Team: Ukrainian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Бібліотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Про..." 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Вийти" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Відкрити" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Відкрити вміст каталогу" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Видалити з улюблених" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Додати до улюбленого" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Пересунути до смітника" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Останні та улюблені документи" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Документів не знайдено" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Ви можете додати документи, відкривши їх або позначивши як вибрані" 64 | -------------------------------------------------------------------------------- /po/thingy-en_CA.po: -------------------------------------------------------------------------------- 1 | # English (Canada) translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-07-12 09:58+0000\n" 12 | "Last-Translator: Dawid Wiktor \n" 13 | "Language-Team: English (Canada) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Library" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "About" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Quit" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Open" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Open containing folder" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remove from favorites" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Add to favorites" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Move to trash" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Recent and favorite documents" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "No documents found" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "You can add documents by opening them or by marking them as favorites" 65 | -------------------------------------------------------------------------------- /po/thingy-hr.po: -------------------------------------------------------------------------------- 1 | # Croatian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-23 12:48+0000\n" 12 | "Last-Translator: gogo \n" 13 | "Language-Team: Croatian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Zbirka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O programu" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Zatvori" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Otvori" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Otvori sadržajnu mapu" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Ukloni iz omiljenih" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Dodaj u omiljeno" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Premjesti u smeće" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nedavni i omiljeni dokumenti" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nema pronađenih dokumenata" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Dokumente možete dodati tako da ih otvorite ili označite kao omiljene" 65 | -------------------------------------------------------------------------------- /po/thingy-ku.po: -------------------------------------------------------------------------------- 1 | # Kurdish translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-08-12 20:18+0000\n" 12 | "Last-Translator: Sahin Elci \n" 13 | "Language-Team: Kurdish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Pirtûkxane" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Derbar" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Derkeve" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Veke" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Peldanka tê de veke" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Ji favoriyan rake" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Li favoriyan zêde bike" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Birina Gilêşdankê" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Belgeyên dawî û bijare" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Belge nehatin dîtin" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Hûn dikarin bi vekirina wan an bi nîşankirina wan wekî bijare belgeyan zêde " 65 | "bikin" 66 | -------------------------------------------------------------------------------- /po/thingy-fi.po: -------------------------------------------------------------------------------- 1 | # Finnish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-25 21:25+0000\n" 12 | "Last-Translator: Kimmo Kujansuu \n" 13 | "Language-Team: Finnish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Kirjasto" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Tietoja" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Sulje" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Avaa" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Avaa tiedoston sisältävä kansio" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Poista suosikeista" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Lisää suosikkeihin" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Siirrä roskakoriin" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Edelliset ja suositut asiakirjat" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Asiakirjoja ei löytynyt" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Voit lisätä asiakirjoja avaamalla niitä tai merkitsemällä suosikeiksi" 65 | -------------------------------------------------------------------------------- /po/thingy-rue.po: -------------------------------------------------------------------------------- 1 | # Rusyn translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-11-11 20:39+0000\n" 12 | "Last-Translator: Vondrosh tvmc \n" 13 | "Language-Team: Rusyn \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Бібліотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "За" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Уйти" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Одкрыти" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Одкрыти фасціклу мавучу у собі" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Удалити из облюбленых" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Придати у облюблені" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Веричи у смітя" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Послїдні ай облюблені документы" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Не найшли сьме документув" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Вы можете придавати документы, одкрывавучи їх вадь позначити їх ги облюблені." 65 | -------------------------------------------------------------------------------- /po/thingy-aa.po: -------------------------------------------------------------------------------- 1 | # Afar translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-21 04:09+0000\n" 12 | "Last-Translator: Charif AYFARAH \n" 13 | "Language-Team: Afar \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Maktabata" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Kinnuk" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Cab" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Fak" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Edde yan oli fak" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Assakootuk kal" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Assakootut osis" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Guddaafâ fan rub" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Axayih kee assakoot le sanaditte" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Sanaditte ma geytiminna" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Sanaditte fakka hayteh edde osissam duddah aw assakootut tan axcuk asta edde " 65 | "haytam duddah" 66 | -------------------------------------------------------------------------------- /po/thingy-hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-14 18:00+0000\n" 12 | "Last-Translator: Panwar \n" 13 | "Language-Team: Hindi \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "संग्रह" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "बारे में" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "बंद करें" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "खोलें" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "निर्दिष्ट फाइल युक्त फोल्डर खोलें" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "पसंदीदा से हटाएँ" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "पसंदीदा में जोड़ें" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ट्रैश में भेजें" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "हालिया व पसंदीदा प्रलेख" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "कोई प्रलेख नहीं मिला" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "प्रलेख जोड़ने हेतु आप उन्हें खोल सकते हैं या उन्हें पसंदीदा के रूप में " 65 | "चिन्हित कर सकते हैं।" 66 | -------------------------------------------------------------------------------- /po/thingy-ia.po: -------------------------------------------------------------------------------- 1 | # Interlingua translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-12-31 07:14+0000\n" 12 | "Last-Translator: eduver \n" 13 | "Language-Team: Interlingua \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Libreria" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "A proposito" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Quitar" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Aperir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Aperir le dossier continente" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remover ex favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Adder a favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover al immunditia" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documentos recente e favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nulle documentos trovate" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Tu pote adder documentos per aperir los o per marcar los como favoritos" 65 | -------------------------------------------------------------------------------- /po/thingy-ie.po: -------------------------------------------------------------------------------- 1 | # Interlingue translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-05 05:40+0000\n" 12 | "Last-Translator: Silvara \n" 13 | "Language-Team: Interlingue \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Pri" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Surtir" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Aperter" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Aperter li contenent fólder" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remover ex li preferet" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Adjunter al preferet" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover al Paper-corb" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Recent e preferet documentes" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Null documentes trovat" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Vu posse adjunter documentes apertente les o marcante les quam li preferet" 65 | -------------------------------------------------------------------------------- /po/thingy-la.po: -------------------------------------------------------------------------------- 1 | # Latin translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-04-07 14:42+0000\n" 12 | "Last-Translator: Davide Novemila \n" 13 | "Language-Team: Latin \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: la\n" 20 | 21 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 22 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 23 | msgid "Library" 24 | msgstr "Bibliotheca" 25 | 26 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 27 | msgid "About" 28 | msgstr "Circa" 29 | 30 | #: usr/lib/thingy/thingy.py:91 31 | msgid "Quit" 32 | msgstr "Relinque" 33 | 34 | #: usr/lib/thingy/thingy.py:284 35 | msgid "Open" 36 | msgstr "Aperi" 37 | 38 | #: usr/lib/thingy/thingy.py:287 39 | msgid "Open containing folder" 40 | msgstr "Directorium contines aperi" 41 | 42 | #: usr/lib/thingy/thingy.py:292 43 | msgid "Remove from favorites" 44 | msgstr "E praepositis remove" 45 | 46 | #: usr/lib/thingy/thingy.py:295 47 | msgid "Add to favorites" 48 | msgstr "Ad praeposita adde" 49 | 50 | #: usr/lib/thingy/thingy.py:299 51 | msgid "Move to trash" 52 | msgstr "Ad purgamenta move" 53 | 54 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 55 | msgid "Recent and favorite documents" 56 | msgstr "Documenta recenta atque praeposita" 57 | 58 | #: usr/share/thingy/thingy.ui.h:3 59 | msgid "No documents found" 60 | msgstr "Documenta nulla inveniuntur" 61 | 62 | #: usr/share/thingy/thingy.ui.h:4 63 | msgid "You can add documents by opening them or by marking them as favorites" 64 | msgstr "Documenta adduntur ut aperiuntur aut ad praeposita adduntur" 65 | -------------------------------------------------------------------------------- /po/thingy-sl.po: -------------------------------------------------------------------------------- 1 | # Slovenian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-23 20:50+0000\n" 12 | "Last-Translator: Martin Srebotnjak \n" 13 | "Language-Team: Slovenian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Knjižnica" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O programu" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Izhod" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Odpri" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Odpri vsebujočo mapo" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Odstrani iz priljubljenih" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Dodaj med priljubljene" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Premakni v smeti" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nedavni in priljubljeni dokumenti" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ni najdenih dokumentov" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Dokumente dodate tako, da jih odprete ali označite za priljubljene" 64 | -------------------------------------------------------------------------------- /po/thingy-szl.po: -------------------------------------------------------------------------------- 1 | # Silesian translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-11-02 20:28+0000\n" 12 | "Last-Translator: Marcin Lis \n" 13 | "Language-Team: Silesian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotyka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Informacyje" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Zakōńcz" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ôtwōrz" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ôtwōrz lokalizacyjõ" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Wyciep z nojrŏdszych" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Przidej do nojrŏdszych" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Przeniyś do hasiŏka" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nojnowsze i nojrŏdsze dokumynta" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Niy znojdziōno dokumyntōw" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Możesz przidać dokumynta bez ich ôtwarcie abo ôznaczynie za nojrŏdsze" 65 | -------------------------------------------------------------------------------- /po/thingy-mk.po: -------------------------------------------------------------------------------- 1 | # Macedonian translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-01-18 19:33+0000\n" 12 | "Last-Translator: Bojan Stojanoski \n" 13 | "Language-Team: Macedonian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Библиотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "За" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Откажи" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Отвори" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Отворете ја папката што содржи" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Отстрани од омилени" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Додадете во омилени" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Премести во ѓубре" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Неодамнешни и омилени документи" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Не се пронајдени документи" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Можете да додавате документи со отворање или со означување како омилени" 65 | -------------------------------------------------------------------------------- /po/thingy-sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 19:42+0000\n" 12 | "Last-Translator: Jan-Olof Svensson \n" 13 | "Language-Team: Swedish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotek" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Om programmet" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Avsluta" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Öppna" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Öppna aktuell mapp" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Ta bort från favoriter" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Lägg till i favoriter" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Flytta till papperskorgen" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Senaste och bokmärkta dokument" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Inga dokument hittades" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Du kan lägga till dokument genom att öppna eller bokmärka dem" 64 | -------------------------------------------------------------------------------- /po/thingy-cs.po: -------------------------------------------------------------------------------- 1 | # Czech translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-04 11:49+0000\n" 12 | "Last-Translator: Marek Hladík \n" 13 | "Language-Team: Czech \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Knihovna" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O aplikaci" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Ukončit" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Otevřít" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Otevřít nadřazenou složku" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Odebrat z oblíbených" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Přidat do oblíbených" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Přesunout do koše" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nedávné a oblíbené dokumenty" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nenalezeny žádné dokumenty" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Dokumenty můžete přidávat tak, že je otevřete nebo je označíte jako oblíbené" 65 | -------------------------------------------------------------------------------- /po/thingy-cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-09 12:27+0000\n" 12 | "Last-Translator: Rhoslyn Prys \n" 13 | "Language-Team: Welsh \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: cy\n" 20 | 21 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 22 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 23 | msgid "Library" 24 | msgstr "Llyfrgell" 25 | 26 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 27 | msgid "About" 28 | msgstr "Ynghylch" 29 | 30 | #: usr/lib/thingy/thingy.py:91 31 | msgid "Quit" 32 | msgstr "Gadael" 33 | 34 | #: usr/lib/thingy/thingy.py:284 35 | msgid "Open" 36 | msgstr "Agor" 37 | 38 | #: usr/lib/thingy/thingy.py:287 39 | msgid "Open containing folder" 40 | msgstr "Agor y ffolder cynnwys" 41 | 42 | #: usr/lib/thingy/thingy.py:292 43 | msgid "Remove from favorites" 44 | msgstr "Tynnu o'r ffefrynnau" 45 | 46 | #: usr/lib/thingy/thingy.py:295 47 | msgid "Add to favorites" 48 | msgstr "Ychwanegu at y ffefrynnau" 49 | 50 | #: usr/lib/thingy/thingy.py:299 51 | msgid "Move to trash" 52 | msgstr "Symud i'r sbwriel" 53 | 54 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 55 | msgid "Recent and favorite documents" 56 | msgstr "Dogfennau diweddar a hoff ddogfennau" 57 | 58 | #: usr/share/thingy/thingy.ui.h:3 59 | msgid "No documents found" 60 | msgstr "Heb ganfod dogfennau" 61 | 62 | #: usr/share/thingy/thingy.ui.h:4 63 | msgid "You can add documents by opening them or by marking them as favorites" 64 | msgstr "" 65 | "Gallwch ychwanegu dogfennau drwy eu hangor neu eu nodi fel ffefrynnau" 66 | -------------------------------------------------------------------------------- /po/thingy-gu.po: -------------------------------------------------------------------------------- 1 | # Gujarati translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-04-30 13:59+0000\n" 12 | "Last-Translator: Kiran Chauhan \n" 13 | "Language-Team: Gujarati \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "લાઇબ્રેરી" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "વિશે" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "બંધ કરો" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "ખોલો" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "જેનો સમાવેશ કરે છે એ ફોલ્ડર ખોલો" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "મનપસંદમાંથી કાઢો" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "મનપસંદમાં નાખો" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "કચરાપેટીમાં નાખો" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "તાજેતરના અને મનપસંદ ડોક્યુમેન્ટ્સ" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ડોક્યુમેન્ટ્સ મળેલ નથી" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "તમે ડોક્યુમેન્ટ્સને ખોલીને અથવા તેમને મનપસંદ તરીકે ચિહ્નિત કરીને ઉમેરી શકો છો" 65 | -------------------------------------------------------------------------------- /po/thingy-is.po: -------------------------------------------------------------------------------- 1 | # Icelandic translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-01-04 08:38+0000\n" 12 | "Last-Translator: Sveinn í Felli \n" 13 | "Language-Team: Icelandic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Safn" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Um hugbúnaðinn" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Hætta" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Opna" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Opna umlykjandi möppu" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Fjarlægja úr eftirlætum" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Bæta í eftirlæti" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Setja í ruslið" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nýleg og eftirlætisskjöl" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Engin skjöl fundust" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Þú getur bætt við skjölum með því að opna þau eða með því að merkja þau sem " 65 | "eftirlæti" 66 | -------------------------------------------------------------------------------- /po/thingy-it.po: -------------------------------------------------------------------------------- 1 | # Italian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 18:29+0000\n" 12 | "Last-Translator: Dragone2 \n" 13 | "Language-Team: Italian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Libreria" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Informazioni su" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Esci" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Apri" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Apri la cartella contenente" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Rimuovi dai preferiti" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Aggiungi ai preferiti" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Sposta nel cestino" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documenti recenti e preferiti" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nessun documento trovato" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Puoi aggiungere documenti semplicemente aprendoli o impostandoli come " 65 | "preferiti" 66 | -------------------------------------------------------------------------------- /po/thingy-pl.po: -------------------------------------------------------------------------------- 1 | # Polish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 19:01+0000\n" 12 | "Last-Translator: Marek Adamski \n" 13 | "Language-Team: Polish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O programie" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Wyjdź" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Otwórz" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Otwórz katalog zawierający" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Usuń z ulubionych" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Dodaj do ulubionych" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Przenieś do kosza" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Ostatnie i ulubione dokumenty" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nie znaleziono dokumentów" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Możesz dodawać dokumenty poprzez otwarcie ich lub oznaczenie ich jako " 65 | "ulubionych" 66 | -------------------------------------------------------------------------------- /po/thingy-sq.po: -------------------------------------------------------------------------------- 1 | # Albanian translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-09-14 22:09+0000\n" 12 | "Last-Translator: Vilson Gjeci \n" 13 | "Language-Team: Albanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Rreth" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Dil" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Hap" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Hap dosjen që përmban" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Hiq nga të preferuarat" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Shto te të preferuarat" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Zhvendos në kosh" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Dokumentet e fundit dhe të preferuara" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nuk u gjetën dokumente" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Mund të shtoni dokumente duke i hapur ato ose duke i shënuar si të preferuara" 65 | -------------------------------------------------------------------------------- /po/thingy-es.po: -------------------------------------------------------------------------------- 1 | # Spanish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-30 20:16+0000\n" 12 | "Last-Translator: Toni Estevez \n" 13 | "Language-Team: Spanish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Acerca de" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Cerrar" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Abrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Abrir la carpeta contenedora" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Eliminar de los favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Añadir a los favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover a la papelera" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documentos recientes y favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "No se han encontrado documentos" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Puede añadir documentos abriéndolos o marcándolos como favoritos" 64 | -------------------------------------------------------------------------------- /po/thingy-ms.po: -------------------------------------------------------------------------------- 1 | # Malay translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-07-28 09:15+0000\n" 12 | "Last-Translator: Keviindran Ramachandran \n" 13 | "Language-Team: Malay \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Pustaka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Tentang" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Keluar" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Buka" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Buka folder yang mengandungi" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Buang dari kegemaran" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Tambah ke kegemaran" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Alih ke tong sampah" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Dokemen terkini dan kegemaran" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Tiada dokumen dijumpai" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Anda boleh menambah dokumen dengan membukanya atau menandakannya sebagai " 65 | "kegemaran" 66 | -------------------------------------------------------------------------------- /po/thingy-pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 16:07+0000\n" 12 | "Last-Translator: Hugo Carvalho \n" 13 | "Language-Team: Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Acerca" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Sair" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Abrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Abrir a pasta de conteúdo" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remover dos favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Adicionar aos favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover para o lixo" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documentos recentes e favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Não foram encontrados documentos" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Pode adicionar documentos, abrindo-os ou marcando-os como favoritos" 64 | -------------------------------------------------------------------------------- /po/thingy-sr.po: -------------------------------------------------------------------------------- 1 | # Serbian translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-08-14 06:01+0000\n" 12 | "Last-Translator: Мирослав Николић \n" 13 | "Language-Team: Serbian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Библиотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "О програму" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Изађи" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Отвори" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Отвори садржајну фасциклу" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Уклони из омиљених" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Додај у омиљене" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Премести у смеће" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Скорашњи и омиљени документи" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Документа нису пронађена" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Можете додати документа њиховим отварањем или означавакући их да су омиљени" 65 | -------------------------------------------------------------------------------- /po/thingy-vi.po: -------------------------------------------------------------------------------- 1 | # Vietnamese translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-03-29 15:49+0000\n" 12 | "Last-Translator: thieninox \n" 13 | "Language-Team: Vietnamese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Thư viện" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Thông Tin" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Thoát" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Mở" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Mở thư mục chứa" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Loại bỏ khỏi mục yêu thích" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Thêm vào mục yêu thích" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Chuyển vào thùng rác" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Các tệp tin gần đây và yêu thích" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Không tìm thấy tài liệu nào" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Bạn có thể thêm tài liệu bằng cách mở chúng hoặc đánh dấu chúng là mục yêu " 65 | "thích" 66 | -------------------------------------------------------------------------------- /po/thingy-bn.po: -------------------------------------------------------------------------------- 1 | # Bengali translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-01-05 13:27+0000\n" 12 | "Last-Translator: Mahdi Hasan \n" 13 | "Language-Team: Bengali \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "লাইব্রেরি" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "সম্পর্কিত" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "প্রস্থান করুন" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "খুলুন" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "ফাইলটি যে ফোল্ডার এ আছে সেটি খুলুন" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "পছন্দের তালিকা থেকে সরিয়ে ফেলুন" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "পছন্দের তালিকায় যোগ করুন" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "আবর্জনা বাক্সে স্থানান্তরিত করুন" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "সাম্প্রতিক এবং প্রিয় নথিগুলো" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "কোনো নথি পাওয়া যায়নি" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "আপনি নথিগুলিকে খুলে বা প্রিয় নথি হিসাবে চিহ্নিত করে যোগ করতে পারেন" 64 | -------------------------------------------------------------------------------- /po/thingy-da.po: -------------------------------------------------------------------------------- 1 | # Danish translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 18:24+0000\n" 12 | "Last-Translator: Alan Mortensen \n" 13 | "Language-Team: Danish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Samling" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Om" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Afslut" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Åbn" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Åbn indeholdende mappe" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Fjern fra favoritter" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Tilføj til favoritter" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Flyt til papirkurven" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Seneste og favoritdokumenter" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ingen dokumenter fundet" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Du kan tilføje dokumenter ved at åbne dem eller ved at markere dem som " 65 | "favoritter" 66 | -------------------------------------------------------------------------------- /po/thingy-el.po: -------------------------------------------------------------------------------- 1 | # Greek translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-05-08 12:47+0000\n" 12 | "Last-Translator: Ourania J. Banti \n" 13 | "Language-Team: Greek \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Βιβλιοθήκη" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Περί" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Έξοδος" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Άνοιγμα" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Άνοιγμα περιέχοντος φακέλου" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Αφαίρεση από τα αγαπημένα" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Προσθήκη στα αγαπημένα" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Μετακίνηση στα απορρίμματα" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Πρόσφατα και αγαπημένα έγγραφα" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Δε βρέθηκαν έγγραφα" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Μπορείτε να προσθέσετε έγγραφα, ανοίγοντας τα ή επισημαίνοντας τα ως " 65 | "αγαπημένα" 66 | -------------------------------------------------------------------------------- /po/thingy-en_GB.po: -------------------------------------------------------------------------------- 1 | # English (United Kingdom) translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-03-15 10:32+0000\n" 12 | "Last-Translator: Andi Chandler \n" 13 | "Language-Team: English (United Kingdom) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Library" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "About" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Quit" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Open" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Open containing folder" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remove from favourites" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Add to favourites" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Move to the Rubbish Bin" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Recent and favourite documents" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "No documents found" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "You can add documents by opening them or by marking them as favourites" 65 | -------------------------------------------------------------------------------- /po/thingy-ka.po: -------------------------------------------------------------------------------- 1 | # Georgian translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-06-15 07:06+0000\n" 12 | "Last-Translator: NorwayFun \n" 13 | "Language-Team: Georgian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: ka\n" 20 | 21 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 22 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 23 | msgid "Library" 24 | msgstr "ბიბლიოთეკა" 25 | 26 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 27 | msgid "About" 28 | msgstr "შესახებ" 29 | 30 | #: usr/lib/thingy/thingy.py:91 31 | msgid "Quit" 32 | msgstr "გასვლა" 33 | 34 | #: usr/lib/thingy/thingy.py:284 35 | msgid "Open" 36 | msgstr "გახსნა" 37 | 38 | #: usr/lib/thingy/thingy.py:287 39 | msgid "Open containing folder" 40 | msgstr "შემცველი საქაღალდის გახსნა" 41 | 42 | #: usr/lib/thingy/thingy.py:292 43 | msgid "Remove from favorites" 44 | msgstr "რჩეულებიდან წაშლა" 45 | 46 | #: usr/lib/thingy/thingy.py:295 47 | msgid "Add to favorites" 48 | msgstr "რჩეულებში დამატება" 49 | 50 | #: usr/lib/thingy/thingy.py:299 51 | msgid "Move to trash" 52 | msgstr "ნაგვის ყუთში გადატანა" 53 | 54 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 55 | msgid "Recent and favorite documents" 56 | msgstr "უახლესი და რჩეული დოკუმენტები" 57 | 58 | #: usr/share/thingy/thingy.ui.h:3 59 | msgid "No documents found" 60 | msgstr "დოკუმენტები ვერ ვიპოვე" 61 | 62 | #: usr/share/thingy/thingy.ui.h:4 63 | msgid "You can add documents by opening them or by marking them as favorites" 64 | msgstr "დოკუმენტების დამატება მათი გახსნით, ან რჩეულად მონიშვნით შეგიძლიათ" 65 | -------------------------------------------------------------------------------- /po/thingy-lt.po: -------------------------------------------------------------------------------- 1 | # Lithuanian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2023-10-28 23:42+0000\n" 12 | "Last-Translator: Moo \n" 13 | "Language-Team: Lithuanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Apie" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Išeiti" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Atidaryti" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Atidaryti vidinį aplanką" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Šalinti iš mėgstamiausių" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Pridėti prie mėgstamiausių" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Perkelti į šiukšlinę" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Naujausi ir mėgstamiausi dokumentai" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nerasta jokių dokumentų" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Galite pridėti dokumentus juos atverdami arba pažymėdami juos kaip mėgstamus" 65 | -------------------------------------------------------------------------------- /po/thingy-nn.po: -------------------------------------------------------------------------------- 1 | # Norwegian Nynorsk translation for linuxmint 2 | # Copyright (c) 2023 Rosetta Contributors and Canonical Ltd 2023 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2023. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-08-27 10:02+0000\n" 12 | "Last-Translator: Simen Ryland Førde \n" 13 | "Language-Team: Norwegian Nynorsk \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotek" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Om" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Avslutt" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Opne" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Opne mappa som inneheld" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Fjern frå favorittar" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Legg til i favorittar" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Flytt til papirkorg" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nylege og favorittdokument" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ingen dokument funne" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Du kan leggje til dokument ved å opne dei eller ved å merkje dei som " 65 | "favorittar" 66 | -------------------------------------------------------------------------------- /po/thingy-bg.po: -------------------------------------------------------------------------------- 1 | # Bulgarian translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-09-20 21:07+0000\n" 12 | "Last-Translator: Nikolay Trifonov \n" 13 | "Language-Team: Bulgarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Библиотека" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Относно" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Изход" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Отваряне" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Отваряне на съдържащата папка" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Премахване от „Любими“" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Добавяне в „Любими“" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Преместване в кошчето" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Скорошни и любими документи" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Не са открити документи" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Можете да добавяте документи като ги отворите или ги маркирате като любими" 65 | -------------------------------------------------------------------------------- /po/thingy-eo.po: -------------------------------------------------------------------------------- 1 | # Esperanto translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-02-23 21:08+0000\n" 12 | "Last-Translator: Piet Coppens \n" 13 | "Language-Team: Esperanto \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteko" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Pri" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Forlasi" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Malfermi" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Malfermi enhavantan dosierujon" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Forigi el plej ŝatataj" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Aldoni al plej ŝatataj" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Movi rubujen" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Lastaj kaj plej ŝatataj dokumentoj" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Neniuj dokumentoj trovitaj" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Vi povas aldoni dokumentojn malfermante ilin aŭ markante ilin kiel plej " 65 | "ŝatataj" 66 | -------------------------------------------------------------------------------- /po/thingy-fr.po: -------------------------------------------------------------------------------- 1 | # French translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-12-28 19:42+0000\n" 12 | "Last-Translator: AO \n" 13 | "Language-Team: French \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliothèque" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "À propos" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Quitter" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ouvrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ouvrir le dossier contenant le fichier" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Retirer des favoris" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Ajouter aux favoris" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Déplacer vers la corbeille" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documents favoris et récents" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Aucun document n’a été trouvé" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Vous pouvez ajouter des documents en les ouvrant ou en les ajoutant aux " 65 | "favoris" 66 | -------------------------------------------------------------------------------- /po/thingy-nb.po: -------------------------------------------------------------------------------- 1 | # Norwegian Bokmal translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-09-11 11:13+0000\n" 12 | "Last-Translator: Roger Knutsen \n" 13 | "Language-Team: Norwegian Bokmal \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotek" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Om" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Avslutt" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Åpne" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Åpne mappe som inneholder" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Fjern fra favoritter" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Legg til i favoritter" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Flytt til papirkurven" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nylige og favorittdokumenter" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Ingen dokumenter funnet" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Du kan legge til dokumenter ved å åpne dem eller ved å merke dem som " 65 | "favoritter" 66 | -------------------------------------------------------------------------------- /po/thingy-pt_BR.po: -------------------------------------------------------------------------------- 1 | # Brazilian Portuguese translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-03 00:49+0000\n" 12 | "Last-Translator: Gilberto vagner \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Sobre" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Sair" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Abrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Abra a pasta que contém" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Remover dos favoritos" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Adicionar aos favoritos" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Mover para lixeira" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documentos recentes e favoritos" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nenhum documento encontrado" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "Você pode adicionar documentos abrindo eles ou favoritando-os" 64 | -------------------------------------------------------------------------------- /po/thingy-sk.po: -------------------------------------------------------------------------------- 1 | # Slovak translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-02-09 17:24+0000\n" 12 | "Last-Translator: Adrián Bíro \n" 13 | "Language-Team: Slovak \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Knižnica" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O aplikácii" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Zavrieť" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Otvoriť" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Otvoriť priečinok" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Odstrániť z obľúbených" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Pridať medzi obľúbené" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Presunúť do koša" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nedávno otvorené a obľúbené dokumenty" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Neboli nájdené žiadne dokumenty" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Dokumenty môžete pridať tak, že ich otvoríte alebo označíte ako obľúbené." 65 | -------------------------------------------------------------------------------- /po/thingy-te.po: -------------------------------------------------------------------------------- 1 | # Telugu translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-09-10 09:52+0000\n" 12 | "Last-Translator: Aryan Karamtoth \n" 13 | "Language-Team: Telugu \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "లైబ్రరీ" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "గురించి" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "వదిలి పెట్టు" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "తెరువు" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "కలిగివున్న సంచయమును తెరువు" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ఇష్టమైనవి నుండి తీసివేయి" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "ఇష్టమైన వాటికి జతచేయి" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ట్రాశ్ లోకి జరపండి" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "ఇటీవలి మరియు ఇష్టమైన పత్రాలు" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ఏ పత్రాలు దొరకలేదు" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "మీరు పత్రాలను తెరవడం ద్వారా లేదా వాటిని ఇష్టమైనవిగా గుర్తించడం ద్వారా వాటిని " 65 | "ఇక్కడ జోడించవచ్చు" 66 | -------------------------------------------------------------------------------- /po/thingy-nl.po: -------------------------------------------------------------------------------- 1 | # Dutch translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 16:03+0000\n" 12 | "Last-Translator: Pjotr12345 \n" 13 | "Language-Team: Dutch \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotheek" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Over" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Afsluiten" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Openen" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Open de map waar het in zit" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Uit favorieten verwijderen" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Toevoegen aan favorieten" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Verplaatsen naar prullenbak" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Recente en favoriete documenten" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Geen documenten gevonden" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "U kunt documenten toevoegen door hen te openen of door hen te markeren als " 65 | "favorieten" 66 | -------------------------------------------------------------------------------- /po/thingy-fil.po: -------------------------------------------------------------------------------- 1 | # Filipino translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-11-29 16:34+0000\n" 12 | "Last-Translator: Jonel A. Agutaya \n" 13 | "Language-Team: Filipino \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Aklatan" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Patungkol" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Tapusin" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Buksan" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Buksan ang kinalagyang polder" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Alisin sa mga paborito" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Idagdag sa mga paborito" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Ilipat sa basurahan" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Mga kasalukuyan at paboritong dokumento" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Walang nakitang dokumento" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Maaring magdagdag ng dokumento kung buksan o kung markahan na paborito ang " 65 | "mga ito" 66 | -------------------------------------------------------------------------------- /po/thingy-hu.po: -------------------------------------------------------------------------------- 1 | # Hungarian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-23 12:53+0000\n" 12 | "Last-Translator: KAMI \n" 13 | "Language-Team: Hungarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Gyűjtemény" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Névjegy" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Kilépés" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Megnyitás" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Tartalmazó mappa megnyitása" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Eltávolítás a kedvencek közül" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Hozzáadás a kedvencekhez" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Áthelyezés a Kukába" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Legutóbbi és kedvenc dokumentumok" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nem található dokumentum" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "A dokumentumok megnyitásával vagy kedvenccé tételével adhatja hozzá a " 65 | "dokumentumokat" 66 | -------------------------------------------------------------------------------- /po/thingy-oc.po: -------------------------------------------------------------------------------- 1 | # Occitan (post 1500) translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-26 13:11+0000\n" 12 | "Last-Translator: Quentin PAGÈS \n" 13 | "Language-Team: Occitan (post 1500) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliotèca" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "A prepaus" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Sortir" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Dobrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Dobrir lo dossièr que conten lo fichièr" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Suprimir dels favorits" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Apondre als favorits" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Metre dins l'escobilhièr" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documents recents e favorits" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Cap de document pas trobat" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Podètz apondre de document en lo dobrissent o en los marcant coma favorits" 65 | -------------------------------------------------------------------------------- /po/thingy-de.po: -------------------------------------------------------------------------------- 1 | # German translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-22 17:14+0000\n" 12 | "Last-Translator: Tobias Bannert \n" 13 | "Language-Team: German \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliothek" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Info" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Beenden" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Öffnen" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Übergeordneten Ordner öffnen" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Aus Favoriten entfernen" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Zu Favoriten hinzufügen" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "In den Papierkorb verschieben" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Letzte und favorisierte Dokumente" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Keine Dokumente gefunden" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Sie können Dokumente hinzufügen, indem Sie sie öffnen oder sie als Favoriten " 65 | "markieren." 66 | -------------------------------------------------------------------------------- /po/thingy-fr_CA.po: -------------------------------------------------------------------------------- 1 | # French (Canada) translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2024-12-28 19:45+0000\n" 12 | "Last-Translator: AO \n" 13 | "Language-Team: French (Canada) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Bibliothèque" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "À propos" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Fermer" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Ouvrir" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Ouvrir le dossier contenant le fichier" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Supprimer des favoris" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Ajouter aux favoris" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Déplacer vers la corbeille" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Documents récents et favoris" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Aucun document n’a été trouvé" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Vous pouvez ajouter des documents en les ouvrant ou les marquant comme " 65 | "favoris" 66 | -------------------------------------------------------------------------------- /po/thingy-id.po: -------------------------------------------------------------------------------- 1 | # Indonesian translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-12-09 05:33+0000\n" 12 | "Last-Translator: Arief Setiadi Wibowo \n" 13 | "Language-Team: Indonesian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Pustaka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Perihal" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Keluar" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Buka" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Buka folder yang memuat" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Hapus dari favorit" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Tambahkan ke favorit" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Pindahkan ke tempat sampah" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Dokumen terbaru dan favorit" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Tidak ada dokumen yang ditemukan" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Anda dapat menambahkan dokumen dengan membukanya atau dengan menandainya " 65 | "sebagai favorit" 66 | -------------------------------------------------------------------------------- /po/thingy-kn.po: -------------------------------------------------------------------------------- 1 | # Kannada translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-07-26 16:14+0000\n" 12 | "Last-Translator: Manas salian \n" 13 | "Language-Team: Kannada \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "ಲೈಬ್ರರಿ" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "ಇದರ ಬಗ್ಗೆ" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "ನಿರ್ಗಮಿಸಿ" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "ತೆರೆಯಿರಿ" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "ಹೊಂದಿರುವ ಫೋಲ್ಡರ್ ತೆರೆಯಿರಿ" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ಅಚ್ಚುಮೆಚ್ಚಿನವುಗಳಿಂದ ತೆಗೆದುಹಾಕಿ" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "ಅಚ್ಚುಮೆಚ್ಚಿನವುಗಳಿಗೆ ಸೇರಿಸಿ" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ಅನುಪಯುಕ್ತಕ್ಕೆ ಸರಿಸಿ" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "ಇತ್ತೀಚಿನ ಮತ್ತು ಅಚ್ಚುಮೆಚ್ಚಿನ ದಾಖಲೆಗಳು" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "ಯಾವುದೇ ದಾಖಲೆಗಳು ಕಂಡುಬಂದಿಲ್ಲ" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "ನೀವು ದಾಖಲೆಗಳನ್ನು ತೆರೆಯುವ ಮೂಲಕ ಅಥವಾ ಅವುಗಳನ್ನು ಅಚ್ಚುಮೆಚ್ಚಿನವುಗಳಾಗಿ ಗುರುತಿಸುವ " 65 | "ಮೂಲಕ ಸೇರಿಸಬಹುದು." 66 | -------------------------------------------------------------------------------- /po/thingy-sr@latin.po: -------------------------------------------------------------------------------- 1 | # Serbian Latin translation for linuxmint 2 | # Copyright (c) 2021 Rosetta Contributors and Canonical Ltd 2021 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2021. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2021-11-24 21:06+0000\n" 12 | "Last-Translator: Saša Marjanović \n" 13 | "Language-Team: Serbian Latin \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Biblioteka" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "O programu" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Izađi" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Otvori" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Otvori direktorijum koji sadrži traženu stavku" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Ukloni iz omiljenih" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Dodaj u omiljene" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Premesti u smeće" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Nedavno korišćeni i omiljeni dokumenti" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "Nije pronađen ni jedan dokument" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Možete dodavati dokumente tako što ćete ih otvarati ili označiti kao omiljene" 65 | -------------------------------------------------------------------------------- /po/thingy-uz.po: -------------------------------------------------------------------------------- 1 | # Uzbek translation for linuxmint 2 | # Copyright (c) 2022 Rosetta Contributors and Canonical Ltd 2022 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2022. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2022-03-26 16:54+0000\n" 12 | "Last-Translator: Umidjon Almasov \n" 13 | "Language-Team: Uzbek \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: uz\n" 20 | 21 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 22 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 23 | msgid "Library" 24 | msgstr "Kutubxona" 25 | 26 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 27 | msgid "About" 28 | msgstr "Haqida" 29 | 30 | #: usr/lib/thingy/thingy.py:91 31 | msgid "Quit" 32 | msgstr "Chiqish" 33 | 34 | #: usr/lib/thingy/thingy.py:284 35 | msgid "Open" 36 | msgstr "Ochish" 37 | 38 | #: usr/lib/thingy/thingy.py:287 39 | msgid "Open containing folder" 40 | msgstr "O‘z ichiga olgan jildni ochish" 41 | 42 | #: usr/lib/thingy/thingy.py:292 43 | msgid "Remove from favorites" 44 | msgstr "Sevimlilardan olib tashlash" 45 | 46 | #: usr/lib/thingy/thingy.py:295 47 | msgid "Add to favorites" 48 | msgstr "Sevimlilarga qo‘shish" 49 | 50 | #: usr/lib/thingy/thingy.py:299 51 | msgid "Move to trash" 52 | msgstr "Chiqindiga ko‘chirish" 53 | 54 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 55 | msgid "Recent and favorite documents" 56 | msgstr "Oxirgi va sevimli hujjatlar" 57 | 58 | #: usr/share/thingy/thingy.ui.h:3 59 | msgid "No documents found" 60 | msgstr "Hech qanday hujjat topilmadi" 61 | 62 | #: usr/share/thingy/thingy.ui.h:4 63 | msgid "You can add documents by opening them or by marking them as favorites" 64 | msgstr "" 65 | "Hujjatlarni ochish yoki ularni sevimlilar sifatida belgilash orqali " 66 | "qo‘shishingiz mumkin" 67 | -------------------------------------------------------------------------------- /po/thingy-br.po: -------------------------------------------------------------------------------- 1 | # Breton translation for linuxmint 2 | # Copyright (c) 2024 Rosetta Contributors and Canonical Ltd 2024 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2024. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-11-12 14:22+0000\n" 12 | "Last-Translator: Anthony Guechoum \n" 13 | "Language-Team: Breton \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "Levraoueg" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "Diwar-benn" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "Kuitaat" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "Digeriñ" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "Digeriñ an teuliad a endalc'h ar restr" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "Dilemel diwar ma re well ganin" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "Ouzhpennañ d'am re well ganin" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "Kas d'al lastez" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "Teulioù gwell ganin pe kemmet nevez zo" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "N'eus bet kavet teul ebet" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "Gallout a rit ouzhpennañ teulioù amañ dre zigeriñ anezho pe dre ouzhpennañ " 65 | "anezho d'ho re well ganeoc'h" 66 | -------------------------------------------------------------------------------- /po/thingy-ml.po: -------------------------------------------------------------------------------- 1 | # Malayalam translation for linuxmint 2 | # Copyright (c) 2025 Rosetta Contributors and Canonical Ltd 2025 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2025. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2021-11-22 15:47+0000\n" 11 | "PO-Revision-Date: 2025-07-17 05:11+0000\n" 12 | "Last-Translator: MOHAMMED RASHITH KP \n" 13 | "Language-Team: Malayalam \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2025-12-12 13:33+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/lib/thingy/thingy.py:78 usr/lib/thingy/thingy.py:144 21 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:1 22 | msgid "Library" 23 | msgstr "ലൈബ്രറി" 24 | 25 | #: usr/lib/thingy/thingy.py:86 usr/lib/thingy/thingy.py:142 26 | msgid "About" 27 | msgstr "അതേക്കുറിച്ച് (About)" 28 | 29 | #: usr/lib/thingy/thingy.py:91 30 | msgid "Quit" 31 | msgstr "പുറത്ത് കടക്കുക (quit)" 32 | 33 | #: usr/lib/thingy/thingy.py:284 34 | msgid "Open" 35 | msgstr "തുറക്കുക" 36 | 37 | #: usr/lib/thingy/thingy.py:287 38 | msgid "Open containing folder" 39 | msgstr "ഉൾകൊള്ളുന്ന ഫോൾഡർ തുറക്കുക" 40 | 41 | #: usr/lib/thingy/thingy.py:292 42 | msgid "Remove from favorites" 43 | msgstr "ഇഷ്ടപെട്ടവയില്‍ നിന്നും നീക്കം ചെയ്യുക" 44 | 45 | #: usr/lib/thingy/thingy.py:295 46 | msgid "Add to favorites" 47 | msgstr "ഇഷ്ടപ്പെട്ടവയിലേക്ക് ചേര്‍ക്കുക" 48 | 49 | #: usr/lib/thingy/thingy.py:299 50 | msgid "Move to trash" 51 | msgstr "ചവറ്റുകുട്ടയിലേക്ക് നീക്കുക" 52 | 53 | #: generate_desktop_files:25 usr/share/thingy/thingy.ui.h:2 54 | msgid "Recent and favorite documents" 55 | msgstr "സമീപകാലവും പ്രിയപ്പെട്ടതുമായ രേഖകൾ" 56 | 57 | #: usr/share/thingy/thingy.ui.h:3 58 | msgid "No documents found" 59 | msgstr "രേഖകളൊന്നും കണ്ടെത്തിയില്ല" 60 | 61 | #: usr/share/thingy/thingy.ui.h:4 62 | msgid "You can add documents by opening them or by marking them as favorites" 63 | msgstr "" 64 | "രേഖകൾ തുറന്നോ പ്രിയപ്പെട്ടവയായി അടയാളപ്പെടുത്തിയോ നിങ്ങൾക്ക് അവ \r\n" 65 | "പ്രിയപ്പെട്ടവയിലേക്ക് ചേർക്കാൻ കഴിയും." 66 | -------------------------------------------------------------------------------- /usr/share/thingy/doc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 55 | 59 | 63 | 72 | 76 | 80 | 81 | 82 | 85 | 89 | 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /usr/share/thingy/doc-epub.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 55 | 63 | 71 | 74 | 79 | ePUB 90 | 91 | 92 | 93 | -------------------------------------------------------------------------------- /usr/share/thingy/doc-pdf.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 55 | 63 | 66 | 72 | PDF 83 | 84 | 85 | 86 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | thingy (1.2.3) zena; urgency=medium 2 | 3 | * l10n: Update translations 4 | * l10n: Update files 5 | 6 | -- Clement Lefebvre Fri, 12 Dec 2025 17:03:11 +0000 7 | 8 | thingy (1.2.2) zena; urgency=medium 9 | 10 | * Switch to XApp symbolic icons 11 | * Switch to xapp-symbolic-icons (XSI) 12 | 13 | -- Clement Lefebvre Wed, 19 Nov 2025 15:24:55 +0000 14 | 15 | thingy (1.2.1) zara; urgency=medium 16 | 17 | * l10n: Update translations 18 | * l10n: Update files 19 | 20 | -- Clement Lefebvre Thu, 31 Jul 2025 12:32:08 +0200 21 | 22 | thingy (1.2.0) xia; urgency=medium 23 | 24 | * l10n: Update translations 25 | * l10n: Update files 26 | 27 | -- Clement Lefebvre Mon, 06 Jan 2025 14:14:24 +0000 28 | 29 | thingy (1.1.9) xia; urgency=medium 30 | 31 | * l10n: Update translations 32 | * l10n: Update files 33 | 34 | -- Clement Lefebvre Thu, 05 Dec 2024 10:53:34 +0000 35 | 36 | thingy (1.1.8) wilma; urgency=medium 37 | 38 | * l10n: Update translations 39 | * l10n: Update files 40 | 41 | -- Clement Lefebvre Sun, 21 Jul 2024 10:41:10 +0100 42 | 43 | thingy (1.1.7) wilma; urgency=medium 44 | 45 | * l10n: Update translations 46 | * l10n: Update files 47 | 48 | -- Clement Lefebvre Tue, 18 Jun 2024 20:55:16 +0100 49 | 50 | thingy (1.1.6) virginia; urgency=medium 51 | 52 | * l10n: Update translations 53 | * l10n: Update files 54 | 55 | -- Clement Lefebvre Thu, 04 Jan 2024 17:01:07 +0000 56 | 57 | thingy (1.1.5) virginia; urgency=medium 58 | 59 | * l10n: Update translations 60 | * l10n: Update files 61 | 62 | -- Clement Lefebvre Sun, 03 Dec 2023 15:14:49 +0000 63 | 64 | thingy (1.1.4) victoria; urgency=medium 65 | 66 | * l10n: Update translations 67 | 68 | -- Clement Lefebvre Fri, 07 Jul 2023 17:20:02 +0200 69 | 70 | thingy (1.1.3) victoria; urgency=medium 71 | 72 | [ Michael Webster ] 73 | * Fix progress calculation, don't display progress for documents under five pages long. 74 | 75 | -- Clement Lefebvre Wed, 14 Jun 2023 09:24:20 +0200 76 | 77 | thingy (1.1.2) victoria; urgency=medium 78 | 79 | [ Michael Webster ] 80 | * Add xapp to workflow. 81 | 82 | [ Clement Lefebvre ] 83 | * l10n: Update translations 84 | * l10n: Update files 85 | 86 | -- Clement Lefebvre Thu, 08 Jun 2023 12:02:36 +0100 87 | 88 | thingy (1.1.1) victoria; urgency=medium 89 | 90 | [ hduelme ] 91 | * replace equality None check with identity None check (#18) 92 | 93 | [ Clement Lefebvre ] 94 | * Add dark mode support 95 | * Fix support for apps with .desktop outside of /usr/share/applications 96 | * Duplicates: Take symbolic links into account 97 | 98 | -- Clement Lefebvre Wed, 31 May 2023 15:39:40 +0100 99 | 100 | thingy (1.1.0) vera; urgency=medium 101 | 102 | [ Michael Webster ] 103 | * Add github workflow. 104 | 105 | [ Clement Lefebvre ] 106 | * l10n: Update translations 107 | * l10n: Update files 108 | 109 | -- Clement Lefebvre Fri, 02 Dec 2022 17:34:36 +0000 110 | 111 | thingy (1.0.9) vanessa; urgency=medium 112 | 113 | * l10n: Update translations 114 | 115 | -- Clement Lefebvre Sun, 24 Jul 2022 12:30:15 +0200 116 | 117 | thingy (1.0.8) vanessa; urgency=medium 118 | 119 | * l10n: Update translations 120 | * l10n: Update files 121 | 122 | -- Clement Lefebvre Mon, 27 Jun 2022 11:28:33 +0200 123 | 124 | thingy (1.0.7) vanessa; urgency=medium 125 | 126 | [ JosephMcc ] 127 | * UI tweaks (#13) 128 | 129 | -- Clement Lefebvre Thu, 09 Jun 2022 16:14:19 +0200 130 | 131 | thingy (1.0.6) una; urgency=medium 132 | 133 | * Update mimetype pictures 134 | * Add dependency on libgsf-bin 135 | 136 | -- Clement Lefebvre Mon, 17 Jan 2022 16:09:51 +0000 137 | 138 | thingy (1.0.5) una; urgency=medium 139 | 140 | * l10n: Update translations 141 | * l10n: Update files 142 | 143 | -- Clement Lefebvre Fri, 31 Dec 2021 12:59:41 +0000 144 | 145 | thingy (1.0.4) una; urgency=medium 146 | 147 | * Filter text/plain for Writer and pdf for Draw 148 | * Tooltips: Show full path 149 | 150 | -- Clement Lefebvre Mon, 27 Dec 2021 16:16:58 +0000 151 | 152 | thingy (1.0.3) una; urgency=medium 153 | 154 | * Visual improvements 155 | * Add support for LibreOffice documents 156 | 157 | -- Clement Lefebvre Mon, 20 Dec 2021 14:31:40 +0000 158 | 159 | thingy (1.0.2) una; urgency=medium 160 | 161 | * l10n: Update translations 162 | * l10n: Update files 163 | 164 | -- Clement Lefebvre Mon, 06 Dec 2021 15:50:07 +0000 165 | 166 | thingy (1.0.1) una; urgency=medium 167 | 168 | * Improve empty page 169 | * Improve icon 170 | * l10n: Update POT 171 | * packaging: Add dependency on xreader and xapp 172 | * packaging: Fix typo 173 | * Preserve window state 174 | * Add an action context menu to open the containing folder 175 | * Update the list when favorites or recents change 176 | * Use uris, add move-to-trash and add/remove favorites 177 | * l10n: Update POT 178 | 179 | -- Clement Lefebvre Mon, 22 Nov 2021 15:49:16 +0000 180 | 181 | thingy (1.0.0) una; urgency=low 182 | 183 | * Initial release 184 | 185 | -- Clement Lefebvre Fri, 12 Nov 2021 12:54:00 +0000 186 | 187 | -------------------------------------------------------------------------------- /usr/share/applications/thingy.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Library 3 | Name[aa]=Maktabata 4 | Name[am]=መጻህፍት ቤት 5 | Name[ar]=المكتبة 6 | Name[ast]=Biblioteca 7 | Name[be]=Бібліятэка 8 | Name[bg]=Библиотека 9 | Name[bn]=লাইব্রেরি 10 | Name[br]=Levraoueg 11 | Name[ca]=Llibreria 12 | Name[cs]=Knihovna 13 | Name[cy]=Llyfrgell 14 | Name[da]=Samling 15 | Name[de]=Bibliothek 16 | Name[el]=Βιβλιοθήκη 17 | Name[eo]=Biblioteko 18 | Name[es]=Biblioteca 19 | Name[et]=Kogumik 20 | Name[eu]=Liburutegia 21 | Name[fa]=کتابخانه 22 | Name[fi]=Kirjasto 23 | Name[fil]=Aklatan 24 | Name[fr]=Bibliothèque 25 | Name[fr_CA]=Bibliothèque 26 | Name[ga]=Leabharlann 27 | Name[gl]=Biblioteca 28 | Name[gu]=લાઇબ્રેરી 29 | Name[he]=ספרייה 30 | Name[hi]=संग्रह 31 | Name[hr]=Zbirka 32 | Name[hu]=Gyűjtemény 33 | Name[ia]=Libreria 34 | Name[id]=Pustaka 35 | Name[ie]=Biblioteca 36 | Name[ig]=ọba akwụkwọ 37 | Name[is]=Safn 38 | Name[it]=Libreria 39 | Name[ja]=ライブラリ 40 | Name[ka]=ბიბლიოთეკა 41 | Name[kab]=Tamkaṛḍit 42 | Name[kk]=Жинақ 43 | Name[kn]=ಲೈಬ್ರರಿ 44 | Name[ko]=라이브러리 45 | Name[ku]=Pirtûkxane 46 | Name[la]=Bibliotheca 47 | Name[lo]=ຫ້ອງສະໝຸດ 48 | Name[lt]=Biblioteka 49 | Name[lv]=Bibliotēka 50 | Name[mk]=Библиотека 51 | Name[ml]=ലൈബ്രറി 52 | Name[ms]=Pustaka 53 | Name[nb]=Bibliotek 54 | Name[nl]=Bibliotheek 55 | Name[nn]=Bibliotek 56 | Name[oc]=Bibliotèca 57 | Name[pl]=Biblioteka 58 | Name[pt]=Biblioteca 59 | Name[pt_BR]=Biblioteca 60 | Name[ro]=Bibliotecă 61 | Name[ru]=Библиотека 62 | Name[rue]=Бібліотека 63 | Name[sk]=Knižnica 64 | Name[sl]=Knjižnica 65 | Name[sq]=Biblioteka 66 | Name[sr]=Библиотека 67 | Name[sr@latin]=Biblioteka 68 | Name[sv]=Bibliotek 69 | Name[szl]=Bibliotyka 70 | Name[te]=లైబ్రరీ 71 | Name[th]=คลัง 72 | Name[tr]=Kütüphane 73 | Name[tt]=Китапханә 74 | Name[uk]=Бібліотека 75 | Name[uz]=Kutubxona 76 | Name[vi]=Thư viện 77 | Name[zh_CN]=书库 78 | Name[zh_TW]=檔案庫 79 | Comment=Recent and favorite documents 80 | Comment[aa]=Axayih kee assakoot le sanaditte 81 | Comment[am]=የ ቅርብ ጊዜ እና የምወዳቸው ሰነዶች 82 | Comment[ar]=المستندات المستخدمة حديثا والمفضلة 83 | Comment[ast]=Ficheros recientes ya favoritos 84 | Comment[be]=Нядаўнія і абраныя дакументы 85 | Comment[bg]=Скорошни и любими документи 86 | Comment[bn]=সাম্প্রতিক এবং প্রিয় নথিগুলো 87 | Comment[br]=Teulioù gwell ganin pe kemmet nevez zo 88 | Comment[ca]=Documents recents i preferits 89 | Comment[cs]=Nedávné a oblíbené dokumenty 90 | Comment[cy]=Dogfennau diweddar a hoff ddogfennau 91 | Comment[da]=Seneste og favoritdokumenter 92 | Comment[de]=Letzte und favorisierte Dokumente 93 | Comment[el]=Πρόσφατα και αγαπημένα έγγραφα 94 | Comment[en_GB]=Recent and favourite documents 95 | Comment[eo]=Lastaj kaj plej ŝatataj dokumentoj 96 | Comment[es]=Documentos recientes y favoritos 97 | Comment[et]=Viimased ja lemmik dokumendid 98 | Comment[eu]=Azken dokumentuak eta gogokoak 99 | Comment[fa]=پرونده های اخیر و موردعلاقه 100 | Comment[fi]=Edelliset ja suositut asiakirjat 101 | Comment[fil]=Mga kasalukuyan at paboritong dokumento 102 | Comment[fr]=Documents favoris et récents 103 | Comment[fr_CA]=Documents récents et favoris 104 | Comment[gl]=Documentos recentes e favoritos 105 | Comment[gu]=તાજેતરના અને મનપસંદ ડોક્યુમેન્ટ્સ 106 | Comment[he]=מסמכים אחרונים ומועדפים 107 | Comment[hi]=हालिया व पसंदीदा प्रलेख 108 | Comment[hr]=Nedavni i omiljeni dokumenti 109 | Comment[hu]=Legutóbbi és kedvenc dokumentumok 110 | Comment[ia]=Documentos recente e favoritos 111 | Comment[id]=Dokumen terbaru dan favorit 112 | Comment[ie]=Recent e preferet documentes 113 | Comment[is]=Nýleg og eftirlætisskjöl 114 | Comment[it]=Documenti recenti e preferiti 115 | Comment[ja]=最近またはお気に入りのドキュメント 116 | Comment[ka]=უახლესი და რჩეული დოკუმენტები 117 | Comment[kab]=Isemliyen n melmi kan akked yinurifen 118 | Comment[kk]=Жуырдағы мен таңдаулы құжаттар 119 | Comment[kn]=ಇತ್ತೀಚಿನ ಮತ್ತು ಅಚ್ಚುಮೆಚ್ಚಿನ ದಾಖಲೆಗಳು 120 | Comment[ko]=즐겨찾기 및 최근 사용한 문서 121 | Comment[ku]=Belgeyên dawî û bijare 122 | Comment[la]=Documenta recenta atque praeposita 123 | Comment[lo]=ເອກະສານທີ່ໃຊ້ຫຼ້າສຸດ ແລະ ລາຍການທີ່ມັກ 124 | Comment[lt]=Naujausi ir mėgstamiausi dokumentai 125 | Comment[lv]=Jaunākie un izlases dokumenti 126 | Comment[mk]=Неодамнешни и омилени документи 127 | Comment[ml]=സമീപകാലവും പ്രിയപ്പെട്ടതുമായ രേഖകൾ 128 | Comment[ms]=Dokemen terkini dan kegemaran 129 | Comment[nb]=Nylige og favorittdokumenter 130 | Comment[nl]=Recente en favoriete documenten 131 | Comment[nn]=Nylege og favorittdokument 132 | Comment[oc]=Documents recents e favorits 133 | Comment[pl]=Ostatnie i ulubione dokumenty 134 | Comment[pt]=Documentos recentes e favoritos 135 | Comment[pt_BR]=Documentos recentes e favoritos 136 | Comment[ro]=Documente favorite și recente 137 | Comment[ru]=Недавние и избранные документы 138 | Comment[rue]=Послїдні ай облюблені документы 139 | Comment[sk]=Nedávno otvorené a obľúbené dokumenty 140 | Comment[sl]=Nedavni in priljubljeni dokumenti 141 | Comment[sq]=Dokumentet e fundit dhe të preferuara 142 | Comment[sr]=Скорашњи и омиљени документи 143 | Comment[sr@latin]=Nedavno korišćeni i omiljeni dokumenti 144 | Comment[sv]=Senaste och bokmärkta dokument 145 | Comment[szl]=Nojnowsze i nojrŏdsze dokumynta 146 | Comment[te]=ఇటీవలి మరియు ఇష్టమైన పత్రాలు 147 | Comment[th]=เอกสารล่าสุดและเอกสารโปรด 148 | Comment[tr]=Son ve sık kullanılan belgeler 149 | Comment[tt]=Соңгы һәм яраткан документлар 150 | Comment[uk]=Останні та улюблені документи 151 | Comment[uz]=Oxirgi va sevimli hujjatlar 152 | Comment[vi]=Các tệp tin gần đây và yêu thích 153 | Comment[zh_CN]=最近及收藏的文件 154 | Comment[zh_TW]=最近開啟以及最愛的檔案 155 | Exec=thingy 156 | Icon=thingy 157 | Terminal=false 158 | Type=Application 159 | Encoding=UTF-8 160 | Categories=GTK;Office; 161 | Keywords=files;collection;documents;recent;favorite 162 | StartupNotify=false 163 | -------------------------------------------------------------------------------- /usr/share/thingy/doc-odp.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 55 | 59 | 63 | 72 | 76 | 80 | 81 | 82 | 85 | 89 | 92 | 98 | 109 | 113 | 119 | 125 | 131 | 137 | 143 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /usr/share/thingy/doc-txt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 21 | 39 | 41 | 42 | 44 | image/svg+xml 45 | 47 | 48 | 49 | 50 | 51 | 55 | 59 | 63 | 72 | 76 | 80 | 81 | 82 | 85 | 89 | 94 | 95 | 96 | 97 | 98 | 99 | --------------------------------------------------------------------------------