From 121b96959a05f7b8670e2b2d452f0f5d26691a39 Mon Sep 17 00:00:00 2001 From: Georg Sieber Date: Thu, 31 Jul 2025 17:27:40 +0200 Subject: [PATCH 1/2] add option to display label and free space --- .../files/diskspace@schorschii/desklet.js | 25 +++++++++++-------- .../files/diskspace@schorschii/metadata.json | 7 +++--- .../files/diskspace@schorschii/po/de.po | 5 +++- .../po/diskspace@schorschii.pot | 4 +++ .../diskspace@schorschii/settings-schema.json | 1 + 5 files changed, 28 insertions(+), 14 deletions(-) diff --git a/diskspace@schorschii/files/diskspace@schorschii/desklet.js b/diskspace@schorschii/files/diskspace@schorschii/desklet.js index 10efde6cc..a8ede5c9c 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/desklet.js +++ b/diskspace@schorschii/files/diskspace@schorschii/desklet.js @@ -270,18 +270,23 @@ MyDesklet.prototype = { let textSub1 = ""; let textSub2 = ""; + let name = ""; + if(type == "ram") { + name = this.shortText(_("RAM")); + } else if(type == "swap") { + name = this.shortText(_("Swap")); + } else if(fs == "/") { + name = this.shortText(_("Filesystem")); + } else { + let pathparts = fs.split("/"); + name = this.shortText(pathparts[pathparts.length-1]); + } if(this.text_view == "name-size") { - if(type == "ram") { - textSub1 = this.shortText(_("RAM")); - } else if(type == "swap") { - textSub1 = this.shortText(_("Swap")); - } else if(fs == "/") { - textSub1 = this.shortText(_("Filesystem")); - } else { - let pathparts = fs.split("/"); - textSub1 = this.shortText(pathparts[pathparts.length-1]); - } + textSub1 = name; textSub2 = this.niceSize(size); + } else if(this.text_view == "name-free") { + textSub1 = name; + textSub2 = this.niceSize(avail); } else if(this.text_view == "used-size") { textSub1 = this.niceSize(use); textSub2 = this.niceSize(size); diff --git a/diskspace@schorschii/files/diskspace@schorschii/metadata.json b/diskspace@schorschii/files/diskspace@schorschii/metadata.json index 5a43d80c4..47b1df041 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/metadata.json +++ b/diskspace@schorschii/files/diskspace@schorschii/metadata.json @@ -2,6 +2,7 @@ "max-instances": "10", "description": "Displays the usage of a filesystem or RAM.", "name": "Disk Space", - "version": "1.17", - "uuid": "diskspace@schorschii" -} + "version": "1.18", + "uuid": "diskspace@schorschii", + "author": "schorschii" +} \ No newline at end of file diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/de.po b/diskspace@schorschii/files/diskspace@schorschii/po/de.po index 17f3c0d63..62a488714 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/de.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/de.po @@ -83,6 +83,9 @@ msgstr "Text" msgid "Name and total space" msgstr "Bezeichnung und Kapazität" +msgid "Name and free space" +msgstr "Bezeichnung und freier Speicherplatz" + msgid "Used and total space" msgstr "Belegter Speicherplatz und Kapazität" @@ -93,7 +96,7 @@ msgid "Free and total space" msgstr "Freier Speicherplatz und Kapazität" msgid "Total and free space" -msgstr "Kapazität und Freier Speicherplatz" +msgstr "Kapazität und freier Speicherplatz" msgid "No text" msgstr "Kein Text" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot b/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot index aa51da8fa..43cb9158b 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot +++ b/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot @@ -143,6 +143,10 @@ msgstr "" msgid "Name and total space" msgstr "" +#. settings-schema.json->text-view->options +msgid "Name and free space" +msgstr "" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "" diff --git a/diskspace@schorschii/files/diskspace@schorschii/settings-schema.json b/diskspace@schorschii/files/diskspace@schorschii/settings-schema.json index 88f013033..1f54c38de 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/settings-schema.json +++ b/diskspace@schorschii/files/diskspace@schorschii/settings-schema.json @@ -75,6 +75,7 @@ "description": "Text", "options" : { "Name and total space" : "name-size", + "Name and free space" : "name-free", "Used and total space": "used-size", "Total and used space": "size-used", "Free and total space": "free-size", From 0587ed95c4e0061a9db929b2c104c0813faede06 Mon Sep 17 00:00:00 2001 From: Georg Sieber Date: Thu, 31 Jul 2025 12:30:28 -0400 Subject: [PATCH 2/2] update translation files --- .../files/diskspace@schorschii/po/ca.po | 21 +- .../files/diskspace@schorschii/po/da.po | 20 +- .../files/diskspace@schorschii/po/de.po | 172 ++++++++++----- .../po/diskspace@schorschii.pot | 24 +- .../files/diskspace@schorschii/po/es.po | 159 +++++++++----- .../files/diskspace@schorschii/po/fi.po | 25 ++- .../files/diskspace@schorschii/po/fr.po | 161 +++++++++----- .../files/diskspace@schorschii/po/hu.po | 28 ++- .../files/diskspace@schorschii/po/it.po | 20 +- .../files/diskspace@schorschii/po/nl.po | 24 +- .../files/diskspace@schorschii/po/pt_BR.po | 179 ++++++++++----- .../files/diskspace@schorschii/po/ro.po | 205 ++++++++++++------ .../files/diskspace@schorschii/po/ru.po | 20 +- .../files/diskspace@schorschii/po/sv.po | 150 +++++++++++-- .../files/diskspace@schorschii/po/tr.po | 174 +++++++++++---- 15 files changed, 969 insertions(+), 413 deletions(-) diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/ca.po b/diskspace@schorschii/files/diskspace@schorschii/po/ca.po index 2d92eea66..7c6afd3c8 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/ca.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/ca.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-05-15 11:44+0200\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2024-05-15 12:14+0200\n" "Last-Translator: Daniel \n" "Language-Team: \n" @@ -22,26 +22,26 @@ msgstr "" "X-Poedit-SearchPath-1: settings-schema.json\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "RAM" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Memòria d'intercanvi" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Sistema de fitxers" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "No s'ha trobat" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Espai de disc" @@ -120,8 +120,8 @@ msgid "" "Reserved blocks are useable for the root user only and that's why displayed " "as used space by default." msgstr "" -"Els blocs reservats son exclusius del superusuari (root), per això es " -"mostra com espai utilitzat per omissió." +"Els blocs reservats son exclusius del superusuari (root), per això es mostra " +"com espai utilitzat per omissió." #. settings-schema.json->head2->description msgid "Visual" @@ -151,6 +151,11 @@ msgstr "Text" msgid "Name and total space" msgstr "Nom i mida total" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Espai lliure i total" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Espai utilitzat i total" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/da.po b/diskspace@schorschii/files/diskspace@schorschii/po/da.po index 1a8d94af3..2af23c46d 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/da.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/da.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-06 01:23+0300\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2023-12-08 07:38+0100\n" "Last-Translator: Alan Mortensen \n" "Language-Team: Dansk-gruppen \n" @@ -17,26 +18,26 @@ msgstr "" "X-Poedit-SearchPath-1: settings-schema.json\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "RAM" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Swap" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Filsystem" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Ikke fundet" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Diskplads" @@ -144,6 +145,11 @@ msgstr "Tekst" msgid "Name and total space" msgstr "Navn og total plads" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Total og ledig plads" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Brugt og total plads" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/de.po b/diskspace@schorschii/files/diskspace@schorschii/po/de.po index 62a488714..86bf07d4f 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/de.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/de.po @@ -1,174 +1,232 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-02-01 08:21+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2018-02-15 18:58+0100\n" +"Last-Translator: \n" "Language-Team: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Last-Translator: \n" -"Language: de\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "Arbeitsspeicher" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Swap-Speicher" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Dateisystem" + +#. desklet.js:306 +msgid "Not Found" +msgstr "Nicht gef." + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Speicherplatzanzeige" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Zeigt die Auslastung eines Dateisystems oder des Arbeitsspeichers an." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Einstellungen für diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "Allgemein" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Ein Dateisystem oder den Arbeitsspeicher überwachen" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" "Wählen Sie, ob das Desklet die Auslastung eines Dateisystems oder des " "Arbeitsspeichers anzeigen soll." -msgid "Filesystem" -msgstr "Dateisystem" - -msgid "RAM" -msgstr "Arbeitsspeicher" - -msgid "Swap" -msgstr "Swap-Speicher" - -msgid "Not Found" -msgstr "Nicht gef." - +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Dateisystem, welches angezeigt werden soll" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Wählen Sie das Dateisystem, welches Sie anzeigen möchten." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Aktion bei Mausklick" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Wählen Sie, was passieren soll, wenn auf das Desklet geklickt wird." + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Dateimanager öffnen" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Partitions-Editor öffnen" + +#. settings-schema.json->onclick-action->options +msgid "Open System Monitor" +msgstr "Systemüberwachung öffnen" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Nichts" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Präfixe" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Dezimal" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "Binär" + +#. settings-schema.json->reserved-blocks-as-used-space->description msgid "Show reserved blocks as used space" msgstr "Zeige reservierte Blöcke als verwendeten Speicher" -msgid "Reserved blocks are useable for the root user only and that's why displayed as used space by default." -msgstr "Reservierte Blöcke sind nur vom root-Benutzer verwendbar und daher standardmäßig ausgeblendet." +#. settings-schema.json->reserved-blocks-as-used-space->tooltip +msgid "" +"Reserved blocks are useable for the root user only and that's why displayed " +"as used space by default." +msgstr "" +"Reservierte Blöcke sind nur vom root-Benutzer verwendbar und daher " +"standardmäßig ausgeblendet." +#. settings-schema.json->head2->description msgid "Visual" msgstr "Visuelle Einstellungen" +#. settings-schema.json->design->description msgid "Design" msgstr "Design" -msgid "Classic (Thick)" -msgstr "Klassisch (Dick)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Dünn" +#. settings-schema.json->design->options msgid "Compact" msgstr "Kompakt" -msgid "Draw free/unused space (gray)" -msgstr "Zeichne freien/unbenutzten Speicherplatz (grau)" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Klassisch (Dick)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Text" +#. settings-schema.json->text-view->options msgid "Name and total space" msgstr "Bezeichnung und Kapazität" +#. settings-schema.json->text-view->options msgid "Name and free space" msgstr "Bezeichnung und freier Speicherplatz" +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Belegter Speicherplatz und Kapazität" +#. settings-schema.json->text-view->options msgid "Total and used space" msgstr "Kapazität und Belegter Speicherplatz" +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Freier Speicherplatz und Kapazität" +#. settings-schema.json->text-view->options msgid "Total and free space" msgstr "Kapazität und freier Speicherplatz" +#. settings-schema.json->text-view->options msgid "No text" msgstr "Kein Text" -msgid "Size Prefix" -msgstr "Präfixe" - -msgid "Decimal" -msgstr "Dezimal" - -msgid "Binary" -msgstr "Binär" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Dekorationen verstecken" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Zeichne freien/unbenutzten Speicherplatz (grau)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Kreisfarbe selbst festlegen" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Kreisfarbe" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Textfarbe" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Vergrößern oder verkleinern Sie dieses Desklet, indem Sie diesen " -"Skalierungsfaktor verändern." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "Skalierungsfaktor" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Deskletgröße" -msgid "scale factor" -msgstr "Skalierungsfaktor" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Vergrößern oder verkleinern Sie dieses Desklet, indem Sie diesen " +"Skalierungsfaktor verändern." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Eigenes Desklet-Label (nur sichtbar, wenn Dekorationen aktiviert sind)" +msgstr "Eigenes Desklet-Label (nur sichtbar, wenn Dekorationen aktiviert sind)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Ein eigenes Desklet-Label verwenden" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" "Wenn Sie diese Option aktivieren, können Sie ein eigenes Desklet-Label im " "Feld darunter festlegen." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Eigenes Desklet-Label" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." msgstr "" "Legen Sie hier ihr eigenes Label fest. Dieses Feld ist nicht verfügbar, " "solange die Option darüber nicht aktiviert wurde." - -msgid "Action on mouse click" -msgstr "Aktion bei Mausklick" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Wählen Sie, was passieren soll, wenn auf das Desklet geklickt wird." - -msgid "Open File Manager" -msgstr "Dateimanager öffnen" - -msgid "Open Partition Manager" -msgstr "Partitions-Editor öffnen" - -msgid "Open System Monitor" -msgstr "Systemüberwachung öffnen" - -msgid "Nothing" -msgstr "Nichts" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot b/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot index 43cb9158b..7e0b0480b 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot +++ b/diskspace@schorschii/files/diskspace@schorschii/po/diskspace@schorschii.pot @@ -1,43 +1,43 @@ -# SOME DESCRIPTIVE TITLE. +# DISK SPACE # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# schorschii, 2018 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: diskspace@schorschii 1.17\n" +"Project-Id-Version: diskspace@schorschii 1.18\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-05-15 12:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/es.po b/diskspace@schorschii/files/diskspace@schorschii/po/es.po index 768004705..03e010716 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/es.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/es.po @@ -1,7 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2023-11-20 20:48-0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -15,46 +17,100 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "RAM" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Swap" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Sistema de archivos" + +#. desklet.js:306 +msgid "Not Found" +msgstr "No encontrado" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Espacio del disco" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Muestra el uso de un sistema de archivos o RAM." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Configuración de diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "General" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Moninotear el sistema de archivos o el uso de RAM" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" "Elegir, si este desklet debe mostrar el sistema de archivos o el uso de RAM." -msgid "Filesystem" -msgstr "Sistema de archivos" - -msgid "RAM" -msgstr "RAM" - -msgid "Swap" -msgstr "Swap" - -msgid "Not Found" -msgstr "No encontrado" - +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Sistema de archivos a monitorear" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Seleccione el sistema de archivos que desea monitorear." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Acción al hacer clic con el mouse" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Elija qué hacer cuando se hace clic en el desklet." + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Abrir el administrador de archivos" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Abrir el gestor de particiones" + +#. settings-schema.json->onclick-action->options +msgid "Open System Monitor" +msgstr "Abrir el monitor del sistema" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Nada" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Tamaño del Prefijo" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Decimal" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "Binario" + +#. settings-schema.json->reserved-blocks-as-used-space->description msgid "Show reserved blocks as used space" msgstr "Mostrar bloques reservados como espacio utilizado" +#. settings-schema.json->reserved-blocks-as-used-space->tooltip msgid "" "Reserved blocks are useable for the root user only and that's why displayed " "as used space by default." @@ -62,113 +118,116 @@ msgstr "" "Los bloques reservados sólo pueden ser utilizados por el usuario root y por " "eso se muestran como espacio utilizado por defecto." +#. settings-schema.json->head2->description msgid "Visual" msgstr "Configuración visual" +#. settings-schema.json->design->description msgid "Design" msgstr "Diseño" -msgid "Classic (Thick)" -msgstr "Clásico (grueso)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Delgado" +#. settings-schema.json->design->options msgid "Compact" msgstr "Compacto" -msgid "Draw free/unused space (gray)" -msgstr "Dibujar el espacio libre/no utilizado (gris)" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Clásico (grueso)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Texto" +#. settings-schema.json->text-view->options msgid "Name and total space" msgstr "Nombre y espacio total" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Total y espacio libre" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Usado y espacio total" +#. settings-schema.json->text-view->options msgid "Total and used space" msgstr "Total y espacio usado" +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Libre y espacio total" +#. settings-schema.json->text-view->options msgid "Total and free space" msgstr "Total y espacio libre" +#. settings-schema.json->text-view->options msgid "No text" msgstr "Sin texto" -msgid "Size Prefix" -msgstr "Tamaño del Prefijo" - -msgid "Decimal" -msgstr "Decimal" - -msgid "Binary" -msgstr "Binario" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Ocultar decoraciones" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Dibujar el espacio libre/no utilizado (gris)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Usa un color de círculo personalizado" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Color del círculo" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Color del texto" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Aumente o disminuya el tamaño de este desklet usando este factor de escala." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "factor de escala" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Tamaño del desklet" -msgid "scale factor" -msgstr "factor de escala" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Aumente o disminuya el tamaño de este desklet usando este factor de escala." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "" "Etiqueta personalizada del desklet (solo visible si las decoraciones están " "habilitadas)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Utilice una etiqueta personalizada del desklet" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" "Marcar esta casilla permite establecer una etiqueta personalizada en el " "campo a continuación." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Etiqueta personalizada del desklet" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." msgstr "" "Configure su etiqueta personalizada aquí. Este campo no está disponible a " "menos que la casilla anterior esté habilitada." - -msgid "Action on mouse click" -msgstr "Acción al hacer clic con el mouse" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Elija qué hacer cuando se hace clic en el desklet." - -msgid "Open File Manager" -msgstr "Abrir el administrador de archivos" - -msgid "Open Partition Manager" -msgstr "Abrir el gestor de particiones" - -msgid "Open System Monitor" -msgstr "Abrir el monitor del sistema" - -msgid "Nothing" -msgstr "Nada" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/fi.po b/diskspace@schorschii/files/diskspace@schorschii/po/fi.po index c9114dd75..bdf3df6a4 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/fi.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/fi.po @@ -1,44 +1,44 @@ -# SOME DESCRIPTIVE TITLE. +# DISK SPACE # This file is put in the public domain. -# FIRST AUTHOR , YEAR. +# schorschii, 2018 # msgid "" msgstr "" "Project-Id-Version: diskspace@schorschii 1.17\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-05-15 12:23+0200\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2024-11-07 23:06+0200\n" +"Last-Translator: Kimmo Kujansuu \n" "Language-Team: \n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.3\n" -"Last-Translator: Kimmo Kujansuu \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: fi\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "Muisti" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Swap" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Kiintolevy" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Ei löytynyt" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Disk Space" @@ -146,6 +146,11 @@ msgstr "Teksti" msgid "Name and total space" msgstr "Nimi ja kokonaistila" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Kokonaistila ja vapaa" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Käytetty ja kokonaistila" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/fr.po b/diskspace@schorschii/files/diskspace@schorschii/po/fr.po index 903883a6b..f9645dfd3 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/fr.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/fr.po @@ -1,7 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2023-10-30 12:02+0100\n" "Last-Translator: Claudiux \n" "Language-Team: \n" @@ -15,47 +17,101 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "Mémoire vive" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Swap" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Système de fichiers" + +#. desklet.js:306 +msgid "Not Found" +msgstr "Non trouvé" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Espace disque" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Affiche l'utilisation d'un système de fichiers ou de la mémoire vive." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Paramètres pour diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "Général" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Surveiller un système de fichiers ou l'utilisation de la mémoire vive" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" "Choisissez si ce desklet doit afficher l'utilisation du système de fichiers " "ou bien de la mémoire vive." -msgid "Filesystem" -msgstr "Système de fichiers" - -msgid "RAM" -msgstr "Mémoire vive" - -msgid "Swap" -msgstr "Swap" - -msgid "Not Found" -msgstr "Non trouvé" - +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Système de fichiers à surveiller" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Choisissez le système de fichiers que vous voulez surveiller." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Action associée au clic" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Choisissez ce qu'il faut faire lorsque l'on clique sur le desklet." + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Ouvrir le gestionnaire de fichiers" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Ouvrir le Gestionnaire de partitions" + +#. settings-schema.json->onclick-action->options +msgid "Open System Monitor" +msgstr "Ouvrir le moniteur système" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Rien" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Préfixe de taille" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Décimal" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "Binaire" + +#. settings-schema.json->reserved-blocks-as-used-space->description msgid "Show reserved blocks as used space" msgstr "Afficher les blocs réservés en tant qu'espace utilisé" +#. settings-schema.json->reserved-blocks-as-used-space->tooltip msgid "" "Reserved blocks are useable for the root user only and that's why displayed " "as used space by default." @@ -63,114 +119,117 @@ msgstr "" "Les blocs réservés ne sont utilisables que par l'utilisateur root et c'est " "pourquoi ils sont affichés par défaut en tant qu'espace utilisé." +#. settings-schema.json->head2->description msgid "Visual" msgstr "Visuel" +#. settings-schema.json->design->description msgid "Design" msgstr "Aspect" -msgid "Classic (Thick)" -msgstr "Classique (Épais)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Mince" +#. settings-schema.json->design->options msgid "Compact" msgstr "Compact" -msgid "Draw free/unused space (gray)" -msgstr "Dessiner l'espace libre/inutilisé (en gris)" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Classique (Épais)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Texte" +#. settings-schema.json->text-view->options msgid "Name and total space" msgstr "Nom et espace total" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Espace total et espace disponible" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Espace utilisé et espace total" +#. settings-schema.json->text-view->options msgid "Total and used space" msgstr "Espace total et espace utilisé" +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Espace disponible et espace total" +#. settings-schema.json->text-view->options msgid "Total and free space" msgstr "Espace total et espace disponible" +#. settings-schema.json->text-view->options msgid "No text" msgstr "Sans texte" -msgid "Size Prefix" -msgstr "Préfixe de taille" - -msgid "Decimal" -msgstr "Décimal" - -msgid "Binary" -msgstr "Binaire" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Masquer les décorations" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Dessiner l'espace libre/inutilisé (en gris)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Utiliser un cercle de couleur personnalisée" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Couleur du cercle" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Couleur du texte" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Augmentez ou réduisez la taille de ce desklet en utilisant ce facteur " -"d'échelle." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "facteur d'échelle" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Taille du desklet" -msgid "scale factor" -msgstr "facteur d'échelle" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Augmentez ou réduisez la taille de ce desklet en utilisant ce facteur " +"d'échelle." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "" "Étiquette personnalisée pour ce desklet (visible uniquement si les " "décorations sont activées)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Utiliser une étiquette personnalisée pour ce desklet" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" "En cochant cette case, vous pouvez définir une étiquette personnalisée dans " "le champ ci-dessous." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Étiquette personnalisée pour ce desklet" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." msgstr "" "Définissez ici votre étiquette personnalisée. Ce champ n'est disponible que " "si la case ci-dessus est cochée." - -msgid "Action on mouse click" -msgstr "Action associée au clic" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Choisissez ce qu'il faut faire lorsque l'on clique sur le desklet." - -msgid "Open File Manager" -msgstr "Ouvrir le gestionnaire de fichiers" - -msgid "Open Partition Manager" -msgstr "Ouvrir le Gestionnaire de partitions" - -msgid "Open System Monitor" -msgstr "Ouvrir le moniteur système" - -msgid "Nothing" -msgstr "Rien" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/hu.po b/diskspace@schorschii/files/diskspace@schorschii/po/hu.po index c6bd7a763..48243c1c6 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/hu.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/hu.po @@ -1,13 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DISK SPACE # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# schorschii, 2018 # msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-06 01:23+0300\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2023-12-13 09:45+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -19,26 +20,26 @@ msgstr "" "X-Generator: Poedit 3.0.1\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "RAM" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Cserehely" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Fájlrendszer" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Nem található" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Lemez terület" @@ -148,6 +149,11 @@ msgstr "Szöveg" msgid "Name and total space" msgstr "Név és összes terület" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Összes és szabad terület" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Használt és összes terület" @@ -205,8 +211,8 @@ msgstr "" #. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "" -"Egyéni asztalkalmazás címke (csak akkor látható, ha a dekoráció " -"engedélyezve van)" +"Egyéni asztalkalmazás címke (csak akkor látható, ha a dekoráció engedélyezve " +"van)" #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/it.po b/diskspace@schorschii/files/diskspace@schorschii/po/it.po index d236fbff9..078e64167 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/it.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/it.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-06 01:23+0300\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2023-12-12 18:38+0100\n" "Last-Translator: Dragone2 \n" "Language-Team: \n" @@ -17,26 +18,26 @@ msgstr "" "X-Poedit-SearchPath-1: settings-schema.json\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "RAM" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Swap" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Filesystem" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Non Trovato" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Spazio su Disco" @@ -147,6 +148,11 @@ msgstr "Testo" msgid "Name and total space" msgstr "Nome e dimensione totale" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Spazio totale e libero" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Spazio usato e totale" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/nl.po b/diskspace@schorschii/files/diskspace@schorschii/po/nl.po index 44a934dfa..0d7e26a89 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/nl.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/nl.po @@ -1,13 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# DISK SPACE # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# schorschii, 2018 # msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-06 01:23+0300\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2024-04-18 15:23+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -17,26 +18,26 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "RAM" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Swap" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Bestandssysteem" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Niet gevonden" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Schijfruimte" @@ -145,6 +146,11 @@ msgstr "Tekst" msgid "Name and total space" msgstr "Naam en totale ruimte" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Totaal en vrije ruimte" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Gebruikte en totale ruimte" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/pt_BR.po b/diskspace@schorschii/files/diskspace@schorschii/po/pt_BR.po index c0c3c3773..138515ee7 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/pt_BR.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/pt_BR.po @@ -1,166 +1,233 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2021-11-15 20:07-0300\n" +"Last-Translator: Marcelo Aof\n" "Language-Team: \n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Last-Translator: Marcelo Aof\n" -"Language: pt_BR\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "RAM" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Memória virtual (Swap)" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Disco de armazenamento" + +#. desklet.js:306 +msgid "Not Found" +msgstr "Não encontrado" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Espaço em disco" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Mostra o uso de um disco de armazenamento ou o uso da memória RAM." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Configurações de diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "Visão geral" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Monitorar o uso de um disco de armazenamento ou o uso da memória RAM" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" -"Escolha se este desklet deve mostrar o uso de um disco de armazenamento ou " -"o uso da RAM." - -msgid "Filesystem" -msgstr "Disco de armazenamento" - -msgid "RAM" -msgstr "RAM" - -msgid "Swap" -msgstr "Memória virtual (Swap)" - -msgid "Not Found" -msgstr "Não encontrado" +"Escolha se este desklet deve mostrar o uso de um disco de armazenamento ou o " +"uso da RAM." +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Pasta de arquivos a monitorar" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Selecione a pasta de arquivos que você deseja monitorar." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Ação ao clicar com o mouse no desklet" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Escolha o que fazer quando o desklet for clicado." + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Abrir o gerenciador de arquivos" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Abrir o gerenciador de partições" + +#. settings-schema.json->onclick-action->options +msgid "Open System Monitor" +msgstr "Abrir o monitor do sistema" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Nenhuma ação" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Unidade de medida de armazenamento" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Decimal" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "Binária" + +#. settings-schema.json->reserved-blocks-as-used-space->description +msgid "Show reserved blocks as used space" +msgstr "" + +#. settings-schema.json->reserved-blocks-as-used-space->tooltip +msgid "" +"Reserved blocks are useable for the root user only and that's why displayed " +"as used space by default." +msgstr "" + +#. settings-schema.json->head2->description msgid "Visual" msgstr "Visual" +#. settings-schema.json->design->description msgid "Design" msgstr "Aparência" -msgid "Classic (Thick)" -msgstr "Clássica (Grossa)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Fina" +#. settings-schema.json->design->options msgid "Compact" msgstr "Compacta" -msgid "Draw free/unused space (gray)" -msgstr "Exibir no círculo, em cor cinza, o espaço livre/não utilizado" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Clássica (Grossa)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Texto" +#. settings-schema.json->text-view->options msgid "Name and total space" msgstr "Nome da pasta e espaço total de armazenamento" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Espaço total e espaço livre de armazenamento" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Espaço usado e espaço total de armazenamento" +#. settings-schema.json->text-view->options msgid "Total and used space" msgstr "Espaço total e espaço usado de armazenamento" +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Espaço livre e espaço total de armazenamento" +#. settings-schema.json->text-view->options msgid "Total and free space" msgstr "Espaço total e espaço livre de armazenamento" +#. settings-schema.json->text-view->options msgid "No text" msgstr "Nenhum texto" -msgid "Size Prefix" -msgstr "Unidade de medida de armazenamento" - -msgid "Decimal" -msgstr "Decimal" - -msgid "Binary" -msgstr "Binária" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Esconder decorações do sistema" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Exibir no círculo, em cor cinza, o espaço livre/não utilizado" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Pintar o círculo com outra cor" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Cor do círculo" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Cor do texto" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Aumente ou diminua o tamanho desse desklet usando esta escala de proporção." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "escala de proporção" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Tamanho do desklet" -msgid "scale factor" -msgstr "escala de proporção" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Aumente ou diminua o tamanho desse desklet usando esta escala de proporção." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "" "Rótulo personalizado do desklet (visível apenas se as decorações não " "estiverem escondidas)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Usar um rótulo personalizado do desklet" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" "Ao marcar essa opção, você poderá definir um rótulo personalizado no campo " "\"\n" "\"abaixo." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Rótulo personalizado do desklet" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." msgstr "" -"Digite o seu rótulo personalizado aqui. Essa opção tem efeito quando a " -"caixa de seleção acima estiver ativada." - -msgid "Action on mouse click" -msgstr "Ação ao clicar com o mouse no desklet" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Escolha o que fazer quando o desklet for clicado." - -msgid "Open File Manager" -msgstr "Abrir o gerenciador de arquivos" - -msgid "Open Partition Manager" -msgstr "Abrir o gerenciador de partições" - -msgid "Open System Monitor" -msgstr "Abrir o monitor do sistema" - -msgid "Nothing" -msgstr "Nenhuma ação" +"Digite o seu rótulo personalizado aqui. Essa opção tem efeito quando a caixa " +"de seleção acima estiver ativada." diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/ro.po b/diskspace@schorschii/files/diskspace@schorschii/po/ro.po index 21cc0b97c..3f4487887 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/ro.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/ro.po @@ -1,154 +1,235 @@ msgid "" msgstr "" -"Content-Transfer-Encoding: 8bit\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Language: ro\n" -"Language-Team: none\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" +"PO-Revision-Date: 2018-01-12 18:07+0100\n" "Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" "MIME-Version: 1.0\n" -"PO-Revision-Date: 2018-01-12 18:07+0100\n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" -"Project-Id-Version: \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" "X-Generator: Poedit 1.8.7.1\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "RAM" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Schimbă" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Sistem de fișiere" + +#. desklet.js:306 +msgid "Not Found" +msgstr "Nu a fost găsit" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Spațiu pe disc" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." -msgstr "Afișează gradul de utilizare a unui sistem de fișiere sau a memoriei RAM." +msgstr "" +"Afișează gradul de utilizare a unui sistem de fișiere sau a memoriei RAM." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Setări pentru diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "General" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Monitorizează un sistem de fișiere sau utilizarea RAM" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." -msgstr "Alege dacă acest desklet trebuie să afișeze utilizarea sistemului de fișiere sau a memoriei RAM." - -msgid "Filesystem" -msgstr "Sistem de fișiere" - -msgid "RAM" -msgstr "RAM" - -msgid "Swap" -msgstr "Schimbă" - -msgid "Not Found" -msgstr "Nu a fost găsit" +msgstr "" +"Alege dacă acest desklet trebuie să afișeze utilizarea sistemului de fișiere " +"sau a memoriei RAM." +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Sistemul de fișiere de monitorizat" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Selectează sistemul de fișiere pe care dorești să îl monitorizezi." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Acțiune la clicul mouse-ului" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Alege ce să faci atunci când se face clic pe desklet." + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Deschide Managerul de fișiere" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Deschide Partition Manager" + +#. settings-schema.json->onclick-action->options +msgid "Open System Monitor" +msgstr "Deschide Monitorul de sistem" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Nimic" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Dimensiune Prefix" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Decimal" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "Binary" + +#. settings-schema.json->reserved-blocks-as-used-space->description +msgid "Show reserved blocks as used space" +msgstr "" + +#. settings-schema.json->reserved-blocks-as-used-space->tooltip +msgid "" +"Reserved blocks are useable for the root user only and that's why displayed " +"as used space by default." +msgstr "" + +#. settings-schema.json->head2->description msgid "Visual" msgstr "Vizual" +#. settings-schema.json->design->description msgid "Design" msgstr "Design" -msgid "Classic (Thick)" -msgstr "Clasic (gros)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Subțire" +#. settings-schema.json->design->options msgid "Compact" msgstr "Compact" -msgid "Draw free/unused space (gray)" -msgstr "Desenează spațiul liber/neutilizat (gri)" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Clasic (gros)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Text" +#. settings-schema.json->text-view->options msgid "Name and total space" msgstr "Nume și spațiu total" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Spațiu total și liber" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Spațiu utilizat și spațiu total" +#. settings-schema.json->text-view->options msgid "Total and used space" msgstr "Spațiu total și utilizat" +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Spațiu liber și total" +#. settings-schema.json->text-view->options msgid "Total and free space" msgstr "Spațiu total și liber" +#. settings-schema.json->text-view->options msgid "No text" msgstr "Fără text" -msgid "Size Prefix" -msgstr "Dimensiune Prefix" - -msgid "Decimal" -msgstr "Decimal" - -msgid "Binary" -msgstr "Binary" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Ascunde decorațiunile" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Desenează spațiul liber/neutilizat (gri)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Utilizează o culoare personalizată a cercului" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Culoarea cercului" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Culoarea textului" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "Mărește sau micșorează dimensiunea acestui desklet folosind acest factor de scalare." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "factor de scalare" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Dimensiune Desklet" -msgid "scale factor" -msgstr "factor de scalare" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Mărește sau micșorează dimensiunea acestui desklet folosind acest factor de " +"scalare." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "Etichetă personalizată pentru desklet (vizibilă numai dacă sunt activate decorațiile)" +msgstr "" +"Etichetă personalizată pentru desklet (vizibilă numai dacă sunt activate " +"decorațiile)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Folosește o etichetă personalizată pentru desklet" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." -msgstr "Dacă bifezi această casetă, poți seta o etichetă personalizată în câmpul de mai jos." +msgstr "" +"Dacă bifezi această casetă, poți seta o etichetă personalizată în câmpul de " +"mai jos." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Etichetă personalizată de birou" -msgid "Set your custom label here. This field is unavailable unless the checkbox above is enabled." -msgstr "Setează aici eticheta personalizată. Acest câmp nu este disponibil decât dacă caseta de selectare de mai sus este activată." - -msgid "Action on mouse click" -msgstr "Acțiune la clicul mouse-ului" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Alege ce să faci atunci când se face clic pe desklet." - -msgid "Open File Manager" -msgstr "Deschide Managerul de fișiere" - -msgid "Open Partition Manager" -msgstr "Deschide Partition Manager" - -msgid "Open System Monitor" -msgstr "Deschide Monitorul de sistem" - -msgid "Nothing" -msgstr "Nimic" +#. settings-schema.json->custom-label->tooltip +msgid "" +"Set your custom label here. This field is unavailable unless the checkbox " +"above is enabled." +msgstr "" +"Setează aici eticheta personalizată. Acest câmp nu este disponibil decât " +"dacă caseta de selectare de mai sus este activată." diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/ru.po b/diskspace@schorschii/files/diskspace@schorschii/po/ru.po index 7519b3924..1537aa04e 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/ru.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/ru.po @@ -2,8 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-06 01:23+0300\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: \n" "Last-Translator: blogdron\n" "Language-Team: \n" @@ -14,26 +15,26 @@ msgstr "" "X-Generator: Poedit 3.4.1\n" #. settings-schema.json->type->options -#: desklet.js:275 desklet.js:356 +#. desklet.js:275 desklet.js:361 msgid "RAM" msgstr "Оперативная память" #. settings-schema.json->type->options -#: desklet.js:277 desklet.js:358 +#. desklet.js:277 desklet.js:363 msgid "Swap" msgstr "Подкачка" #. settings-schema.json->type->options -#: desklet.js:279 +#. desklet.js:279 msgid "Filesystem" msgstr "Файловая система" -#: desklet.js:301 +#. desklet.js:306 msgid "Not Found" msgstr "Не найдено" #. metadata.json->name -#: desklet.js:360 +#. desklet.js:365 msgid "Disk Space" msgstr "Дисковое Пространство (Disk Space)" @@ -143,6 +144,11 @@ msgstr "Отображение текстовой информации" msgid "Name and total space" msgstr "Название и общий размер" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Общее и свободное пространство" + #. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Использованное и общее пространство" diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/sv.po b/diskspace@schorschii/files/diskspace@schorschii/po/sv.po index 834890850..a23ff47d5 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/sv.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/sv.po @@ -6,7 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: diskspace@schorschii\n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2020-01-03 08:19+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -20,99 +22,211 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "RAM" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Filsystem" + +#. desklet.js:306 +msgid "Not Found" +msgstr "" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Diskutrymme" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Visar användningen av ett filsystem eller RAM." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "Inställningar för diskspace@schorschii" +#. settings-schema.json->head1->description msgid "General" msgstr "Allmänt" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Övervaka filsystem- eller RAM-användning" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" "Välj om det här skrivbordsprogrammet skall visa filsystem- eller RAM-" "användning." -msgid "Filesystem" -msgstr "Filsystem" - -msgid "RAM" -msgstr "RAM" - +#. settings-schema.json->filesystem->description msgid "Filesystem to monitor" msgstr "Filsystem att övervaka" +#. settings-schema.json->filesystem->tooltip msgid "Select the file system, which you want to monitor." msgstr "Välj det filsystem du vill övervaka." +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "" + +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "" + +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "" + +#. settings-schema.json->onclick-action->options +#, fuzzy +msgid "Open System Monitor" +msgstr "Filsystem att övervaka" + +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "" + +#. settings-schema.json->reserved-blocks-as-used-space->description +msgid "Show reserved blocks as used space" +msgstr "" + +#. settings-schema.json->reserved-blocks-as-used-space->tooltip +msgid "" +"Reserved blocks are useable for the root user only and that's why displayed " +"as used space by default." +msgstr "" + +#. settings-schema.json->head2->description msgid "Visual" msgstr "Visuellt" +#. settings-schema.json->design->description msgid "Design" msgstr "Design" -msgid "Classic (Thick)" -msgstr "Klassisk (tjock)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "Tunn" -msgid "Draw free/unused space (gray)" -msgstr "Rita upp ledigt/oanvänt utrymme (grå)" +#. settings-schema.json->design->options +msgid "Compact" +msgstr "" + +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Klassisk (tjock)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Text" -msgid "Name and total size" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and total space" msgstr "Namn och total storlek" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "Namn och total storlek" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Använt och totalt utrymme" +#. settings-schema.json->text-view->options +msgid "Total and used space" +msgstr "" + +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Ledigt och totalt utrymme" +#. settings-schema.json->text-view->options +msgid "Total and free space" +msgstr "" + +#. settings-schema.json->text-view->options +msgid "No text" +msgstr "" + +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Dölj dekorationer" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Rita upp ledigt/oanvänt utrymme (grå)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Använd anpassad cirkelfärg" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Cirkelfärg" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Textfärg" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Öka eller minska storleken på detta skrivbordsprogram, med denna skalfaktor." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "skalfaktor" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Visningsstorlek" -msgid "scale factor" -msgstr "skalfaktor" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Öka eller minska storleken på detta skrivbordsprogram, med denna skalfaktor." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "Anpassad programetikett (synlig endast om dekorationer är aktiverade)." +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Använd anpassad programetikett" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "Aktivering låter dig ange en anpassad etikett i fältet nedan." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Anpassad programetikett" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." diff --git a/diskspace@schorschii/files/diskspace@schorschii/po/tr.po b/diskspace@schorschii/files/diskspace@schorschii/po/tr.po index e04769b8f..da7074163 100644 --- a/diskspace@schorschii/files/diskspace@schorschii/po/tr.po +++ b/diskspace@schorschii/files/diskspace@schorschii/po/tr.po @@ -5,7 +5,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-12 18:07+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2025-07-31 12:29-0400\n" "PO-Revision-Date: 2020-12-07 15:59+0300\n" "Last-Translator: Serkan ÖNDER \n" "Language-Team: Linux Mint Türkiye \n" @@ -19,141 +21,217 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" +#. settings-schema.json->type->options +#. desklet.js:275 desklet.js:361 +msgid "RAM" +msgstr "RAM" + +#. settings-schema.json->type->options +#. desklet.js:277 desklet.js:363 +msgid "Swap" +msgstr "Swap(takas)" + +#. settings-schema.json->type->options +#. desklet.js:279 +msgid "Filesystem" +msgstr "Dosya sistemi" + +#. desklet.js:306 +msgid "Not Found" +msgstr "Bulunamadı" + +#. metadata.json->name +#. desklet.js:365 msgid "Disk Space" msgstr "Disk Alanı" +#. metadata.json->description msgid "Displays the usage of a filesystem or RAM." msgstr "Dosya sistemi veya RAM kullanımını görüntüler." +#. settings-schema.json->head0->description msgid "Settings for diskspace@schorschii" msgstr "diskspace@schorschii Ayarları" +#. settings-schema.json->head1->description msgid "General" msgstr "Genel" +#. settings-schema.json->type->description msgid "Monitor a file system or RAM usage" msgstr "Dosya sistemini veya RAM kullanımını izleyin" +#. settings-schema.json->type->tooltip msgid "Choose, if this desklet should show file system or RAM usage." msgstr "" "Masaüstü uygulamacığının dosya sistemi ya da RAM kullanımı gösterimini " "buradan seçebilirsiniz." -msgid "Filesystem" -msgstr "Dosya sistemi" +#. settings-schema.json->filesystem->description +msgid "Filesystem to monitor" +msgstr "İzlenecek dosya sistemi" -msgid "RAM" -msgstr "RAM" +#. settings-schema.json->filesystem->tooltip +msgid "Select the file system, which you want to monitor." +msgstr "İzlemek istediğiniz dosya sistemini seçiniz." -msgid "Swap" -msgstr "Swap(takas)" +#. settings-schema.json->onclick-action->description +msgid "Action on mouse click" +msgstr "Fare tıklamasıyla yapılacak işlem" -msgid "Not Found" -msgstr "Bulunamadı" +#. settings-schema.json->onclick-action->tooltip +msgid "Choose what to do when the desklet was clicked." +msgstr "Uygulamaya tıklandığında ne yapılacağını seçin." -msgid "Filesystem to monitor" +#. settings-schema.json->onclick-action->options +msgid "Open File Manager" +msgstr "Dosya Yöneticisini Aç" + +#. settings-schema.json->onclick-action->options +msgid "Open Partition Manager" +msgstr "Bölüm Yöneticisini Aç" + +#. settings-schema.json->onclick-action->options +#, fuzzy +msgid "Open System Monitor" msgstr "İzlenecek dosya sistemi" -msgid "Select the file system, which you want to monitor." -msgstr "İzlemek istediğiniz dosya sistemini seçiniz." +#. settings-schema.json->onclick-action->options +msgid "Nothing" +msgstr "Hiçbiri" + +#. settings-schema.json->size-prefix->description +msgid "Size Prefix" +msgstr "Boyut Öneki" + +#. settings-schema.json->size-prefix->options +msgid "Decimal" +msgstr "Ondalık" + +#. settings-schema.json->size-prefix->options +msgid "Binary" +msgstr "İkili" + +#. settings-schema.json->reserved-blocks-as-used-space->description +msgid "Show reserved blocks as used space" +msgstr "" + +#. settings-schema.json->reserved-blocks-as-used-space->tooltip +msgid "" +"Reserved blocks are useable for the root user only and that's why displayed " +"as used space by default." +msgstr "" +#. settings-schema.json->head2->description msgid "Visual" msgstr "Görsel" +#. settings-schema.json->design->description msgid "Design" msgstr "Tasarım" -msgid "Classic (Thick)" -msgstr "Klasik (Kalın)" - +#. settings-schema.json->design->options msgid "Thin" msgstr "İnce" +#. settings-schema.json->design->options msgid "Compact" msgstr "Kompakt" -msgid "Draw free/unused space (gray)" -msgstr "Boş/kullanılmayan alanı göster (gri)" +#. settings-schema.json->design->options +msgid "Classic (Thick)" +msgstr "Klasik (Kalın)" +#. settings-schema.json->text-view->description msgid "Text" msgstr "Metin" -msgid "Name and total size" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and total space" msgstr "İsim ve toplam boyut" +#. settings-schema.json->text-view->options +#, fuzzy +msgid "Name and free space" +msgstr "İsim ve toplam boyut" + +#. settings-schema.json->text-view->options msgid "Used and total space" msgstr "Kullanılan ve toplam boyut" +#. settings-schema.json->text-view->options +msgid "Total and used space" +msgstr "" + +#. settings-schema.json->text-view->options msgid "Free and total space" msgstr "Boş alan ve toplam boyut" +#. settings-schema.json->text-view->options +msgid "Total and free space" +msgstr "" + +#. settings-schema.json->text-view->options msgid "No text" msgstr "Yazı yok" -msgid "Size Prefix" -msgstr "Boyut Öneki" - -msgid "Decimal" -msgstr "Ondalık" - -msgid "Binary" -msgstr "İkili" - +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Süslemeleri gizle" +#. settings-schema.json->draw-free-space->description +msgid "Draw free/unused space (gray)" +msgstr "Boş/kullanılmayan alanı göster (gri)" + +#. settings-schema.json->use-own-circle-color->description msgid "Use a custom circle color" msgstr "Özel bir daire rengi kullan" +#. settings-schema.json->circle-color->description msgid "Circle color" msgstr "Daire rengi" +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Metin rengi" -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Bu ölçü çarpanını kullanarak bu masaüstü uygulamacığının boyutunu artırın " -"veya azaltın." +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "ölçü çarpanı" +#. settings-schema.json->scale-size->description msgid "Desklet size" msgstr "Masaüstü uygulamacığının boyutu" -msgid "scale factor" -msgstr "ölçü çarpanı" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Bu ölçü çarpanını kullanarak bu masaüstü uygulamacığının boyutunu artırın " +"veya azaltın." +#. settings-schema.json->head3->description msgid "Custom desklet label (only visible if decorations are enabled)" msgstr "Masaüstü uygulamacığı özel etiketi (sadece süslemeler etkinse görünür)" +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Masaüstü uygulamacığı için özel bir etiketi kullan" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" "Bu kutuyu işaretlemek, aşağıda açılacak alandan özel bir etiket ayarlamanıza " "izin verir." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Özel masaüstü uygulamacığı etiketi" +#. settings-schema.json->custom-label->tooltip msgid "" "Set your custom label here. This field is unavailable unless the checkbox " "above is enabled." msgstr "" "Burada özel etiketinizi ayarlayabilirsiniz. Bu alan yukarıdaki onay kutusu " "etkin olmadıkça kullanılamaz." - -msgid "Action on mouse click" -msgstr "Fare tıklamasıyla yapılacak işlem" - -msgid "Choose what to do when the desklet was clicked." -msgstr "Uygulamaya tıklandığında ne yapılacağını seçin." - -msgid "Open File Manager" -msgstr "Dosya Yöneticisini Aç" - -msgid "Open Partition Manager" -msgstr "Bölüm Yöneticisini Aç" - -msgid "Nothing" -msgstr "Hiçbiri"