├── debian ├── compat ├── install ├── source │ └── format ├── rules ├── control └── copyright ├── .gitignore ├── makepot ├── Makefile ├── usr └── share │ └── folder-color-switcher │ └── color.svg ├── folder-color-switcher.pot └── po ├── ga.po ├── tg.po ├── bs.po ├── pa.po ├── sc.po ├── en_AU.po ├── af.po ├── ar.po ├── jv.po ├── km.po ├── zh_HK.po ├── zh_CN.po ├── zh_TW.po ├── zgh.po ├── ko.po ├── aa.po ├── am.po ├── ja.po ├── kab.po ├── mai.po ├── tt.po ├── si.po ├── szl.po ├── az.po ├── ms.po ├── sco.po ├── he.po ├── mr.po ├── ur.po ├── frp.po ├── kk.po ├── sn.po ├── sr@latin.po ├── fy.po ├── lo.po ├── en_CA.po ├── nap.po ├── ie.po ├── pap.po ├── gl.po ├── sr@ijekavian.po ├── ne.po └── nds.po /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | usr 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /debian/.debhelper/ 2 | /debian/files 3 | /debian/folder-color-switcher/ 4 | /debian/*.log 5 | /debian/*.substvars 6 | 7 | usr/share/locale/ -------------------------------------------------------------------------------- /makepot: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | xgettext --language=Python --keyword=_ --output=folder-color-switcher.pot \ 4 | usr/share/nemo-python/extensions/nemo-folder-color-switcher.py \ 5 | usr/share/caja-python/extensions/caja-folder-color-switcher.py 6 | -------------------------------------------------------------------------------- /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/folder-color-switcher-//'`; \ 8 | install -d usr/share/locale/$$lang/LC_MESSAGES/; \ 9 | msgfmt -o usr/share/locale/$$lang/LC_MESSAGES/folder-color-switcher.mo $$file; \ 10 | done \ 11 | 12 | clean: 13 | rm -rf usr/share/locale 14 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: folder-color-switcher 2 | Section: gnome 3 | Priority: extra 4 | Maintainer: Linux Mint 5 | Build-Depends: debhelper (>=10), dh-python 6 | Standards-Version: 3.9.5 7 | 8 | Package: folder-color-switcher 9 | Architecture: all 10 | Breaks: nemo-folder-color-switcher, caja-folder-color-switcher 11 | Replaces: nemo-folder-color-switcher, caja-folder-color-switcher 12 | Section: utils 13 | Priority: extra 14 | Description: Change a folder color 15 | Change folder colors 16 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 | Upstream-Name: folder-color-switcher 3 | Upstream-Contact: Linux Mint 4 | 5 | Files: *.* 6 | Copyright: 2014 Linux Mint 7 | License: GPL-3 8 | This program is free software; you can redistribute it and/or modify 9 | it under the terms of the GNU General Public License as published by 10 | the Free Software Foundation; version 3 dated June, 2007. 11 | . 12 | This program is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | . 17 | You should have received a copy of the GNU General Public License 18 | along with this program; if not, write to the Free Software 19 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, 20 | MA 02110-1301, USA. 21 | . 22 | The full text of the can be found in the file 23 | '/usr/share/common-licenses/GPL-3'. 24 | 25 | Files: debian/* 26 | Copyright: 2012 The friendly pkgme.net robot 27 | License: public-domain 28 | This automatically generated code which is free from copyright restrictions. 29 | 30 | -------------------------------------------------------------------------------- /usr/share/folder-color-switcher/color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 19 | 22 | 26 | 30 | 31 | 41 | 42 | 61 | 65 | 73 | 74 | 75 | -------------------------------------------------------------------------------- /folder-color-switcher.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: 2023-01-18 13:24+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/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- 1 | # Irish 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: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2024-11-30 06:20+0000\n" 12 | "Last-Translator: FULL NAME \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | # Tajik translation for linuxmint 2 | # Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2018-01-31 09:20+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Tajik \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- 1 | # Bosnian translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-08-14 14:10+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Bosnian \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- 1 | # Punjabi translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-07-12 03:51+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Punjabi \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 6 | "PO-Revision-Date: 2018-08-20 17:54+0000\n" 7 | "Last-Translator: amm \n" 8 | "Language-Team: LANGUAGE \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Launchpad-Export-Date: 2025-12-12 13:29+0000\n" 13 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 14 | "Language: \n" 15 | 16 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 17 | msgid "" 18 | "Allows you to change folder colors from the context menu under supported " 19 | "icon themes" 20 | msgstr "" 21 | 22 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 23 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 24 | msgid "Sand" 25 | msgstr "" 26 | 27 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 28 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 29 | msgid "Beige" 30 | msgstr "" 31 | 32 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 33 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 34 | msgid "Yellow" 35 | msgstr "Grogu" 36 | 37 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 38 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 39 | msgid "Orange" 40 | msgstr "Aràngiu" 41 | 42 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 43 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 44 | msgid "Brown" 45 | msgstr "" 46 | 47 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 48 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 49 | msgid "Red" 50 | msgstr "Ruju" 51 | 52 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 53 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 54 | msgid "Purple" 55 | msgstr "" 56 | 57 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 58 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 59 | msgid "Pink" 60 | msgstr "Rosa" 61 | 62 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 63 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 64 | msgid "Blue" 65 | msgstr "Biaitu" 66 | 67 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 68 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 69 | msgid "Cyan" 70 | msgstr "Asulu" 71 | 72 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 73 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 74 | msgid "Aqua" 75 | msgstr "Abba" 76 | 77 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 78 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 79 | msgid "Teal" 80 | msgstr "" 81 | 82 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 83 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 84 | msgid "Green" 85 | msgstr "Birde" 86 | 87 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 88 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 89 | msgid "White" 90 | msgstr "Biancu" 91 | 92 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 93 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 94 | msgid "Grey" 95 | msgstr "" 96 | 97 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 98 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 99 | msgid "Black" 100 | msgstr "Nieddu" 101 | 102 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 103 | msgid "Restores the color of the selected folders" 104 | msgstr "Torra a su colore predefinidu sas cartellas seletzionadas" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 107 | msgid "Restores the color of the selected folder" 108 | msgstr "Torra a su colore predefinidu sa cartella seletzionada" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 111 | #, python-format 112 | msgid "Changes the color of the selected folders to %s" 113 | msgstr "Torra sas cartellas seletzionadas a su colore %s" 114 | 115 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 116 | #, python-format 117 | msgid "Changes the color of the selected folder to %s" 118 | msgstr "Torra sa cartella seletzionada a su colore %s" 119 | 120 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 121 | msgid "Change color" 122 | msgstr "Muda su colore" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 125 | msgid "Default" 126 | msgstr "Predefinida" 127 | -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- 1 | # English (Australia) translation for linuxmint 2 | # Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2018-04-22 06:11+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: English (Australia) \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | # Afrikaans translation for linuxmint 2 | # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2017. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2017-04-30 10:27+0000\n" 12 | "Last-Translator: James \n" 13 | "Language-Team: Afrikaans \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sand" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Geel" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Oranje" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Bruin" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Rooi" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Pers" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Pienk" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blou" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Groen" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Wit" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Grys" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Swart" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: linuxmint\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 6 | "PO-Revision-Date: 2025-05-14 22:46+0000\n" 7 | "Last-Translator: Abdualrahman Hasan \n" 8 | "Language-Team: anwar AL_iskandrany \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Launchpad-Export-Date: 2025-12-12 13:29+0000\n" 13 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 14 | "Language: ar_EG\n" 15 | 16 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 17 | msgid "" 18 | "Allows you to change folder colors from the context menu under supported " 19 | "icon themes" 20 | msgstr "" 21 | "يسمح لك بتغيير ألوان المجلد من قائمة السياق عند سمات الأيقونات المدعومة." 22 | 23 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 24 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 25 | msgid "Sand" 26 | msgstr "رملي" 27 | 28 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 29 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 30 | msgid "Beige" 31 | msgstr "بيج" 32 | 33 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 34 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 35 | msgid "Yellow" 36 | msgstr "أصفر" 37 | 38 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 39 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 40 | msgid "Orange" 41 | msgstr "برتقالي" 42 | 43 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 44 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 45 | msgid "Brown" 46 | msgstr "بنى" 47 | 48 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 49 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 50 | msgid "Red" 51 | msgstr "أحمر" 52 | 53 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 54 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 55 | msgid "Purple" 56 | msgstr "أرجواني" 57 | 58 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 59 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 60 | msgid "Pink" 61 | msgstr "زهري" 62 | 63 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 64 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 65 | msgid "Blue" 66 | msgstr "أزرق" 67 | 68 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 69 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 70 | msgid "Cyan" 71 | msgstr "سماوي" 72 | 73 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 74 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 75 | msgid "Aqua" 76 | msgstr "مائي" 77 | 78 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 79 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 80 | msgid "Teal" 81 | msgstr "نهري" 82 | 83 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 84 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 85 | msgid "Green" 86 | msgstr "أخضر" 87 | 88 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 89 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 90 | msgid "White" 91 | msgstr "أبيض" 92 | 93 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 94 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 95 | msgid "Grey" 96 | msgstr "رمادي" 97 | 98 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 99 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 100 | msgid "Black" 101 | msgstr "أسود" 102 | 103 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 104 | msgid "Restores the color of the selected folders" 105 | msgstr "استعادة لون المجلدات المحددة" 106 | 107 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 108 | msgid "Restores the color of the selected folder" 109 | msgstr "استعادة لون المجلد المحدد" 110 | 111 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 112 | #, python-format 113 | msgid "Changes the color of the selected folders to %s" 114 | msgstr "يغير لون المجلدات المحددة إلى %s" 115 | 116 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 117 | #, python-format 118 | msgid "Changes the color of the selected folder to %s" 119 | msgstr "يغير لون المجلد المحدد إلى %s" 120 | 121 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 122 | msgid "Change color" 123 | msgstr "تغيير اللون" 124 | 125 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 126 | msgid "Default" 127 | msgstr "الإفتراضي" 128 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | # Javanese translation for linuxmint 2 | # Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2018-01-18 03:11+0000\n" 12 | "Last-Translator: bask80 \n" 13 | "Language-Team: Javanese \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Krem" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "kuning" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "coklat" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "biru" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "ijo" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "petak" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "cemeng" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "ubah werno folder pileh ten %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Genti Werno" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Asline" 131 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | # Khmer translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-08-14 15:08+0000\n" 12 | "Last-Translator: Rockworld \n" 13 | "Language-Team: Khmer \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "ដីខ្យាច់" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "​លឿង" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "អ៊័រីង" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "ពណ៌​ក្រហម" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "ពណ៌​ស្វាយ" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "ពណ៌ផ្កាឈូក" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "​​ខៀវ" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "​​បៃតង" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "ស" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "ប្រផេះ" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "ខ្មៅ" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "​លំនាំដើម" 131 | -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- 1 | # Chinese (Hong Kong) translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2014-11-17 11:06+0000\n" 12 | "Last-Translator: tomoe_musashi \n" 13 | "Language-Team: Chinese (Hong Kong) \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "卡其色" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "米色" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "黃色" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "橙色" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "啡色" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "紅色" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "紫色" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "粉紅色" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "藍色" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "青色" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "海藍色" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "藍綠色" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "綠色" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "白色" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "灰色" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "黑色" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "還原已選擇資料夾的顏色" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "還原已選擇資料夾的顏色" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "更改已選擇資料夾的顏色至 %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "更改已選擇資料夾的顏色至 %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "更改顏色" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "預設值" 131 | -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- 1 | # Chinese (Simplified) translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2024-07-19 01:22+0000\n" 12 | "Last-Translator: 张鹏 \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "在支持的图标主题下,允许您从上下文菜单中改变文件夹颜色" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "沙色" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "米色" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "黄色" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "橙色" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "棕色" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "红色" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "紫色" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "粉色" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "蓝色" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "青色" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "水绿色" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "深青色" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "绿色" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "白色" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "灰色" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "黑色" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "恢复选中文件夹的颜色" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "恢复选中文件夹的颜色" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "将选中文件夹的颜色改变为%s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "将选中文件夹的颜色改变为%s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "改变颜色" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "默认" 131 | -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- 1 | # Chinese (Traditional) translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2024-02-10 16:32+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "允許您在有支援的圖示主題的內容選單裏更改目錄顏色" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "卡其色" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "米黃色" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "黃色" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "橙色" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "棕色" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "紅色" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "紫色" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "粉紅色" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "藍色" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "青色" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "水藍色" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "藍綠色" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "綠色" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "白色" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "灰色" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "黑色" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "還原選擇的資料夾顏色" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "還原選擇的資料夾顏色" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "變更選擇的資料夾顏色至 %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "變更選擇的資料夾顏色至 %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "變更顏色" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "預設值" 131 | -------------------------------------------------------------------------------- /po/zgh.po: -------------------------------------------------------------------------------- 1 | # Standard Moroccan Tamazight translation for linuxmint 2 | # Copyright (c) 2020 Rosetta Contributors and Canonical Ltd 2020 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2020. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2020-10-19 23:20+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "ⴰⴽⵥⴰⵥ" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "ⴰⴱⵉⵊⵉ" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "ⴰⵡⵔⴰⵖ" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "ⴰⵍⵉⵜⵛⵉⵏ" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "ⴰⴷⵎⵎⴰⵏ" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "ⴰⵣⴳⴳⵯⴰⵖ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "ⴰⵎⴽⵥⴰⵢ" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "ⴰⵣⵡⴰⵡⴰⵖ" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "ⴰⵏⵉⵍⵉ" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "ⴰⵜⵉⵍⵉ" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "ⴰⵣⴳⵣⴰ" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "ⴰⵎⵍⵍⴰⵍ" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "ⴰⴱⵔⴽⴰⵏ" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "ⵍⴰ ⵉⵜⵜⵔⵔⴰ ⵓⴽⵍⵓ ⵏ ⵓⵙⴷⴰⵡ ⵉⵜⵜⵓⵙⵜⵜⵢⵏ" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "ⵙⵏⴼⵍ ⴰⴽⵍⵓ" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- 1 | # Korean translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2023-03-27 08:28+0000\n" 12 | "Last-Translator: Cryental \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "지원되는 아이콘 테마의 상황에 맞는 메뉴에서 폴더 색상을 변경할 수 있습니다" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "모래색" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "베이지색" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "노란색" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "주황색" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "갈색" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "빨간색" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "보라색" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "분홍색" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "파란색" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "청록색" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "바다색" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "청록색" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "초록색" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "흰색" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "회색" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "검정색" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "선택한 폴더들의 색을 되돌립니다" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "선택한 폴더의 색을 되돌립니다" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "선택한 폴더들의 색을 %s 으로 바꿉니다" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "선택한 폴더의 색을 %s 으로 바꿉니다" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "색 바꿈" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "기본값" 131 | -------------------------------------------------------------------------------- /po/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: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2021-12-25 01:53+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Siisa" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Hurdi" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Qisi" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Bulci" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Inxixi" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Qidi" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Diti" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Dooritte olitteh bisu wadir gacis" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Dooritte olih bisu wadir gacis" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Dooritte olitteh bisu %s koris" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Dooritte olih bisu %s koris" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Bisu koris" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Koyni" 131 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | # Amharic translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-03-07 18:22+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "አሸዋ" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "ቤዥ" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "ቢጫ" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "ብርቱካን" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "ቡናማ" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "ቀይ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "ወይን ጠጅ" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "ሮዝ" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "ሰማያዊ" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "አረንጓዴ ሰማያዊ" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "ውሃ" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "ሰማያዊ አረንጓዴ" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "አረንጓዴ" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "ነጭ" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "ግራጫ" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "ጥቁር" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "የተመረጡትን ፎልደሮች ቀለም እንደ ነበር መመለሻ" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "የተመረጠውን ፎልደር ቀለም እንደ ነበር መመለሻ" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "የተመረጡትን ፎልደሮች ቀለም መቀየሪያ ወደ %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "የተመረጠውን ፎልደር ቀለም መቀየሪያ ወደ %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "ቀለም መቀየሪያ" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "ነባር" 131 | -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- 1 | # Japanese translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2023-12-02 11:01+0000\n" 12 | "Last-Translator: BALLOON \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: ja\n" 20 | 21 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 22 | msgid "" 23 | "Allows you to change folder colors from the context menu under supported " 24 | "icon themes" 25 | msgstr "サポートされているアイコンテーマにおいて、コンテキストメニューからフォルダーの色を変更できるようにします" 26 | 27 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 28 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 29 | msgid "Sand" 30 | msgstr "砂色" 31 | 32 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 33 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 34 | msgid "Beige" 35 | msgstr "ベージュ" 36 | 37 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 38 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 39 | msgid "Yellow" 40 | msgstr "黄色" 41 | 42 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 43 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 44 | msgid "Orange" 45 | msgstr "オレンジ" 46 | 47 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 48 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 49 | msgid "Brown" 50 | msgstr "茶色" 51 | 52 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 53 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 54 | msgid "Red" 55 | msgstr "赤" 56 | 57 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 58 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 59 | msgid "Purple" 60 | msgstr "紫" 61 | 62 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 63 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 64 | msgid "Pink" 65 | msgstr "ピンク" 66 | 67 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 68 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 69 | msgid "Blue" 70 | msgstr "青" 71 | 72 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 73 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 74 | msgid "Cyan" 75 | msgstr "シアン" 76 | 77 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 78 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 79 | msgid "Aqua" 80 | msgstr "水色" 81 | 82 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 83 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 84 | msgid "Teal" 85 | msgstr "青緑" 86 | 87 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 88 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 89 | msgid "Green" 90 | msgstr "緑" 91 | 92 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 93 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 94 | msgid "White" 95 | msgstr "白" 96 | 97 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 98 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 99 | msgid "Grey" 100 | msgstr "灰色" 101 | 102 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 103 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 104 | msgid "Black" 105 | msgstr "黒" 106 | 107 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 108 | msgid "Restores the color of the selected folders" 109 | msgstr "選択しているフォルダーの色を元に戻します" 110 | 111 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 112 | msgid "Restores the color of the selected folder" 113 | msgstr "選択しているフォルダーの色を元に戻します" 114 | 115 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 116 | #, python-format 117 | msgid "Changes the color of the selected folders to %s" 118 | msgstr "選択しているフォルダーの色を%sにします" 119 | 120 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 121 | #, python-format 122 | msgid "Changes the color of the selected folder to %s" 123 | msgstr "選択しているフォルダーの色を%sにします" 124 | 125 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 126 | msgid "Change color" 127 | msgstr "色を変更" 128 | 129 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 130 | msgid "Default" 131 | msgstr "既定" 132 | -------------------------------------------------------------------------------- /po/kab.po: -------------------------------------------------------------------------------- 1 | # Kabyle translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2018-10-29 14:18+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Azen" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Awraɣ" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Ačinawi" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Aqehwi" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Azeggaɣ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Avyuli" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Axuxi" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Anili" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Teal" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Azegzaw" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Amellal" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Amumad" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Aberkan" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Err-d ini n ikaramen yettwafernen" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Err-d ini n ukaram yettwafernen" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Snifel ini n ikaramen yettwafernen ar %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Snifel ini n ukaram yettwafernen ar %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Snifel ini" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Amezwer" 131 | -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- 1 | # Maithili translation for linuxmint 2 | # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2017. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2019-07-21 05:06+0000\n" 12 | "Last-Translator: Abhinav Jha \n" 13 | "Language-Team: Maithili \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "बाउल" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "गहीर पीयर" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "पिअर" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "नारंगी" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "भूरा" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "लाल" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "बैंगनी" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "गुलाबी" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "नीला" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "सियान" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "पाइनक रङ्ग" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "चैती" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "हरिअर" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "उज्जर" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "धूसर" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "करिया" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "चुनल फोल्डरक रङ्ग पुन: स्थपित करू" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "चुनल फोल्डरक रङ्ग पुन: स्थपित करू" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "चुनल फोल्डरक रङ्ग %s मे परिवर्तित करू" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "चुनल फोल्डरक रङ्ग %s मे परिवर्तित करू" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "रंग बदलू" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "पूर्वनिर्धारित" 131 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # Tatar translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-06-15 17:31+0000\n" 12 | "Last-Translator: myname \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Ком" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Аксыл көрән" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Сары" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Кызгылт сары" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Коңгырт" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Кызыл" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Шәмәхә" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Алсу" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Зәңгәр" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Зәңгәрсу" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Су" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Чәй" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Яшел" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Ак" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Соры" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Кара" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Сайланган папкаларның төсен кайтару" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Сайланган папканың төсен кайтару" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Сайланган папкаларның төсен %s үзгәртү" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Сайланган папканың төсен %s үзгәртү" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Төсне үзгәртү" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Баштагыча" 131 | -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- 1 | # Sinhalese translation for linuxmint 2 | # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2017. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2017-09-07 09:13+0000\n" 12 | "Last-Translator: Clement Lefebvre \n" 13 | "Language-Team: Sinhalese \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "වැලි" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "කහ" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "තැඹිලි" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "රතු" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "දම්" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "රෝස" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "සයන්" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "ජලජ" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "ටීල්" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "කොළ" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "අළු" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "කලු" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "තෝරාගත් ෆොල්ඩරයන්ගේ වර්නය ප්රතිස්ථාපනය කරයි" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "තෝරාගත් ෆොල්ඩරයේ වර්නය ප්රතිස්ථාපනය කරයි" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "තෝරාගත් ෆෝල්ඩරයන්ගේ වර්ණය %s වෙත වෙනස් කරන්න" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "තෝරාගත් ෆෝල්ඩරයේ වර්ණය %s වෙත වෙනස් කරන්න" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "වර්ණය වෙනස් කරන්න" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "පෙරනිමි" 131 | -------------------------------------------------------------------------------- /po/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: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2023-12-26 20:02+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Piŏskowy" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beżowy" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Żōłty" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Pōmarańczowy" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Brōnŏtny" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Czyrwōny" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Lilowy" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Rōżowy" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Modry" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyjan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Morski" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Zielōny" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Bioły" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Siwy" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Czŏrny" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Dŏwŏ nazŏd farbã ôbranych katalogōw" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Dŏwŏ nazŏd farbã ôbranego katalogu" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Zmiyniŏ farbã ôbranych katalogōw na %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Zmiyniŏ farbã ôbranego katalogu na %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Zmiyń farbã" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "" 131 | -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- 1 | # Azerbaijani translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2018-08-10 21:38+0000\n" 12 | "Last-Translator: Arif \n" 13 | "Language-Team: Azerbaijani \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Qum" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Dərin Qum" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Sarı" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Turuncu" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Ağac" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Qızıl" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Böyürtkən" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Açıq Qızıl" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Göy" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Dərin Göy" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Açıq Göy" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Dərin Yaşıl" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Yaşıl" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Ağ" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Boz" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Qara" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Seçilən qovluqların tüsünü qaytarır" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Seçilən qovluğun tüsünü qaytarır" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Seçilən qovluqların tüsünü %s tüsə dəyişir" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Seçilən qovluğun tüsünü %s tüsə dəyişir" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Tüsü dəyiş" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Varsayılan" 131 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2014-10-07 13:59+0000\n" 12 | "Last-Translator: Fazwan Fazil \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Pasir" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Kuning Air" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Kuning" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Jingga" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Perang" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Merah" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Ungu" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Merah Jambu" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Biru" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Sian" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Akua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Hijau Kebiruan" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Hijau" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Putih" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Kelabu" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Hitam" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Mengembalikan warna folder yang dipilih" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Mengembalikan warna folder yang dipilih" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Ubah warna folder yang dipilih ke %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Ubah warna folder yang dipilih ke %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Ubah warna" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Lalai" 131 | -------------------------------------------------------------------------------- /po/sco.po: -------------------------------------------------------------------------------- 1 | # Scots translation for linuxmint 2 | # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2017. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2017-10-14 14:36+0000\n" 12 | "Last-Translator: Eilidh Martin \n" 13 | "Language-Team: Scots \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Saund" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Yella" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Orange" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Broon" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Rid" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Purple" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Peenk" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blue" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Teal" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Green" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "White" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Gray" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Bleck" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Restores the colour o' the selectit fowders" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Restores the colour o' the selectit fowder" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Changes the colour o' the selectit fowders to %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Changes the colour o' the selectit fowder to %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Change colour" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Default" 131 | -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- 1 | # Hebrew translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2024-05-04 12:00+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "אפשרות לשינוי צבע תיקייה מתפריט ההקשר ומלשונית ערכות סמלים נתמכים" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "חול" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "בז׳" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "צהוב" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "כתום" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "חום" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "אדום" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "סגול" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "ורוד" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "כחול" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "תכלת" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "כחול ירקרק" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "ירוק כחלחל" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "ירוק" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "לבן" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "אפור" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "שחור" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "שחזור צבעי התיקיות שנבחרו" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "שחזור צבע התיקייה שנבחרה" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "שנוי צבעי התיקיות שנבחרו ל%s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "שינוי צבע התיקייה שנבחרה ל%s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "שינוי צבע" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "ברירת מחדל" 131 | -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- 1 | # Marathi translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-04-21 14:24+0000\n" 12 | "Last-Translator: Clement Lefebvre \n" 13 | "Language-Team: Marathi \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "रेती" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "फिकट तपकिरी" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "पिवळा" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "नारंगी" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "तपकिरी" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "लाल" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "जांभळा" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "गुलाबी" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "निळा" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "निळसर हिरवा" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "खडा रंग" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "हिरवट निळा रंग" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "खडा रंग" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "पांढरा" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "करडा" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "काळा" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "निवडलेल्या फोल्डर्सचा रंग पूर्ववत करा" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "निवडलेल्या फोल्डरचा रंग पूर्ववत करा" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "निवडलेल्या फोल्डर्सचा रंग बदल'%s'" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "निवडलेल्या फोल्डरचा रंग बदल'%s'" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "रंग बदला" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "पूर्वनिर्धारित" 131 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | # Urdu translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-10-22 02:37+0000\n" 12 | "Last-Translator: Waqar Ahmed \n" 13 | "Language-Team: Urdu \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "ریت" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "خاکستری" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "پیلا" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "نارنگی - مالٹا" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "بھورا" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "سرخ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "جامنی" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "گلابی" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "نیلا" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "فیروزی" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "ایکوا - آبی" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "نیلگوں" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "سبز" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "سفید" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "گرے" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "سیاہ" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "منتخب کردہ فولڈروں کا رنگ بحال کرتا ہے" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "منتخب کردہ فولڈر کا رنگ بحال کرتا ہے" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "منتخب کردہ فولڈروں کا رنگ %s میں تبدیل کرتا ہے" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "منتخب کردہ فولڈر کا رنگ %s میں تبدیل کرتا ہے" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "رنگ تبدیل کریں" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "طے شدہ" 131 | -------------------------------------------------------------------------------- /po/frp.po: -------------------------------------------------------------------------------- 1 | # Franco-Provençal translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-08-19 17:00+0000\n" 12 | "Last-Translator: Alekĉjo \n" 13 | "Language-Team: Franco-Provençal \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sabla" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Rossèt" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Jôno" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Orange" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Brun" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Rôjo" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Violèt" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Rosa" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blu" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Pèrs" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Égua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Azur" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Vèrd" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Blanc" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Gris" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Nêr" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Rèstorar la colòr dos dossiérs sèlèccionâs" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Rèstorar la colòr du dossiér sèlèccionâ" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Changiér la colòr dos dossiérs sèlèccionâs en %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Changiér la colòr du dossiér sèlèccionâ en %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Changiér la colòr" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Pèr dèfôt" 131 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | # Kazakh translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-03-08 15:24+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Құмды" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Сарғыш" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Сары" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Қызғылт сары" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Қоңыр" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Қызыл" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Күлгін" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Қызғылт" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Көк" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Көгілдір" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Көкшіл" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Көк-жасыл" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Жасыл" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Ақ" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Сұр" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Қара" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Таңдалған қапшықтың түсін қалпына келтіру" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Таңдалған қапшықтың түсін қалпына келтіру" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Таңдалған қапшықтың түсін %s түске өзгерту" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Таңдалған қапшықтың түсін %s түске өзгерту" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Түсті өзгерту" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Әдетті" 131 | -------------------------------------------------------------------------------- /po/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: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2024-11-04 11:59+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | "Inokutendera kuti ushandure mavara ebutiro kubva mukati menyu inodavira ma " 26 | "icon themes" 27 | 28 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 29 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 30 | msgid "Sand" 31 | msgstr "Jecha" 32 | 33 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 34 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 35 | msgid "Beige" 36 | msgstr "" 37 | 38 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 39 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 40 | msgid "Yellow" 41 | msgstr "" 42 | 43 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 44 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 45 | msgid "Orange" 46 | msgstr "Tsukuruku" 47 | 48 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 49 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 50 | msgid "Brown" 51 | msgstr "Shava" 52 | 53 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 54 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 55 | msgid "Red" 56 | msgstr "Dzvuku" 57 | 58 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 59 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 60 | msgid "Purple" 61 | msgstr "" 62 | 63 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 64 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 65 | msgid "Pink" 66 | msgstr "" 67 | 68 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 69 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 70 | msgid "Blue" 71 | msgstr "" 72 | 73 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 74 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 75 | msgid "Cyan" 76 | msgstr "" 77 | 78 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 79 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 80 | msgid "Aqua" 81 | msgstr "" 82 | 83 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 84 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 85 | msgid "Teal" 86 | msgstr "" 87 | 88 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 89 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 90 | msgid "Green" 91 | msgstr "Zerere" 92 | 93 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 94 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 95 | msgid "White" 96 | msgstr "Jena" 97 | 98 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 99 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 100 | msgid "Grey" 101 | msgstr "Pfumbu" 102 | 103 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 104 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 105 | msgid "Black" 106 | msgstr "Nhema" 107 | 108 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 109 | msgid "Restores the color of the selected folders" 110 | msgstr "Inodzorera ruvara rwemabutiro akasharwa" 111 | 112 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 113 | msgid "Restores the color of the selected folder" 114 | msgstr "Inodzorera ruvara rwebutiro rasharwa" 115 | 116 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 117 | #, python-format 118 | msgid "Changes the color of the selected folders to %s" 119 | msgstr "Inoshandura ruvara remabutiro akasharwa ku %s" 120 | 121 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 122 | #, python-format 123 | msgid "Changes the color of the selected folder to %s" 124 | msgstr "" 125 | 126 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 127 | msgid "Change color" 128 | msgstr "Shandura ruvara" 129 | 130 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 131 | msgid "Default" 132 | msgstr "" 133 | -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- 1 | # Serbian Latin translation for linuxmint 2 | # Copyright (c) 2018 Rosetta Contributors and Canonical Ltd 2018 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2020-05-22 12:52+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Pesak" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Bež" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Žuta" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Narandžasta" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Smeđa" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Crvena" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Ljubičasta" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Roze" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Plava" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Zelenkasto-plava" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Voda" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Plavo-zelena" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Zelena" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Bela" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Siva" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Crna" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Vraća boju odabranih fascikli" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Vraća boju odabrane fascikle" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Menja boju odabranih fascikli na %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Menja boju odabrane fascikle na %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Promenite boju" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Podrazumevano" 131 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | # Frisian translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-05-17 14:49+0000\n" 12 | "Last-Translator: David Metzlar \n" 13 | "Language-Team: Frisian \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sân" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Bêzje" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Giel" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Oranje" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Brún" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Read" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Pears" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Rôze" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blau" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Syaan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Tjilling" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Grien" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Wyt" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Griis" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Swart" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Ferhellet de kleur fan de selektearde mappen" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Ferhellet de kleur fan de selektearde map" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Feroaret de kleur fan de selektearde mappen nei %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Feroaret de kleur fan de selektearde mappen nei %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Kleur feroarje" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Standert" 131 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | # Lao translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2025-10-15 10:09+0000\n" 12 | "Last-Translator: Rockworld \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "ອະນຸຍາດໃຫ້ທ່ານປ່ຽນສີໂຟນເດີຈາກເມນູສະພາບການພາຍໃຕ້ຮູບແບບໄອຄອນທີ່ຮອງຮັບ" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "ດິນຊາຍ" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "ສີເບຈ" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "ສີເຫຼືອງ" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "ສີສົ້ມ" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "ສີນ້ຳຕານ" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "ສີແດງ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "ສີມ່ວງ" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "ສີບົວ" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "ສີນ້ຳເງິນ" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "ອາຄົວ" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "ສີຂຽວແກ່" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "ສີຂຽວ" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "ຂາວ" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "ສີເທົາ" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "ດຳ" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "ກູ້ຄືນສີຂອງໂຟນເດີທີ່ເລືອກໄວ້" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "ກູ້ຄືນສີຂອງໂຟນເດີທີ່ເລືອກ" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "ປ່ຽນສີຂອງໂຟນເດີທີ່ເລືອກເປັນ %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "ປ່ຽນສີຂອງໂຟນເດີທີ່ເລືອກເປັນ %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "ປ່ຽນສີ" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "ຄ່າເລີ່ມຕົ້ນ" 131 | -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- 1 | # English (Canada) translation for linuxmint 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2022-07-12 10:22+0000\n" 12 | "Last-Translator: Brandon Lundh \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sand" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Yellow" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Orange" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Brown" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Red" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Purple" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Pink" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blue" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Teal" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Green" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "White" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Grey" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Black" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Restores the colour of the selected folders" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Restores the colour of the selected folder" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Changes the colour of the selected folders to %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Changes the colour of the selected folder to %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Change colour" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Default" 131 | -------------------------------------------------------------------------------- /po/nap.po: -------------------------------------------------------------------------------- 1 | # Neapolitan translation for linuxmint 2 | # Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2017. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2017-06-28 19:07+0000\n" 12 | "Last-Translator: Silvio Celeste \n" 13 | "Language-Team: Neapolitan \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sabbia" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Giall" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Arancio" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Marrò" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Russ" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Viola" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Rosa" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blè" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Ciano" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Azzurr" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Verde Comm all'Acqua" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Verd" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Ianc" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Grigio" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Nir" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Miett n''ata vot 'o culor e sti cartell comm stevn primm" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Miett n''ata vot 'o culor 'e sta cartell comm stev primm" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Cagn o culor 'e sti cartell a %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Cagn o culor 'e sta cartell a %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Cagn culor" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Predefinit" 131 | -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- 1 | # Interlingue translation for linuxmint 2 | # Copyright (c) 2019 Rosetta Contributors and Canonical Ltd 2019 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2019. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2019-05-10 23:18+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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | "Language: ie\n" 20 | 21 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 22 | msgid "" 23 | "Allows you to change folder colors from the context menu under supported " 24 | "icon themes" 25 | msgstr "" 26 | 27 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 28 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 29 | msgid "Sand" 30 | msgstr "Sand" 31 | 32 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 33 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 34 | msgid "Beige" 35 | msgstr "Beige" 36 | 37 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 38 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 39 | msgid "Yellow" 40 | msgstr "Yelb" 41 | 42 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 43 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 44 | msgid "Orange" 45 | msgstr "Orangi" 46 | 47 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 48 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 49 | msgid "Brown" 50 | msgstr "Brun" 51 | 52 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 53 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 54 | msgid "Red" 55 | msgstr "Rubi" 56 | 57 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 58 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 59 | msgid "Purple" 60 | msgstr "Purpur" 61 | 62 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 63 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 64 | msgid "Pink" 65 | msgstr "Rosi" 66 | 67 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 68 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 69 | msgid "Blue" 70 | msgstr "Blu" 71 | 72 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 73 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 74 | msgid "Cyan" 75 | msgstr "Cian" 76 | 77 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 78 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 79 | msgid "Aqua" 80 | msgstr "Aqua" 81 | 82 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 83 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 84 | msgid "Teal" 85 | msgstr "Intens azur-verdi" 86 | 87 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 88 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 89 | msgid "Green" 90 | msgstr "Verdi" 91 | 92 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 93 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 94 | msgid "White" 95 | msgstr "Blanc" 96 | 97 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 98 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 99 | msgid "Grey" 100 | msgstr "Gris" 101 | 102 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 103 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 104 | msgid "Black" 105 | msgstr "Nigri" 106 | 107 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 108 | msgid "Restores the color of the selected folders" 109 | msgstr "Restituer li color del selectet fólderes" 110 | 111 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 112 | msgid "Restores the color of the selected folder" 113 | msgstr "Restituer li color del selectet fólder" 114 | 115 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 116 | #, python-format 117 | msgid "Changes the color of the selected folders to %s" 118 | msgstr "Cambiar li color del selectet fólderes per %s" 119 | 120 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 121 | #, python-format 122 | msgid "Changes the color of the selected folder to %s" 123 | msgstr "Cambiar li color del selectet fólder per %s" 124 | 125 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 126 | msgid "Change color" 127 | msgstr "Cambiar li color" 128 | 129 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 130 | msgid "Default" 131 | msgstr "Predefinit" 132 | -------------------------------------------------------------------------------- /po/pap.po: -------------------------------------------------------------------------------- 1 | # Papiamento translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-06-23 05:09+0000\n" 12 | "Last-Translator: Frank \n" 13 | "Language-Team: Papiamento \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Santu" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Hel" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Oraño" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Maron" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Kòra" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Lila" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Ros" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blòu" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Teal" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Bèrdè" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Blanku" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Shinishi" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Pretu" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Esaki ta restaura e kolo di e mapnan selekta" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Esaki ta restaura e kolo di e mapnan selekta" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Esaki ta kambia e kolo di e mapnan selekta na %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Esaki ta kambia e kolo di e mapnan selekta na %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Kambia e kolo" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Aplika e standard bèk" 131 | -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- 1 | # Galician translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-03-13 08:48+0000\n" 12 | "Last-Translator: Miguel Anxo Bouzada \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Aréa" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beixe" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Amarelo" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Laranxa" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Marrón" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Vermello" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Púrpura" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Rosa" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Azul" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cián" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Auga" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Verde azulado" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Verde" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Branco" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Gris" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Negro" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Restaura a cor dos cartafoles seleccionados" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Restaura a cor do cartafol seleccionado" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Cambia a cor dos cartafoles seleccionados ao %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Cambia a cor do cartafol seleccionado ao %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Cambiar a cor" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Predeterminado" 131 | -------------------------------------------------------------------------------- /po/sr@ijekavian.po: -------------------------------------------------------------------------------- 1 | # Serbian Ijekavian 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: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2021-06-16 12:47+0000\n" 12 | "Last-Translator: Dušan Jović \n" 13 | "Language-Team: Serbian Ijekavian \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Пијесак" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Беж" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Жута" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Наранџаста" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Браон" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Црвенa" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Љубичаста" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Розе" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Плава" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Цијан" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Водена" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Зеленкаста" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Зелена" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Бијела" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Сива" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Црна" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Враћа подразумевану боју изабраним фасциклама" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Враћа подразумевану боју изабраној фасцикли" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Мења боју изабраним фасциклама у %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Мења боју изабраној фасцикли у %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Измјени боју" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Подразумјевано" 131 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | # Nepali translation for linuxmint 2 | # Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2016. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2016-05-07 01:40+0000\n" 12 | "Last-Translator: Bikram Dangol \n" 13 | "Language-Team: Nepali \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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "बालुवा" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "बेइज" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "पहेँलो" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "सुन्तला" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "खैरो" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "रातो" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "बैजनी" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "गुलाबी" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "निलो" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "सायन" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "पानी" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "गाढा हरियो निलो" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "हरियो" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "सेतो" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "खरानी रंग" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "कालो" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "चयन गरिएको फोल्डरहरु को रंग पुनर्स्थापना" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "चयन गरिएको फोल्डर को रंग पुनर्स्थापना" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "चयन गरिएको फोल्डरहरु को रंग %s मा परिवर्तन हुन्छ" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "चयन गरिएको फोल्डर को रंग %s मा परिवर्तन हुन्छ" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "रंग परिवर्तन गर्नु होस्" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "पूर्वनिर्धारित" 131 | -------------------------------------------------------------------------------- /po/nds.po: -------------------------------------------------------------------------------- 1 | # Low German translation for linuxmint 2 | # Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015 3 | # This file is distributed under the same license as the linuxmint package. 4 | # FIRST AUTHOR , 2015. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: linuxmint\n" 9 | "Report-Msgid-Bugs-To: FULL NAME \n" 10 | "POT-Creation-Date: 2023-01-18 13:24+0000\n" 11 | "PO-Revision-Date: 2015-05-11 17:01+0000\n" 12 | "Last-Translator: Cedrik Heckenbach \n" 13 | "Language-Team: Low 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:29+0000\n" 18 | "X-Generator: Launchpad (build 379e22b8475e3402088a4cdb4a6e7936a4d28414)\n" 19 | 20 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:35 21 | msgid "" 22 | "Allows you to change folder colors from the context menu under supported " 23 | "icon themes" 24 | msgstr "" 25 | 26 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:62 27 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:54 28 | msgid "Sand" 29 | msgstr "Sand" 30 | 31 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:63 32 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:55 33 | msgid "Beige" 34 | msgstr "Beige" 35 | 36 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:64 37 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:56 38 | msgid "Yellow" 39 | msgstr "Gelb" 40 | 41 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:65 42 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:57 43 | msgid "Orange" 44 | msgstr "Orange" 45 | 46 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:66 47 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:58 48 | msgid "Brown" 49 | msgstr "Braun" 50 | 51 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:67 52 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:59 53 | msgid "Red" 54 | msgstr "Rot" 55 | 56 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:68 57 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:60 58 | msgid "Purple" 59 | msgstr "Voilett" 60 | 61 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:69 62 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:61 63 | msgid "Pink" 64 | msgstr "Pink" 65 | 66 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:70 67 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:62 68 | msgid "Blue" 69 | msgstr "Blau" 70 | 71 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:71 72 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:63 73 | msgid "Cyan" 74 | msgstr "Cyan" 75 | 76 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:72 77 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:64 78 | msgid "Aqua" 79 | msgstr "Aqua" 80 | 81 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:73 82 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:65 83 | msgid "Teal" 84 | msgstr "Blaugrün" 85 | 86 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:74 87 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:66 88 | msgid "Green" 89 | msgstr "Grün" 90 | 91 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:75 92 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:67 93 | msgid "White" 94 | msgstr "Weiß" 95 | 96 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:76 97 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:68 98 | msgid "Grey" 99 | msgstr "Grau" 100 | 101 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:77 102 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:69 103 | msgid "Black" 104 | msgstr "Schwarz" 105 | 106 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:429 107 | msgid "Restores the color of the selected folders" 108 | msgstr "Die Farbe der ausgewählten Ordner wiederherstellen" 109 | 110 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:431 111 | msgid "Restores the color of the selected folder" 112 | msgstr "Die Farbe des ausgewählten Ordners wiederherstellen" 113 | 114 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:441 115 | #, python-format 116 | msgid "Changes the color of the selected folders to %s" 117 | msgstr "Ändert die Farbe der ausgewählten Ordner zu %s" 118 | 119 | #: usr/share/nemo-python/extensions/nemo-folder-color-switcher.py:443 120 | #, python-format 121 | msgid "Changes the color of the selected folder to %s" 122 | msgstr "Ändert die Farbe des ausgewählten Ordners zu %s" 123 | 124 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:352 125 | msgid "Change color" 126 | msgstr "Farbe ändern" 127 | 128 | #: usr/share/caja-python/extensions/caja-folder-color-switcher.py:368 129 | msgid "Default" 130 | msgstr "Standard" 131 | --------------------------------------------------------------------------------