From 004221f5022bf1920ee887954b5051a4597742f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anax=C3=ADmeno=20Brito?= Date: Sat, 28 Sep 2024 15:49:51 -0100 Subject: [PATCH] notes@schorschii: Allow in-desklet note taking (#1293) --- .../files/notes@schorschii/desklet.js | 10 +- .../files/notes@schorschii/metadata.json | 2 +- .../files/notes@schorschii/po/ca.po | 66 ++-- .../files/notes@schorschii/po/da.po | 52 ++- .../files/notes@schorschii/po/de.po | 68 ++-- .../files/notes@schorschii/po/es.po | 58 +-- .../files/notes@schorschii/po/fr.po | 179 +++++++-- .../files/notes@schorschii/po/hu.po | 57 ++- .../files/notes@schorschii/po/it.po | 60 +-- .../files/notes@schorschii/po/nl.po | 57 ++- .../notes@schorschii/po/notes@schorschii.pot | 61 ++-- .../files/notes@schorschii/po/pt.po | 341 ++++++++++++++++++ .../files/notes@schorschii/po/pt_BR.po | 81 +++-- .../files/notes@schorschii/po/ro.po | 83 +++-- .../files/notes@schorschii/po/ru.po | 76 ++-- .../files/notes@schorschii/po/sv.po | 175 +++++++-- .../files/notes@schorschii/po/tr.po | 178 +++++++-- .../notes@schorschii/settings-schema.json | 122 +++++-- 18 files changed, 1314 insertions(+), 412 deletions(-) create mode 100644 notes@schorschii/files/notes@schorschii/po/pt.po diff --git a/notes@schorschii/files/notes@schorschii/desklet.js b/notes@schorschii/files/notes@schorschii/desklet.js index 8289d5d46..26ad6762e 100644 --- a/notes@schorschii/files/notes@schorschii/desklet.js +++ b/notes@schorschii/files/notes@schorschii/desklet.js @@ -78,6 +78,8 @@ MyDesklet.prototype = { this.settings.bindProperty(Settings.BindingDirection.IN, "bg-color", "customBgColor", this.on_setting_changed); this.settings.bindProperty(Settings.BindingDirection.IN, "file", "file", this.on_setting_changed); this.settings.bindProperty(Settings.BindingDirection.IN, "edit-cmd", "editCmd", this.on_setting_changed); + this.settings.bindProperty(Settings.BindingDirection.IN, "note-taking-method", "noteTakingMethod", this.on_setting_changed); + this.settings.bindProperty(Settings.BindingDirection.IN, "note-text", "noteText", this.on_setting_changed); // initialize desklet gui this.setupUI(); @@ -154,6 +156,12 @@ MyDesklet.prototype = { }, loadText: function(reloadGraphics = false) { + if (this.noteTakingMethod == "desklet") { + this.notecontent = this.noteText; + this.refreshDesklet(reloadGraphics); + return; + } + // get notes text file path this.finalPath = decodeURIComponent(this.file.replace("file://", "")); if(this.finalPath == "") this.finalPath = "note.txt"; // in home dir @@ -278,7 +286,7 @@ MyDesklet.prototype = { }, on_desklet_clicked: function() { - if(this.editCmd != "") { + if(this.noteTakingMethod == "file" && this.editCmd != "") { Util.spawnCommandLine(this.editCmd.replace("%f", '"'+this.finalPath+'"')); } }, diff --git a/notes@schorschii/files/notes@schorschii/metadata.json b/notes@schorschii/files/notes@schorschii/metadata.json index 4c4c612dc..71ec707a1 100644 --- a/notes@schorschii/files/notes@schorschii/metadata.json +++ b/notes@schorschii/files/notes@schorschii/metadata.json @@ -2,6 +2,6 @@ "max-instances": "10", "description": "A desklet to display notes including various themes.", "name": "Note", - "version": "2.3", + "version": "2.4", "uuid": "notes@schorschii" } diff --git a/notes@schorschii/files/notes@schorschii/po/ca.po b/notes@schorschii/files/notes@schorschii/po/ca.po index 741c33099..f211f8ac6 100644 --- a/notes@schorschii/files/notes@schorschii/po/ca.po +++ b/notes@schorschii/files/notes@schorschii/po/ca.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-08-04 19:52+0200\n" "Last-Translator: Daniel \n" "Language-Team: \n" @@ -16,11 +17,11 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Actualitza" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,7 +33,7 @@ msgstr "" "\n" "Feu clic aquí per editar-ho." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Llibreta" @@ -42,17 +43,38 @@ msgstr "" "Una miniaplicació d'escriptori senzilla per mostrar notes amb diversos temes." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Nota" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Ajusts per notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "General" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visual" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Color del text" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Alçada de la miniaplicació d'escriptori" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Camí al fitxer de text de la nota" @@ -69,9 +91,9 @@ msgstr "Ordre per editar aquesta nota (amb el clic del ratolí)" msgid "%f will replaced by the text file path." msgstr "%f se substituirà amb el camí al fitxer de text." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visual" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -299,12 +321,6 @@ msgstr "" "Augmenta o disminueix la mida de la nota\n" "amb aquest factor de canvi d'escala." -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Etiqueta de miniaplicació d'escriptori personalitzada (només és visible si " -"les decoracions estan habilitades)" - #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Utilitza una etiqueta de miniaplicació d'escriptori personalitzada" @@ -327,15 +343,3 @@ msgstr "" "Establiu aquí la vostra etiqueta personalitzada. Aquest camp no està " "disponible\n" "a menys que la casella de selecció de dalt estigui habilitada." - -#~ msgid "Note size" -#~ msgstr "Mida de la nota" - -#~ msgid "White" -#~ msgstr "Blanc" - -#~ msgid "Desklet width" -#~ msgstr "Amplada de la miniaplicació d'escriptori" - -#~ msgid "Desklet height" -#~ msgstr "Alçada de la miniaplicació d'escriptori" diff --git a/notes@schorschii/files/notes@schorschii/po/da.po b/notes@schorschii/files/notes@schorschii/po/da.po index 6e6c0b112..02825ed1f 100644 --- a/notes@schorschii/files/notes@schorschii/po/da.po +++ b/notes@schorschii/files/notes@schorschii/po/da.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-12-08 07:45+0100\n" "Last-Translator: Alan Mortensen \n" "Language-Team: Dansk-gruppen \n" @@ -16,11 +17,11 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Opdatér" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,7 +33,7 @@ msgstr "" "\n" "Klik her for at redigere." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Notesblok" @@ -42,17 +43,38 @@ msgstr "" "Et enkelt skrivebordsprogram til visning af noter med forskellige temaer." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Note" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Indstillinger" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Generel" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visuel" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Tekstfarve" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Skrivebordsprogrammets størrelse" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Sti til notetekstfilen" @@ -69,9 +91,9 @@ msgstr "Kommando til redigering af denne note (ved museklik)" msgid "%f will replaced by the text file path." msgstr "%f vil blive erstattet af stien til tekstfilen." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visuel" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -299,10 +321,6 @@ msgstr "" "Forøg eller formindsk skrivebordsprogrammets størrelse med denne " "skaleringsfaktor." -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "Tilpasset etiket (kun synlig hvis boksen rundt om er aktiveret)" - #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Anvend tilpasset etiket" diff --git a/notes@schorschii/files/notes@schorschii/po/de.po b/notes@schorschii/files/notes@schorschii/po/de.po index 8ab24ea39..c26d9646f 100644 --- a/notes@schorschii/files/notes@schorschii/po/de.po +++ b/notes@schorschii/files/notes@schorschii/po/de.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-04-04 15:06+0200\n" "Last-Translator: Georg Sieber\n" "Language-Team: \n" @@ -16,11 +17,11 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Aktualisieren" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,7 +33,7 @@ msgstr "" "\n" "Klicken Sie hier zum Bearbeiten." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Notizblock" @@ -41,17 +42,38 @@ msgid "A desklet to display notes including various themes." msgstr "Ein Desklet mit verschiedenen Designs um Notizen anzuzeigen." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Notiz" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Einstellungen für notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Allgemein" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Aussehen" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Textfarbe" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Deskletgröße" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Pfad zur Notiz-Textdatei" @@ -70,9 +92,9 @@ msgstr "Befehlszeile zum Bearbeiten von Notizen (bei Mausklick)" msgid "%f will replaced by the text file path." msgstr "%f wird durch den Pfad zur Textdatei ersetzt." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Aussehen" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -270,12 +292,6 @@ msgstr "Schriftgröße" msgid "Increase or decrease the note font size." msgstr "Erhöhen oder verringern Sie die Schriftgröße der Notiz." -#. settings-schema.json->scale-size->tooltip -msgid "Increase or decrease the size of this desklet using this scale factor." -msgstr "" -"Erhöhen oder verringern Sie die Größe dieses Desklets indem Sie diesen " -"Skalierungsfaktor anpassen." - #. settings-schema.json->font-bold->description msgid "Bold" msgstr "Fett" @@ -300,9 +316,11 @@ msgstr "Skalierungsfaktor" msgid "Desklet size" msgstr "Deskletgröße" -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "Eigenes Deskletlabel (nur sichtbar wenn Dekorationen aktiviert sind)" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Erhöhen oder verringern Sie die Größe dieses Desklets indem Sie diesen " +"Skalierungsfaktor anpassen." #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" @@ -325,9 +343,3 @@ msgid "" msgstr "" "Legen Sie hier Ihr eigenes Deskletlabel fest. Dieses Feld ist deaktiviert, " "wenn Sie die Option darüber nicht aktiviert haben." - -#~ msgid "Yellow" -#~ msgstr "Gelb" - -#~ msgid "White" -#~ msgstr "Weiß" diff --git a/notes@schorschii/files/notes@schorschii/po/es.po b/notes@schorschii/files/notes@schorschii/po/es.po index ff30460bb..582366df1 100644 --- a/notes@schorschii/files/notes@schorschii/po/es.po +++ b/notes@schorschii/files/notes@schorschii/po/es.po @@ -1,13 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# NOTE # 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-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-11-20 20:52-0300\n" "Last-Translator: \n" "Language-Team: \n" @@ -18,11 +19,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.4\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Actualizar" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -34,7 +35,7 @@ msgstr "" "\n" "Haga clic aquí para editarlo." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Bloc de notas" @@ -43,17 +44,38 @@ msgid "A desklet to display notes including various themes." msgstr "Un desklet para mostrar notas que incluyen varios temas." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Nota" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Configuración de notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "General" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visual" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Color del texto" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Tamaño del desklet" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Ruta de acceso al archivo de texto de la nota" @@ -70,9 +92,9 @@ msgstr "Comando para editar esta nota (al hacer clic con el ratón)" msgid "%f will replaced by the text file path." msgstr "%f será reemplazado por la ruta del archivo de texto." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visual" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -299,12 +321,6 @@ 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" diff --git a/notes@schorschii/files/notes@schorschii/po/fr.po b/notes@schorschii/files/notes@schorschii/po/fr.po index 6488385a7..1e24c3c88 100644 --- a/notes@schorschii/files/notes@schorschii/po/fr.po +++ b/notes@schorschii/files/notes@schorschii/po/fr.po @@ -1,21 +1,27 @@ 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: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2020-01-24 23:40+0100\n" +"Last-Translator: Anonymous \n" "Language-Team: \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.2.1\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Last-Translator: Anonymous \n" -"Language: fr\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:109 +#. desklet.js:133 +msgid "Refresh" +msgstr "" + +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -27,215 +33,308 @@ msgstr "" "\n" "Cliquez ici pour modifier." -#: desklet.js:172 +#. desklet.js:272 msgid "Notepad" msgstr "Bloc Note" -msgid "Note" -msgstr "Note" - +#. metadata.json->description msgid "A desklet to display notes including various themes." msgstr "Un desklet pour afficher des notes aux styles graphiques variés." -msgid "Settings for notes@schorschii" -msgstr "Paramètres de notes@schorschii" +#. metadata.json->name +#. settings-schema.json->note-section->title +msgid "Note" +msgstr "Note" +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Général" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visuel" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Couleur du texte" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Taille de la desklet" + +#. settings-schema.json->file->description msgid "Path to note text file" msgstr "Chemin vers le fichier de note" +#. settings-schema.json->file->tooltip msgid "Select your text file, where to read from and save to." msgstr "Sélectionnez un fichier texte dans lequel sera lue et écrite la note." +#. settings-schema.json->edit-cmd->description msgid "Command for editing this note (on mouse click)" msgstr "Commande pour éditer cette note (avec un click de souris)" +#. settings-schema.json->edit-cmd->tooltip msgid "%f will replaced by the text file path." msgstr "%f sera remplacé par le chemin du fichier." -msgid "Visual" -msgstr "Visuel" - -msgid "Select the background graphic you would like to use." -msgstr "Sélectionnez le fond graphique que vous souhaitez utiliser." +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" +#. settings-schema.json->style->description msgid "Notes style" msgstr "Style des notes" -msgid "Yellow" -msgstr "Jaune" - -msgid "White" -msgstr "Blanc" - +#. settings-schema.json->style->options msgid "Blank Note - Black" msgstr "Note Vierge - Noir" +#. settings-schema.json->style->options msgid "Blank Note - Blue" msgstr "Note Vierge - Bleu" +#. settings-schema.json->style->options msgid "Blank Note - Green" msgstr "Note Vierge - Vert" +#. settings-schema.json->style->options msgid "Blank Note - Orange" msgstr "Note Vierge - Orange" +#. settings-schema.json->style->options msgid "Blank Note - Purple" msgstr "Note Vierge - Violet" +#. settings-schema.json->style->options msgid "Blank Note - White" msgstr "Nota Vierge - Blanc" +#. settings-schema.json->style->options msgid "Blank Note - Yellow" msgstr "Note Vierge - Jaune" +#. settings-schema.json->style->options msgid "White Note - Black Button" msgstr "Note Blanche - Punaise Noire" +#. settings-schema.json->style->options msgid "White Note - Blue Button" msgstr "Note Blanche - Punaise Bleue" +#. settings-schema.json->style->options msgid "White Note - Green Button" msgstr "Note Blanche - Bouton Vert" +#. settings-schema.json->style->options msgid "White Note - Red Button" msgstr "Note Blanche - Bouton Rouge" +#. settings-schema.json->style->options msgid "White Note - Yellow Button" msgstr "Note Blanche - Bouton Jaune" +#. settings-schema.json->style->options msgid "Yellow Note - Black Clip" msgstr "Note Jaune - Épingle Noire" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Clip" msgstr "Note Jaune - Épingle Bleue" +#. settings-schema.json->style->options msgid "Yellow Note - Green Clip" msgstr "Note Jaune - Épingle Verte" +#. settings-schema.json->style->options msgid "Yellow Note - Jingle Clip" msgstr "Note Jaune - Épingle Jingle" +#. settings-schema.json->style->options msgid "Yellow Note - Red Clip" msgstr "Note Jaune - Épingle Rouge" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Clip" msgstr "Note Jaune - Épingle Jaune" +#. settings-schema.json->style->options msgid "White Note - Black Magnet" msgstr "Note Blanche - Magnet Noir" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Magnet" msgstr "Note Blanche - Magnet Bleu" +#. settings-schema.json->style->options msgid "White Note - Lines and Red Magnet" msgstr "Note Blanche - Magnet Rouge et lignes" +#. settings-schema.json->style->options msgid "Black Note - White Magnet" msgstr "Note Noire - Magnet Blanc" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Magnet" msgstr "Note Jaune - Magnet Jaune" +#. settings-schema.json->style->options msgid "Blue Paint Strokes" msgstr "Traces de peinture Bleues" +#. settings-schema.json->style->options msgid "Green Paint Strokes" msgstr "Traces de peinture Vertes" +#. settings-schema.json->style->options msgid "Purple Paint Strokes" msgstr "Traces de peinture Violettes" +#. settings-schema.json->style->options msgid "Red Paint Strokes" msgstr "Traces de peinture Rouges" +#. settings-schema.json->style->options msgid "Yellow Paint Strokes" msgstr "Traces de peinture Jaunes" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral" msgstr "Note Blanche - Spirale Argentée" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral 2" msgstr "Note Blanche - Spirale Argentée 2" +#. settings-schema.json->style->options msgid "White Note - Black Spiral" msgstr "Note Blanche - Spirale Noire" +#. settings-schema.json->style->options msgid "White Note Large - Silver Spiral" msgstr "Note Blanche Grande - Spirale Argentée" +#. settings-schema.json->style->options msgid "Yellow Sticker" msgstr "Adhésif Jaune" +#. settings-schema.json->style->options msgid "Yellow Note (iOS Style)" msgstr "Note Jaune (Style iOS)" +#. settings-schema.json->style->options msgid "Birch Bark" msgstr "Écorce de Bouleau" +#. settings-schema.json->style->options msgid "Burned Paper" msgstr "Papier Brûlé" +#. settings-schema.json->style->options msgid "Clay Tablet" msgstr "Tablette d'argile" +#. settings-schema.json->style->options msgid "Coffee Stained" msgstr "Teinté de café" +#. settings-schema.json->style->options msgid "Clipboard" msgstr "Clipboard" +#. settings-schema.json->style->options +msgid "None" +msgstr "" + +#. settings-schema.json->style->tooltip +msgid "Select the background graphic you would like to use." +msgstr "Sélectionnez le fond graphique que vous souhaitez utiliser." + +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "" + +#. settings-schema.json->bg-color->tooltip +#, fuzzy +msgid "Set the background color of this desklet." +msgstr "Changer la couleur du texte de ce desklet." + +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Masquer les décorations" +#. settings-schema.json->font->description msgid "Font" msgstr "Police" -msgid "Bold" -msgstr "Gras" - -msgid "Italic" -msgstr "Italique" +#. settings-schema.json->size-font->units +msgid "pixels" +msgstr "pixels" +#. settings-schema.json->size-font->description msgid "Font size" msgstr "Taille de police" -msgid "Increase or decrease the size of this desklet using this scale factor." +#. settings-schema.json->size-font->tooltip +#, fuzzy +msgid "Increase or decrease the note font size." msgstr "Augmenter ou réduire la taille de cette desklet selon cette échelle." -msgid "Set the text color of this desklet." -msgstr "Changer la couleur du texte de ce desklet." +#. settings-schema.json->font-bold->description +msgid "Bold" +msgstr "Gras" +#. settings-schema.json->font-italic->description +msgid "Italic" +msgstr "Italique" + +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Couleur du texte" -msgid "Desklet size" -msgstr "Taille de la desklet" - -msgid "pixels" -msgstr "pixels" +#. settings-schema.json->text-color->tooltip +msgid "Set the text color of this desklet." +msgstr "Changer la couleur du texte de ce desklet." +#. settings-schema.json->scale-size->units msgid "scale factor" msgstr "facteur d'échelle" -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Étiquette de desklet personnalisée (visible seulement si décorations " -"activées)" +#. settings-schema.json->scale-size->description +msgid "Desklet size" +msgstr "Taille de la desklet" + +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "Augmenter ou réduire la taille de cette desklet selon cette échelle." +#. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Utiliser une étiquette de desklet personnalisée" +#. settings-schema.json->use-custom-label->tooltip msgid "Checking this box allows you to set a custom label in the field below." msgstr "" -"Cocher cette case vous permet de changer l'étiquette personnalisée " -"du champ ci-dessous." +"Cocher cette case vous permet de changer l'étiquette personnalisée du champ " +"ci-dessous." +#. settings-schema.json->custom-label->description msgid "Custom desklet label" msgstr "Etiquette de desklet personnalisée" +#. 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/notes@schorschii/files/notes@schorschii/po/hu.po b/notes@schorschii/files/notes@schorschii/po/hu.po index b2ceda0a3..5be545be8 100644 --- a/notes@schorschii/files/notes@schorschii/po/hu.po +++ b/notes@schorschii/files/notes@schorschii/po/hu.po @@ -1,13 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# NOTE # 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-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-05-06 06:59+0200\n" "Last-Translator: Kálmán „KAMI” Szalai \n" "Language-Team: \n" @@ -17,11 +18,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.0.1\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Frissítés" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -33,7 +34,7 @@ msgstr "" "\n" "Kattintson ide a szerkesztéshez." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Jegyzettömb" @@ -42,17 +43,38 @@ msgid "A desklet to display notes including various themes." msgstr "Jegyzetek megjelenítésére szolgáló asztalkalmazás különféle témákkal." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Jegyzet" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Notes@schorschii beállításai" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Általános" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Vizuális" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Szövegszín" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Asztalkalmazás mérete" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "A jegyzet szöveges fájljának útvonala" @@ -69,9 +91,9 @@ msgstr "A jegyzet szerkesztéséhez használt parancs (egérkattintásra)" msgid "%f will replaced by the text file path." msgstr "%f a szöveges fájl elérési útvonalára lesz cserélve." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Vizuális" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -298,11 +320,6 @@ msgid "Increase or decrease the size of this desklet using this scale factor." msgstr "" "Növelje vagy csökkentse az asztalkalmazás méretét a skála segítéségével." -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Egyéni asztali 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" msgstr "Egyéni asztalkalmazás címke használata" diff --git a/notes@schorschii/files/notes@schorschii/po/it.po b/notes@schorschii/files/notes@schorschii/po/it.po index f5fb7e469..8fe2ba13b 100644 --- a/notes@schorschii/files/notes@schorschii/po/it.po +++ b/notes@schorschii/files/notes@schorschii/po/it.po @@ -1,8 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2023-12-12 18:46+0100\n" "Last-Translator: Dragone2 \n" "Language-Team: \n" @@ -16,11 +17,11 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Aggiorna" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,7 +33,7 @@ msgstr "" "\n" "Clicca qui per modificare." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Blocco note" @@ -41,17 +42,38 @@ msgid "A desklet to display notes including various themes." msgstr "Un desklet per mostrare note includendo vari temi." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Nota" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Impostazioni di notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Generale" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visuale" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Colore del testo" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Dimensioni desklet" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Percorso del file di testo per le note" @@ -68,9 +90,9 @@ msgstr "Comando per modificare questa nota (al clic del mouse)" msgid "%f will replaced by the text file path." msgstr "%f verrà sostituito dal percorso del file di testo." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visuale" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -298,12 +320,6 @@ msgstr "" "Aumenta o riduci le dimensioni di questo desklet utilizzando questo fattore " "di scala." -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Etichetta del desklet personalizzata (visibile solo se le decorazioni sono " -"abilitate)" - #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Utilizzare un'etichetta desklet personalizzata" @@ -325,9 +341,3 @@ msgid "" msgstr "" "Imposta qui la tua etichetta personalizzata. Questo campo non è disponibile " "a meno che la casella sopra non sia abilitata." - -#~ msgid "Yellow" -#~ msgstr "Giallo" - -#~ msgid "White" -#~ msgstr "Bianco" diff --git a/notes@schorschii/files/notes@schorschii/po/nl.po b/notes@schorschii/files/notes@schorschii/po/nl.po index 67e4b7e4d..4aa274657 100644 --- a/notes@schorschii/files/notes@schorschii/po/nl.po +++ b/notes@schorschii/files/notes@schorschii/po/nl.po @@ -1,13 +1,14 @@ -# SOME DESCRIPTIVE TITLE. +# NOTE # 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-04-04 15:06+0200\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2024-04-19 13:05+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -16,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Vernieuwen" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,7 +33,7 @@ msgstr "" " \n" "Klik hier om te bewerken." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Kladblok" @@ -41,17 +42,38 @@ msgid "A desklet to display notes including various themes." msgstr "Een desklet om notities weer te geven inclusief verschillende thema's." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Notitie" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Instellingen voor notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Algemeen" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visueel" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Tekstkleur" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Grootte van de desklet" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Pad naar tekstbestand met notities" @@ -70,9 +92,9 @@ msgstr "Commando voor het bewerken van deze notitie (bij muisklik)" msgid "%f will replaced by the text file path." msgstr "%f wordt vervangen door het pad naar het tekstbestand." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visueel" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -300,11 +322,6 @@ msgstr "" "Vergroot of verklein de grootte van deze desklet met behulp van deze " "schaalfactor." -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" -"Aangepast deskletlabel (alleen zichtbaar als decoraties zijn ingeschakeld)" - #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "Gebruik een aangepast deskletlabel" diff --git a/notes@schorschii/files/notes@schorschii/po/notes@schorschii.pot b/notes@schorschii/files/notes@schorschii/po/notes@schorschii.pot index ab409de51..fc30e4419 100644 --- a/notes@schorschii/files/notes@schorschii/po/notes@schorschii.pot +++ b/notes@schorschii/files/notes@schorschii/po/notes@schorschii.pot @@ -1,27 +1,27 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# NOTE +# This file is put in the public domain. +# schorschii, 2018 # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Project-Id-Version: notes@schorschii 2.4\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-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" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -29,7 +29,7 @@ msgid "" "Click here to edit." msgstr "" -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "" @@ -38,15 +38,34 @@ msgid "A desklet to display notes including various themes." msgstr "" #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title +msgid "General" msgstr "" -#. settings-schema.json->head1->description -msgid "General" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +msgid "Text File" +msgstr "" + +#. settings-schema.json->note-taking-method->options +msgid "Desklet Settings" msgstr "" #. settings-schema.json->file->description @@ -65,8 +84,8 @@ msgstr "" msgid "%f will replaced by the text file path." msgstr "" -#. settings-schema.json->head2->description -msgid "Visual" +#. settings-schema.json->note-text->description +msgid "Write Your Note" msgstr "" #. settings-schema.json->style->description @@ -293,10 +312,6 @@ msgstr "" msgid "Increase or decrease the size of this desklet using this scale factor." msgstr "" -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "" - #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" msgstr "" diff --git a/notes@schorschii/files/notes@schorschii/po/pt.po b/notes@schorschii/files/notes@schorschii/po/pt.po new file mode 100644 index 000000000..7ba17c0a6 --- /dev/null +++ b/notes@schorschii/files/notes@schorschii/po/pt.po @@ -0,0 +1,341 @@ +# NOTE +# This file is put in the public domain. +# schorschii, 2018 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: notes@schorschii 2.4\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" +"PO-Revision-Date: 2024-09-28 15:39-0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.4.4\n" + +#. desklet.js:133 +msgid "Refresh" +msgstr "Atualizar" + +#. desklet.js:146 +msgid "" +"Can't read text file.\n" +"Select a file in settings.\n" +"\n" +"Click here to edit." +msgstr "" +"Ficheiro não pode ser lido\n" +"Selecione um ficheiro nas definições\n" +"\n" +"Clique aqui para editar." + +#. desklet.js:272 +msgid "Notepad" +msgstr "Bloco de notas" + +#. metadata.json->description +msgid "A desklet to display notes including various themes." +msgstr "Um desklet que mostra notas incluindo diversos temas." + +#. metadata.json->name +#. settings-schema.json->note-section->title +msgid "Note" +msgstr "Nota" + +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title +msgid "General" +msgstr "Geral" + +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visual" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "Etiqueta" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "Método de Anotação" + +#. settings-schema.json->note-taking-method->options +msgid "Text File" +msgstr "Ficheiro de Texto" + +#. settings-schema.json->note-taking-method->options +msgid "Desklet Settings" +msgstr "Definições do Desktlet" + +#. settings-schema.json->file->description +msgid "Path to note text file" +msgstr "Caminho para o ficheiro de texto da nota" + +#. settings-schema.json->file->tooltip +msgid "Select your text file, where to read from and save to." +msgstr "Selecione o seu ficheiro de texto, para ler a partir de e guardar em." + +#. settings-schema.json->edit-cmd->description +msgid "Command for editing this note (on mouse click)" +msgstr "Comando para editar a sua nota (ao clicar no desklet)" + +#. settings-schema.json->edit-cmd->tooltip +msgid "%f will replaced by the text file path." +msgstr "%f será trocado pelo caminho do ficheiro de texto." + +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "Escreva a Sua nota" + +#. settings-schema.json->style->description +msgid "Notes style" +msgstr "Estilo da Nota" + +#. settings-schema.json->style->options +msgid "Blank Note - Black" +msgstr "Nota em Branco - Preta" + +#. settings-schema.json->style->options +msgid "Blank Note - Blue" +msgstr "Nota em Branco - Azul" + +#. settings-schema.json->style->options +msgid "Blank Note - Green" +msgstr "Nota em Branco - Verde" + +#. settings-schema.json->style->options +msgid "Blank Note - Orange" +msgstr "Nota em Branco - Laranja" + +#. settings-schema.json->style->options +msgid "Blank Note - Purple" +msgstr "Nota em Branco - Roxa" + +#. settings-schema.json->style->options +msgid "Blank Note - White" +msgstr "Nota em Branco - Branca" + +#. settings-schema.json->style->options +msgid "Blank Note - Yellow" +msgstr "Nota em Branco - Amarela" + +#. settings-schema.json->style->options +msgid "White Note - Black Button" +msgstr "Nota Branca - Botão Preto" + +#. settings-schema.json->style->options +msgid "White Note - Blue Button" +msgstr "Nota Branca - Botão Azul" + +#. settings-schema.json->style->options +msgid "White Note - Green Button" +msgstr "Nota Branca - Botão Verde" + +#. settings-schema.json->style->options +msgid "White Note - Red Button" +msgstr "Nota Branca - Botão Vermelho" + +#. settings-schema.json->style->options +msgid "White Note - Yellow Button" +msgstr "Nota Branca - Botão Amarelo" + +#. settings-schema.json->style->options +msgid "Yellow Note - Black Clip" +msgstr "Nota Amarela - Clipe Preto" + +#. settings-schema.json->style->options +msgid "Yellow Note - Blue Clip" +msgstr "Nota Amarela - Clipe Azul" + +#. settings-schema.json->style->options +msgid "Yellow Note - Green Clip" +msgstr "Nota Amarela - Clipe Verde" + +#. settings-schema.json->style->options +msgid "Yellow Note - Jingle Clip" +msgstr "Nota Amarela - Clipe Jingle" + +#. settings-schema.json->style->options +msgid "Yellow Note - Red Clip" +msgstr "Nota Amarela - Clipe Vermelho" + +#. settings-schema.json->style->options +msgid "Yellow Note - Yellow Clip" +msgstr "Nota Amarela - Clipe Amarelo" + +#. settings-schema.json->style->options +msgid "White Note - Black Magnet" +msgstr "Nota Branca - Ímã Preto" + +#. settings-schema.json->style->options +msgid "Yellow Note - Blue Magnet" +msgstr "Nota Amarela - Ímã Azul" + +#. settings-schema.json->style->options +msgid "White Note - Lines and Red Magnet" +msgstr "Nota Branca - Ímã Preto e Linhas" + +#. settings-schema.json->style->options +msgid "Black Note - White Magnet" +msgstr "Nota Preta - Ímã Branco" + +#. settings-schema.json->style->options +msgid "Yellow Note - Yellow Magnet" +msgstr "Nota Amarela - Ímã Amarelo" + +#. settings-schema.json->style->options +msgid "Blue Paint Strokes" +msgstr "Traços de Tinta Azul" + +#. settings-schema.json->style->options +msgid "Green Paint Strokes" +msgstr "Traços de Tinta Verde" + +#. settings-schema.json->style->options +msgid "Purple Paint Strokes" +msgstr "Traços de Tinta Roxa" + +#. settings-schema.json->style->options +msgid "Red Paint Strokes" +msgstr "Traços de Tinta Vermelha" + +#. settings-schema.json->style->options +msgid "Yellow Paint Strokes" +msgstr "Traços de Tinta Amarela" + +#. settings-schema.json->style->options +msgid "White Note - Silver Spiral" +msgstr "Nota Branca - Espiral Prata" + +#. settings-schema.json->style->options +msgid "White Note - Silver Spiral 2" +msgstr "Nota Branca - Espiral Prata 2" + +#. settings-schema.json->style->options +msgid "White Note - Black Spiral" +msgstr "Nota Branca - Espiral Preta" + +#. settings-schema.json->style->options +msgid "White Note Large - Silver Spiral" +msgstr "Nota Branca Larga - Espiral Prata" + +#. settings-schema.json->style->options +msgid "Yellow Sticker" +msgstr "Adesivo Amarelo" + +#. settings-schema.json->style->options +msgid "Yellow Note (iOS Style)" +msgstr "Adesivo Amarelo (Estilo IOS)" + +#. settings-schema.json->style->options +msgid "Birch Bark" +msgstr "Casca de Bétula" + +#. settings-schema.json->style->options +msgid "Burned Paper" +msgstr "Papel Queimado" + +#. settings-schema.json->style->options +msgid "Clay Tablet" +msgstr "Tábua de Argila" + +#. settings-schema.json->style->options +msgid "Coffee Stained" +msgstr "Mancha de Café" + +#. settings-schema.json->style->options +msgid "Clipboard" +msgstr "Prancheta" + +#. settings-schema.json->style->options +msgid "None" +msgstr "Nenhum" + +#. settings-schema.json->style->tooltip +msgid "Select the background graphic you would like to use." +msgstr "Selecione o gráfico de fundo que gostaria de utilizar." + +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "Cor de fundo" + +#. settings-schema.json->bg-color->tooltip +msgid "Set the background color of this desklet." +msgstr "Defina a cor de fundo deste desklet." + +#. settings-schema.json->hide-decorations->description +msgid "Hide decorations" +msgstr "Esconder decorações" + +#. settings-schema.json->font->description +msgid "Font" +msgstr "Fonte" + +#. settings-schema.json->size-font->units +msgid "pixels" +msgstr "pixeis" + +#. settings-schema.json->size-font->description +msgid "Font size" +msgstr "Tamanho da fonte" + +#. settings-schema.json->size-font->tooltip +msgid "Increase or decrease the note font size." +msgstr "Aumente ou diminua o tamanho da fonte da nota." + +#. settings-schema.json->font-bold->description +msgid "Bold" +msgstr "Negrito" + +#. settings-schema.json->font-italic->description +msgid "Italic" +msgstr "Itálico" + +#. settings-schema.json->text-color->description +msgid "Text color" +msgstr "Cor do texto" + +#. settings-schema.json->text-color->tooltip +msgid "Set the text color of this desklet." +msgstr "Defina a cor do texto deste desklet." + +#. settings-schema.json->scale-size->units +msgid "scale factor" +msgstr "escala" + +#. settings-schema.json->scale-size->description +msgid "Desklet size" +msgstr "Tamanho do desklet" + +#. 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 deste desklet utilizando este fator de escala." + +#. settings-schema.json->use-custom-label->description +msgid "Use a custom desklet label" +msgstr "Use uma etiqueta personalizada" + +#. settings-schema.json->use-custom-label->tooltip +msgid "Checking this box allows you to set a custom label in the field below." +msgstr "" +"A marcação desta caixa permite definir um rótulo personalizado no campo " +"abaixo." + +#. settings-schema.json->custom-label->description +msgid "Custom desklet label" +msgstr "Etiqueta personalizada 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 "" +"Defina aqui a sua etiqueta personalizada. Este campo não estará disponível a " +"menos que a caixa de seleção acima esteja ativada." diff --git a/notes@schorschii/files/notes@schorschii/po/pt_BR.po b/notes@schorschii/files/notes@schorschii/po/pt_BR.po index f78450ab9..0db5a7000 100644 --- a/notes@schorschii/files/notes@schorschii/po/pt_BR.po +++ b/notes@schorschii/files/notes@schorschii/po/pt_BR.po @@ -1,4 +1,4 @@ -# SOME DESCRIPTIVE TITLE. +# NOTE # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Marcelo Aof, 2021. @@ -6,19 +6,24 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-03-14 14:37+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2021-09-28 22:12-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" -"Last-Translator: Marcelo Aof\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"Language: pt_BR\n" -#: desklet.js:137 +#. desklet.js:133 +msgid "Refresh" +msgstr "" + +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -30,7 +35,7 @@ msgstr "" "\n" "Clique aqui para editar." -#: desklet.js:229 +#. desklet.js:272 msgid "Notepad" msgstr "Bloco de notas" @@ -40,17 +45,38 @@ msgstr "" "Um desklet que exibe anotações em uma grande variedade visual de notas." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Anotação" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Configurações de notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Visão geral" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visual" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Cor do texto" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Tamanho do desklet" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Endereço do arquivo de texto (a anotação)" @@ -68,9 +94,9 @@ msgstr "Comando para editar essa anotação (com um clique do mouse)" msgid "%f will replaced by the text file path." msgstr "%f se refere ao endereço do arquivo de texto." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Visual" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -240,6 +266,15 @@ msgstr "Nenhum" msgid "Select the background graphic you would like to use." msgstr "Selecione a cor da anotação de sua preferência." +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "" + +#. settings-schema.json->bg-color->tooltip +#, fuzzy +msgid "Set the background color of this desklet." +msgstr "Defina a cor do texto desse desklet." + #. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Esconder decorações do sistema" @@ -260,11 +295,6 @@ msgstr "Tamanho da fonte" msgid "Increase or decrease the note font size." msgstr "Aumente ou diminua o tamanho da fonte da anotaçã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->font-bold->description msgid "Bold" msgstr "Negrito" @@ -289,11 +319,10 @@ msgstr "escala de proporção" msgid "Desklet size" msgstr "Tamanho do desklet" -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." msgstr "" -"Rótulo personalizado do desklet (visível apenas se as decorações não " -"estiverem escondidas)" +"Aumente ou diminua o tamanho desse desklet usando esta escala de proporção." #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" @@ -314,5 +343,5 @@ 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." +"Digite o seu rótulo personalizado aqui. Essa opção tem efeito quando a caixa " +"de seleção acima estiver ativada." diff --git a/notes@schorschii/files/notes@schorschii/po/ro.po b/notes@schorschii/files/notes@schorschii/po/ro.po index 93941b945..fb446863a 100644 --- a/notes@schorschii/files/notes@schorschii/po/ro.po +++ b/notes@schorschii/files/notes@schorschii/po/ro.po @@ -5,23 +5,25 @@ # 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: 2024-09-28 12:45-0400\n" +"PO-Revision-Date: 2023-04-04 15:06+0200\n" "Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ro\n" "MIME-Version: 1.0\n" -"PO-Revision-Date: 2023-04-04 15:06+0200\n" -"POT-Creation-Date: 2023-04-04 15:06+0200\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \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" -#: desklet.js:130 +#. desklet.js:133 msgid "Refresh" msgstr "Reîmprospătare" -#: desklet.js:143 +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -33,7 +35,7 @@ msgstr "" "\n" "Fă clic aici pentru a edita." -#: desklet.js:263 +#. desklet.js:272 msgid "Notepad" msgstr "Blocul de notițe" @@ -42,17 +44,38 @@ msgid "A desklet to display notes including various themes." msgstr "Un desklet pentru afișarea notelor, cu diverse teme." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Notă" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Setări pentru notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "General" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Vizual" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Culoarea textului" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Dimensiune Desklet" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Cale de acces la fișierul text al notei" @@ -69,9 +92,9 @@ msgstr "Comandă pentru editarea acestei note (la un clic de mouse)" msgid "%f will replaced by the text file path." msgstr "%f va fi înlocuit cu calea fișierului text." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Vizual" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -295,11 +318,9 @@ msgstr "Dimensiune Desklet" #. 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 scară." - -#. 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 "" +"Mărește sau micșorează dimensiunea acestui desklet folosind acest factor de " +"scară." #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" @@ -307,12 +328,18 @@ 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" #. 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ă." +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/notes@schorschii/files/notes@schorschii/po/ru.po b/notes@schorschii/files/notes@schorschii/po/ru.po index 41ef5c637..544b1aff9 100644 --- a/notes@schorschii/files/notes@schorschii/po/ru.po +++ b/notes@schorschii/files/notes@schorschii/po/ru.po @@ -2,8 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-03-14 14:37+0100\n" +"Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" +"issues\n" +"POT-Creation-Date: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2021-03-14 14:38+0100\n" "Last-Translator: Alex Savvin \n" "Language-Team: \n" @@ -17,7 +18,11 @@ msgstr "" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:137 +#. desklet.js:133 +msgid "Refresh" +msgstr "" + +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -29,7 +34,7 @@ msgstr "" "\n" "Щёлкните здесь для редактирования." -#: desklet.js:229 +#. desklet.js:272 msgid "Notepad" msgstr "Блокнот" @@ -38,17 +43,38 @@ msgid "A desklet to display notes including various themes." msgstr "Десклет показа заметок, имеющий множество тем." #. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Заметка" -#. settings-schema.json->head0->description -msgid "Settings for notes@schorschii" -msgstr "Настройки notes@schorschii" - -#. settings-schema.json->head1->description +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Общие" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Отображение" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Цвет текста" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Размер дисклета" + #. settings-schema.json->file->description msgid "Path to note text file" msgstr "Путь к текстовому файлу заметок" @@ -65,9 +91,9 @@ msgstr "Команда для редактирования этой заметк msgid "%f will replaced by the text file path." msgstr "%f заменится на путь к текстовому файлу." -#. settings-schema.json->head2->description -msgid "Visual" -msgstr "Отображение" +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" #. settings-schema.json->style->description msgid "Notes style" @@ -237,6 +263,15 @@ msgstr "–" msgid "Select the background graphic you would like to use." msgstr "Выберите желаемый фон." +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "" + +#. settings-schema.json->bg-color->tooltip +#, fuzzy +msgid "Set the background color of this desklet." +msgstr "Настройка цвета текста дисклета." + #. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Скрыть декорации" @@ -254,8 +289,8 @@ msgid "Font size" msgstr "Размер шрифта" #. settings-schema.json->size-font->tooltip -#. settings-schema.json->scale-size->tooltip -msgid "Increase or decrease the size of this desklet using this scale factor." +#, fuzzy +msgid "Increase or decrease the note font size." msgstr "" "Коэффициент масштабирования - увеличение или уменьшение размера дисклета." @@ -283,9 +318,10 @@ msgstr "масштаб" msgid "Desklet size" msgstr "Размер дисклета" -#. settings-schema.json->head3->description -msgid "Custom desklet label (only visible if decorations are enabled)" -msgstr "Настройка названия десклета (только при включенных декорациях)" +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." +msgstr "" +"Коэффициент масштабирования - увеличение или уменьшение размера дисклета." #. settings-schema.json->use-custom-label->description msgid "Use a custom desklet label" @@ -306,9 +342,3 @@ msgid "" msgstr "" "Задайте своё название десклета. Это поле недоступно, если не установлена " "галочка выше." - -#~ msgid "Yellow" -#~ msgstr "Жёлтый" - -#~ msgid "White" -#~ msgstr "Белый" diff --git a/notes@schorschii/files/notes@schorschii/po/sv.po b/notes@schorschii/files/notes@schorschii/po/sv.po index c8f57d82d..f3898484f 100644 --- a/notes@schorschii/files/notes@schorschii/po/sv.po +++ b/notes@schorschii/files/notes@schorschii/po/sv.po @@ -6,21 +6,27 @@ msgid "" msgstr "" "Project-Id-Version: notes@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: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2019-02-27 06:19+0100\n" +"Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Last-Translator: Åke Engelbrektson \n" -"Language: sv\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:109 +#. desklet.js:133 +msgid "Refresh" +msgstr "" + +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,215 +38,310 @@ msgstr "" "\n" "Klicka här för att redigera." -#: desklet.js:172 +#. desklet.js:272 msgid "Notepad" msgstr "Notepad" +#. metadata.json->description +msgid "A desklet to display notes including various themes." +msgstr "Ett skrivbordsprogram för att visa anteckningar, med varierande teman." + +#. metadata.json->name +#. settings-schema.json->note-section->title msgid "Note" msgstr "Note" -msgid "A desklet to display notes including various themes." +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title +msgid "General" +msgstr "Allmänt" + +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Visuellt" + +#. settings-schema.json->label-section->title +msgid "Label" msgstr "" -"Ett skrivbordsprogram för att visa anteckningar, med varierande teman." -msgid "Settings for notes@schorschii" -msgstr "Inställningar för notes@schorschii" +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" -msgid "General" -msgstr "Allmänt" +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Textfärg" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Programstorlek" +#. settings-schema.json->file->description msgid "Path to note text file" msgstr "Sökväg till anteckningsfil" +#. settings-schema.json->file->tooltip msgid "Select your text file, where to read from and save to." msgstr "Välj den textfil, som skall läsas från och sparas till." +#. settings-schema.json->edit-cmd->description msgid "Command for editing this note (on mouse click)" msgstr "Kommando för att redigera denna anteckning (vid musklick)" +#. settings-schema.json->edit-cmd->tooltip msgid "%f will replaced by the text file path." msgstr "%f ersätts av sökvägen till din textfil." -msgid "Visual" -msgstr "Visuellt" - -msgid "Select the background graphic you would like to use." -msgstr "Välj den bakgrundsgrafik du vill använda." +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" +#. settings-schema.json->style->description msgid "Notes style" msgstr "Anteckningsstil" -msgid "Yellow" -msgstr "Gul" - -msgid "White" -msgstr "Vit" - +#. settings-schema.json->style->options msgid "Blank Note - Black" msgstr "Slätt ark - Svart" +#. settings-schema.json->style->options msgid "Blank Note - Blue" msgstr "Slätt ark - Blå" +#. settings-schema.json->style->options msgid "Blank Note - Green" msgstr "Slätt ark - Grön" +#. settings-schema.json->style->options msgid "Blank Note - Orange" msgstr "Slätt ark - Orange" +#. settings-schema.json->style->options msgid "Blank Note - Purple" msgstr "Slätt ark - Lila" +#. settings-schema.json->style->options msgid "Blank Note - White" msgstr "Slätt ark - Vit" +#. settings-schema.json->style->options msgid "Blank Note - Yellow" msgstr "Slätt ark - Gul" +#. settings-schema.json->style->options msgid "White Note - Black Button" msgstr "Vitt ark - Svart nål" +#. settings-schema.json->style->options msgid "White Note - Blue Button" msgstr "Vitt ark - Blå nål" +#. settings-schema.json->style->options msgid "White Note - Green Button" msgstr "Vitt ark - Grön nål" +#. settings-schema.json->style->options msgid "White Note - Red Button" msgstr "Vitt ark - Röd nål" +#. settings-schema.json->style->options msgid "White Note - Yellow Button" msgstr "Vitt ark - Gul nål" +#. settings-schema.json->style->options msgid "Yellow Note - Black Clip" msgstr "Gult ark - Svart gem" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Clip" msgstr "Gult ark - Blått gem" +#. settings-schema.json->style->options msgid "Yellow Note - Green Clip" msgstr "Gult ark - Grönt gem" +#. settings-schema.json->style->options msgid "Yellow Note - Jingle Clip" msgstr "Gult ark - Randigt gem" +#. settings-schema.json->style->options msgid "Yellow Note - Red Clip" msgstr "Gult ark - Rött gem" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Clip" msgstr "Gult ark - Gult gem" +#. settings-schema.json->style->options msgid "White Note - Black Magnet" msgstr "Vitt ark - Svart magnet" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Magnet" msgstr "Gult ark - Blå magnet" +#. settings-schema.json->style->options msgid "White Note - Lines and Red Magnet" msgstr "Vitt ark - Linjer och röd magnet" +#. settings-schema.json->style->options msgid "Black Note - White Magnet" msgstr "Svart ark - Vit magnet" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Magnet" msgstr "Gult ark - Gul magnet" +#. settings-schema.json->style->options msgid "Blue Paint Strokes" msgstr "Blåa penseldrag" +#. settings-schema.json->style->options msgid "Green Paint Strokes" msgstr "Gröna penseldrag" +#. settings-schema.json->style->options msgid "Purple Paint Strokes" msgstr "Lila penseldrag" +#. settings-schema.json->style->options msgid "Red Paint Strokes" msgstr "Röda penseldrag" +#. settings-schema.json->style->options msgid "Yellow Paint Strokes" msgstr "Gula penseldrag" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral" msgstr "Vitt ark - Silverspiral" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral 2" msgstr "Vitt ark - Silverspiral 2" +#. settings-schema.json->style->options msgid "White Note - Black Spiral" msgstr "Vitt ark - Svart spiral" +#. settings-schema.json->style->options msgid "White Note Large - Silver Spiral" msgstr "Vitt ark stor - Silverspiral" +#. settings-schema.json->style->options msgid "Yellow Sticker" msgstr "Gul PostIt" +#. settings-schema.json->style->options msgid "Yellow Note (iOS Style)" msgstr "Gult ark (iOS-stil)" +#. settings-schema.json->style->options msgid "Birch Bark" msgstr "Björknäver" +#. settings-schema.json->style->options msgid "Burned Paper" msgstr "Bränt papper" +#. settings-schema.json->style->options msgid "Clay Tablet" msgstr "Lertavla" +#. settings-schema.json->style->options msgid "Coffee Stained" msgstr "Kaffefläckat" +#. settings-schema.json->style->options msgid "Clipboard" msgstr "Skrivplatta" +#. settings-schema.json->style->options +msgid "None" +msgstr "" + +#. settings-schema.json->style->tooltip +msgid "Select the background graphic you would like to use." +msgstr "Välj den bakgrundsgrafik du vill använda." + +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "" + +#. settings-schema.json->bg-color->tooltip +#, fuzzy +msgid "Set the background color of this desklet." +msgstr "Ange textfärg för anteckningar." + +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Dölj dekorationer" +#. settings-schema.json->font->description msgid "Font" msgstr "Teckensnitt" -msgid "Bold" -msgstr "Fet" - -msgid "Italic" -msgstr "Kursiv" +#. settings-schema.json->size-font->units +msgid "pixels" +msgstr "pixlar" +#. settings-schema.json->size-font->description msgid "Font size" msgstr "Teckenstorlek" -msgid "Increase or decrease the size of this desklet using this scale factor." +#. settings-schema.json->size-font->tooltip +#, fuzzy +msgid "Increase or decrease the note font size." msgstr "" "Öka eller minska storleken på det här skrivbordsprogrammet, med denna " "skalfaktor." -msgid "Set the text color of this desklet." -msgstr "Ange textfärg för anteckningar." +#. settings-schema.json->font-bold->description +msgid "Bold" +msgstr "Fet" +#. settings-schema.json->font-italic->description +msgid "Italic" +msgstr "Kursiv" + +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Textfärg" -msgid "Desklet size" -msgstr "Programstorlek" - -msgid "pixels" -msgstr "pixlar" +#. settings-schema.json->text-color->tooltip +msgid "Set the text color of this desklet." +msgstr "Ange textfärg för anteckningar." +#. settings-schema.json->scale-size->units msgid "scale factor" msgstr "skalfaktor" -msgid "Custom desklet label (only visible if decorations are enabled)" +#. settings-schema.json->scale-size->description +msgid "Desklet size" +msgstr "Programstorlek" + +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." msgstr "" -"Anpassad programetikett (synlig endast om dekorationer är aktiverade)." +"Öka eller minska storleken på det här skrivbordsprogrammet, med denna " +"skalfaktor." +#. 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/notes@schorschii/files/notes@schorschii/po/tr.po b/notes@schorschii/files/notes@schorschii/po/tr.po index 45c3a674b..897c924ff 100644 --- a/notes@schorschii/files/notes@schorschii/po/tr.po +++ b/notes@schorschii/files/notes@schorschii/po/tr.po @@ -6,21 +6,27 @@ 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: 2024-09-28 12:45-0400\n" "PO-Revision-Date: 2018-11-27 15:10+0300\n" +"Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Linux Mint Türkiye \n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" "X-Poedit-Basepath: ..\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Last-Translator: Gökhan GÖKKAYA \n" -"Language: tr\n" "X-Poedit-SearchPath-0: desklet.js\n" "X-Poedit-SearchPath-1: settings-schema.json\n" -#: desklet.js:109 +#. desklet.js:133 +msgid "Refresh" +msgstr "" + +#. desklet.js:146 msgid "" "Can't read text file.\n" "Select a file in settings.\n" @@ -32,216 +38,312 @@ msgstr "" "\n" "Düzenlemek için buraya tıklayınız." -#: desklet.js:172 +#. desklet.js:272 msgid "Notepad" msgstr "Not defteri" -msgid "Note" -msgstr "Not" - +#. metadata.json->description msgid "A desklet to display notes including various themes." msgstr "Notları çeşitli temalarla gösteren bir masaüstü uygulamacığı." -msgid "Settings for notes@schorschii" -msgstr "notes@schorschii için Ayarlar" +#. metadata.json->name +#. settings-schema.json->note-section->title +msgid "Note" +msgstr "Not" +#. settings-schema.json->general-page->title +#. settings-schema.json->general-section->title msgid "General" msgstr "Genel" +#. settings-schema.json->visual-page->title +#. settings-schema.json->visual-section->title +msgid "Visual" +msgstr "Görsel" + +#. settings-schema.json->label-section->title +msgid "Label" +msgstr "" + +#. settings-schema.json->note-taking-method->description +msgid "Note Taking Method" +msgstr "" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Text File" +msgstr "Metin rengi" + +#. settings-schema.json->note-taking-method->options +#, fuzzy +msgid "Desklet Settings" +msgstr "Masaüstü uygulamacığının boyutu" + +#. settings-schema.json->file->description msgid "Path to note text file" msgstr "Not metin dosyasının yolu" +#. settings-schema.json->file->tooltip msgid "Select your text file, where to read from and save to." msgstr "Okumak ve kaydetmek için metin dosyasını seçin." +#. settings-schema.json->edit-cmd->description msgid "Command for editing this note (on mouse click)" msgstr "Bu notu düzenlemek için komut (üstüne tıklandığında)" +#. settings-schema.json->edit-cmd->tooltip msgid "%f will replaced by the text file path." msgstr "%f metin dosyası yolu ile değiştirilecek." -msgid "Visual" -msgstr "Görsel" - -msgid "Select the background graphic you would like to use." -msgstr "Kullanmak istediğiniz arkaplan grafiğini seçin." +#. settings-schema.json->note-text->description +msgid "Write Your Note" +msgstr "" +#. settings-schema.json->style->description msgid "Notes style" msgstr "Notların tarzı" -msgid "Yellow" -msgstr "Sarı" - -msgid "White" -msgstr "Beyaz" - +#. settings-schema.json->style->options msgid "Blank Note - Black" msgstr "Boş Not - Siyah" +#. settings-schema.json->style->options msgid "Blank Note - Blue" msgstr "Boş Not - Mavi" +#. settings-schema.json->style->options msgid "Blank Note - Green" msgstr "Boş Not - Yeşil" +#. settings-schema.json->style->options msgid "Blank Note - Orange" msgstr "Boş Not - Turuncu" +#. settings-schema.json->style->options msgid "Blank Note - Purple" msgstr "Boş Not - Mor" +#. settings-schema.json->style->options msgid "Blank Note - White" msgstr "Boş Not - Beyaz" +#. settings-schema.json->style->options msgid "Blank Note - Yellow" msgstr "Boş Not - Sarı" +#. settings-schema.json->style->options msgid "White Note - Black Button" msgstr "Beyaz Not - Siyah Raptiye" +#. settings-schema.json->style->options msgid "White Note - Blue Button" msgstr "Beyaz Not - Mavi Raptiye" +#. settings-schema.json->style->options msgid "White Note - Green Button" msgstr "Beyaz Not - Yeşil Raptiye" +#. settings-schema.json->style->options msgid "White Note - Red Button" msgstr "Beyaz Not - Kırmızı Raptiye" +#. settings-schema.json->style->options msgid "White Note - Yellow Button" msgstr "Beyaz Not - Sarı Raptiye" +#. settings-schema.json->style->options msgid "Yellow Note - Black Clip" msgstr "Sarı Not - Siyah Ataç" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Clip" msgstr "Sarı Not - Mavi Ataç" +#. settings-schema.json->style->options msgid "Yellow Note - Green Clip" msgstr "Sarı Not - Yeşil Ataç" +#. settings-schema.json->style->options msgid "Yellow Note - Jingle Clip" msgstr "Sarı Not - Renkli Ataç" +#. settings-schema.json->style->options msgid "Yellow Note - Red Clip" msgstr "Sarı Not - Kırmızı Ataç" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Clip" msgstr "Sarı Not - Sarı Ataç" +#. settings-schema.json->style->options msgid "White Note - Black Magnet" msgstr "Beyaz Not- Siyah Mıknatıs" +#. settings-schema.json->style->options msgid "Yellow Note - Blue Magnet" msgstr "Sarı Not- Mavi Mıknatıs" +#. settings-schema.json->style->options msgid "White Note - Lines and Red Magnet" msgstr "Beyaz Not - Satırlar ve Kırmızı Mıknatıs" +#. settings-schema.json->style->options msgid "Black Note - White Magnet" msgstr "Siyah Not- Beyaz Mıknatıs" +#. settings-schema.json->style->options msgid "Yellow Note - Yellow Magnet" msgstr "Sarı Not- Sarı Mıknatıs" +#. settings-schema.json->style->options msgid "Blue Paint Strokes" msgstr "Mavi Fırça Darbesi" +#. settings-schema.json->style->options msgid "Green Paint Strokes" msgstr "Yeşil Fırça Darbesi" +#. settings-schema.json->style->options msgid "Purple Paint Strokes" msgstr "Turuncu Fırça Darbesi" +#. settings-schema.json->style->options msgid "Red Paint Strokes" msgstr "Kırmızı Fırça Darbesi" +#. settings-schema.json->style->options msgid "Yellow Paint Strokes" msgstr "Sarı Fırça Darbesi" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral" msgstr "Beyaz Not - Gümüş Sarmal" +#. settings-schema.json->style->options msgid "White Note - Silver Spiral 2" msgstr "Beyaz Not - Gümüş Sarmal 2" +#. settings-schema.json->style->options msgid "White Note - Black Spiral" msgstr "Beyaz Not - Siyah Sarmal" +#. settings-schema.json->style->options msgid "White Note Large - Silver Spiral" msgstr "Beyaz Not Büyük - Gümüş Sarmal" +#. settings-schema.json->style->options msgid "Yellow Sticker" msgstr "Sarı Yapışkan" +#. settings-schema.json->style->options msgid "Yellow Note (iOS Style)" msgstr "Sarı Not (iOS Tarzı)" +#. settings-schema.json->style->options msgid "Birch Bark" msgstr "Huş Kabuğu" +#. settings-schema.json->style->options msgid "Burned Paper" msgstr "Yanmış Kağıt" +#. settings-schema.json->style->options msgid "Clay Tablet" msgstr "Kil Levha" +#. settings-schema.json->style->options msgid "Coffee Stained" msgstr "Kahve Lekeli" +#. settings-schema.json->style->options msgid "Clipboard" msgstr "Pano" +#. settings-schema.json->style->options +msgid "None" +msgstr "" + +#. settings-schema.json->style->tooltip +msgid "Select the background graphic you would like to use." +msgstr "Kullanmak istediğiniz arkaplan grafiğini seçin." + +#. settings-schema.json->bg-color->description +msgid "Background color" +msgstr "" + +#. settings-schema.json->bg-color->tooltip +#, fuzzy +msgid "Set the background color of this desklet." +msgstr "Bu masaüstü uygulamacığının metin rengini ayarla" + +#. settings-schema.json->hide-decorations->description msgid "Hide decorations" msgstr "Süslemeleri gizle" +#. settings-schema.json->font->description msgid "Font" msgstr "Yazıtipi" -msgid "Bold" -msgstr "Kalın" - -msgid "Italic" -msgstr "Eğik" +#. settings-schema.json->size-font->units +msgid "pixels" +msgstr "piksel" +#. settings-schema.json->size-font->description msgid "Font size" msgstr "Yazıtipi boyutu" -msgid "Increase or decrease the size of this desklet using this scale factor." +#. settings-schema.json->size-font->tooltip +#, fuzzy +msgid "Increase or decrease the note font size." msgstr "" "Bu ölçü çarpanını kullanarak bu masaüstü uygulamacığının boyutunu artırın " "veya azaltın." -msgid "Set the text color of this desklet." -msgstr "Bu masaüstü uygulamacığının metin rengini ayarla" +#. settings-schema.json->font-bold->description +msgid "Bold" +msgstr "Kalın" +#. settings-schema.json->font-italic->description +msgid "Italic" +msgstr "Eğik" + +#. settings-schema.json->text-color->description msgid "Text color" msgstr "Metin rengi" -msgid "Desklet size" -msgstr "Masaüstü uygulamacığının boyutu" - -msgid "pixels" -msgstr "piksel" +#. settings-schema.json->text-color->tooltip +msgid "Set the text color of this desklet." +msgstr "Bu masaüstü uygulamacığının metin rengini ayarla" +#. settings-schema.json->scale-size->units msgid "scale factor" msgstr "ölçü çarpanı" -msgid "Custom desklet label (only visible if decorations are enabled)" +#. settings-schema.json->scale-size->description +msgid "Desklet size" +msgstr "Masaüstü uygulamacığının boyutu" + +#. settings-schema.json->scale-size->tooltip +msgid "Increase or decrease the size of this desklet using this scale factor." msgstr "" -"Masaüstü uygulamacığı özel etiketi (sadece süslemeler etkinse görünür)" +"Bu ölçü çarpanını kullanarak bu masaüstü uygulamacığının boyutunu artırın " +"veya azaltın." +#. 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." +"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." diff --git a/notes@schorschii/files/notes@schorschii/settings-schema.json b/notes@schorschii/files/notes@schorschii/settings-schema.json index 8383e2a97..58987cf72 100644 --- a/notes@schorschii/files/notes@schorschii/settings-schema.json +++ b/notes@schorschii/files/notes@schorschii/settings-schema.json @@ -1,37 +1,105 @@ { - "head0": { - "type": "header", - "description": "Settings for notes@schorschii" - }, - - "head1": { - "type": "header", - "description": "General" + "layout": { + "type": "layout", + "pages": [ + "general-page", + "visual-page" + ], + "general-page": { + "type": "page", + "title": "General", + "sections": [ + "general-section", + "note-section" + ] + }, + "visual-page": { + "type": "page", + "title": "Visual", + "sections": [ + "visual-section", + "label-section" + ] + }, + "general-section": { + "type": "section", + "title": "General", + "keys": [ + "style", + "note-taking-method" + ] + }, + "note-section": { + "type": "section", + "title": "Note", + "keys": [ + "file", + "edit-cmd", + "note-text" + ] + }, + "visual-section": { + "type": "section", + "title": "Visual", + "keys": [ + "style", + "scale-size", + "hide-decorations", + "bg-color", + "font", + "size-font", + "font-bold", + "font-italic", + "text-color" + ] + }, + "label-section": { + "type": "section", + "title": "Label", + "dependency": "!hide-decorations", + "keys": [ + "use-custom-label", + "custom-label" + ] + } + }, + "note-taking-method": { + "type": "combobox", + "default": "file", + "description": "Note Taking Method", + "options": { + "Text File": "file", + "Desklet Settings": "desklet" + } }, "file": { "type": "filechooser", + "dependency": "note-taking-method=file", "default": "", "description": "Path to note text file", "tooltip": "Select your text file, where to read from and save to.", - "allow-none" : true + "allow-none": true }, "edit-cmd": { "type": "entry", + "dependency": "note-taking-method=file", "default": "xed %f", "description": "Command for editing this note (on mouse click)", "tooltip": "%f will replaced by the text file path.", - "allow-none" : true + "allow-none": true }, - - "head2": { - "type": "header", - "description": "Visual" + "note-text": { + "type": "textview", + "description": "Write Your Note", + "dependency": "note-taking-method=desklet", + "default": "", + "height": 200 }, - "style" : { + "style": { "type": "combobox", - "default" : "Niki_black_magnet", - "description" : "Notes style", - "options" : { + "default": "Niki_black_magnet", + "description": "Notes style", + "options": { "Blank Note - Black": "Niki_blank_black", "Blank Note - Blue": "Niki_blank_blue", "Blank Note - Green": "Niki_blank_green", @@ -39,37 +107,31 @@ "Blank Note - Purple": "Niki_blank_purple", "Blank Note - White": "Niki_blank_white", "Blank Note - Yellow": "Niki_blank_yellow", - "White Note - Black Button": "Niki_black_button", "White Note - Blue Button": "Niki_blue_button", "White Note - Green Button": "Niki_green_button", "White Note - Red Button": "Niki_red_button", "White Note - Yellow Button": "Niki_yellow_button", - "Yellow Note - Black Clip": "Niki_black_clip", "Yellow Note - Blue Clip": "Niki_blue_clip", "Yellow Note - Green Clip": "Niki_green_clip", "Yellow Note - Jingle Clip": "Niki_jingle_clip", "Yellow Note - Red Clip": "Niki_red_clip", "Yellow Note - Yellow Clip": "Niki_yellow_clip", - "White Note - Black Magnet": "Niki_black_magnet", "Yellow Note - Blue Magnet": "Niki_blue_magnet", "White Note - Lines and Red Magnet": "Niki_red_magnet", "Black Note - White Magnet": "Niki_white_magnet", "Yellow Note - Yellow Magnet": "Niki_yellow_magnet", - "Blue Paint Strokes": "Niki_blue_paint_strokes", "Green Paint Strokes": "Niki_green_paint_strokes", "Purple Paint Strokes": "Niki_purple_paint_strokes", "Red Paint Strokes": "Niki_red_paint_strokes", "Yellow Paint Strokes": "Niki_yellow_paint_strokes", - "White Note - Silver Spiral": "schorschii_white", "White Note - Silver Spiral 2": "Niki_white", "White Note - Black Spiral": "Niki_white_black_spiral", "White Note Large - Silver Spiral": "Niki_white_large", - "Yellow Sticker": "Niki_sticker", "Yellow Note (iOS Style)": "schorschii_yellow", "Birch Bark": "Niki_birch_bark", @@ -77,10 +139,9 @@ "Clay Tablet": "Niki_clay_tablet", "Coffee Stained": "Niki_coffee_stained", "Clipboard": "Niki_board_tablet", - "None": "none" }, - "tooltip" : "Select the background graphic you would like to use." + "tooltip": "Select the background graphic you would like to use." }, "bg-color": { "type": "colorchooser", @@ -90,7 +151,7 @@ "dependency": "style=none" }, "hide-decorations": { - "type": "checkbox", + "type": "switch", "description": "Hide decorations", "default": false }, @@ -135,11 +196,6 @@ "description": "Desklet size", "tooltip": "Increase or decrease the size of this desklet using this scale factor." }, - - "head3": { - "type": "header", - "description": "Custom desklet label (only visible if decorations are enabled)" - }, "use-custom-label": { "type": "checkbox", "default": false, @@ -155,4 +211,4 @@ "dependency": "use-custom-label", "tooltip": "Set your custom label here. This field is unavailable unless the checkbox above is enabled." } -} +} \ No newline at end of file