From 7455bef46be74f2ded9845bd15571cf16210d274 Mon Sep 17 00:00:00 2001 From: Adam Martula Date: Wed, 18 Sep 2024 18:09:19 +0200 Subject: [PATCH 1/4] dual-datetime@rxcalixte: Feature Suggestion: Add font weight --- .../dual-datetime@rcalixte/5.4/desklet.js | 6 ++++-- .../5.4/settings-schema.json | 20 +++++++++++++++++++ .../po/dual-datetime@rcalixte.pot | 11 ++++++++++ 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js index 4becb9bd7..69474e704 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js @@ -47,6 +47,7 @@ DateTimeDesklet.prototype = { this.settings.bindProperty(Settings.BindingDirection.IN, "time_yalign1", "time_yalign1", this.setupUI); this.settings.bindProperty(Settings.BindingDirection.IN, "time_font1", "time_font1", this.on_font_setting_changed, 1); this.settings.bindProperty(Settings.BindingDirection.IN, "time_color1", "time_color1", this.setupUI); + this.settings.bindProperty(Settings.BindingDirection.IN, "time_weight1", "time_weight1", this.on_font_setting_changed, 1); this.settings.bindProperty(Settings.BindingDirection.IN, "time_size1", "time_size1", this.on_font_setting_changed, 1); this.settings.bindProperty(Settings.BindingDirection.IN, "time_custom2", "time_custom2", this.setupUI); this.settings.bindProperty(Settings.BindingDirection.IN, "time_format2", "time_format2", this.setupUI); @@ -54,6 +55,7 @@ DateTimeDesklet.prototype = { this.settings.bindProperty(Settings.BindingDirection.IN, "time_yalign2", "time_yalign2", this.setupUI); this.settings.bindProperty(Settings.BindingDirection.IN, "time_font2", "time_font2", this.on_font_setting_changed, 2); this.settings.bindProperty(Settings.BindingDirection.IN, "time_color2", "time_color2", this.setupUI); + this.settings.bindProperty(Settings.BindingDirection.IN, "time_weight2", "time_weight2", this.on_font_setting_changed, 2); this.settings.bindProperty(Settings.BindingDirection.IN, "time_size2", "time_size2", this.on_font_setting_changed, 2); this.settings.bindProperty(Settings.BindingDirection.IN, "width", "width", this.setupUI); this.settings.bindProperty(Settings.BindingDirection.IN, "title_align", "title_align", this.setupUI); @@ -100,7 +102,7 @@ DateTimeDesklet.prototype = { this[`time_font${num}`] = this[`time_font${num}`].replace(/['"`]/g, ""); this[`font${num}`] = this[`time_font${num}`] !== "" ? ` font-family: '${this["time_font" + num]}';` : ""; let _padding = this._vertical || num == 1 ? "" : "padding-left: 0.5em; "; - this[`container${num}`].style = `${_padding}color: ${this['time_color' + num]}; font-size: ${this['time_size' + num]}em;${this['font' + num]}`; + this[`container${num}`].style = `${_padding}color: ${this['time_color' + num]}; font-size: ${this['time_size' + num]}em;font-weight: ${this['time_weight' + num]};${this['font' + num]}`; let _alignment = this._vertical ? { x_fill: false, x_align: ST_ALIGNMENT[this[`time_align${num}`]] } : null; this._main.add(this[`container${num}`], _alignment); }, @@ -161,7 +163,7 @@ DateTimeDesklet.prototype = { global.logError(e); } finally { let _padding = this._vertical || num == 1 ? "" : "padding-left: 0.5em; "; - this[`container${num}`].style = `${_padding}color: ${this["time_color" + num]}; font-size: ${this["time_size" + num]}em;${this["font" + num]}`; + this[`container${num}`].style = `${_padding}color: ${this["time_color" + num]}; font-size: ${this["time_size" + num]}em; font-weight: ${this['time_weight' + num]};${this["font" + num]}`; } }); } catch (e) { diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/settings-schema.json b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/settings-schema.json index 9c5199539..7f9c6005f 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/settings-schema.json +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/settings-schema.json @@ -51,6 +51,16 @@ "tooltip": "RGB or RGBA", "dependency": "time_custom1" }, + "time_weight1": { + "type": "scale", + "description": "Font Weight", + "default": 400, + "min": 100, + "max": 900, + "step": 100, + "tooltip": "Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)", + "dependency": "time_custom1" + }, "time_size1": { "type": "scale", "description": "Font Size", @@ -113,6 +123,16 @@ "tooltip": "RGB or RGBA", "dependency": "time_custom2" }, + "time_weight2": { + "type": "scale", + "description": "Font Weight", + "default": 400, + "min": 100, + "max": 900, + "step": 100, + "tooltip": "Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)", + "dependency": "time_custom2" + }, "time_size2": { "type": "scale", "description": "Font Size", diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot index 32fab1bf7..5d0236f25 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot @@ -102,6 +102,17 @@ msgstr "" msgid "RGB or RGBA" msgstr "" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +msgid "Font Weight" +msgstr "" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)" +msgstr "" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" From 9ef7821fb6bd4d40e96a44ecaf3d491fca0d72e3 Mon Sep 17 00:00:00 2001 From: Adam Martula Date: Wed, 18 Sep 2024 18:11:39 +0200 Subject: [PATCH 2/4] dual-datetime@rcalixte: Updated German Translation --- .../files/dual-datetime@rcalixte/po/de.po | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po index d06bce341..5d0cdf949 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po @@ -107,6 +107,17 @@ msgstr "Schriftfarbe" msgid "RGB or RGBA" msgstr "RGB oder RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +msgid "Font Weight" +msgstr "Schriftbreite" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)" +msgstr "Erhöhe oder verkleinere diesen Wert um die Schriftbreite zu skalieren (Normal = 400, Fett = 700)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" From 4882036612a65561b5ce01a4b45ce2c5d8152a22 Mon Sep 17 00:00:00 2001 From: Rick Calixte <10281587+rcalixte@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:21:41 -0400 Subject: [PATCH 3/4] fix whitespace and translation files --- .../dual-datetime@rcalixte/5.4/desklet.js | 2 +- .../files/dual-datetime@rcalixte/po/ca.po | 16 +++++++++++++++- .../files/dual-datetime@rcalixte/po/da.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/de.po | 9 ++++++--- .../po/dual-datetime@rcalixte.pot | 5 +++-- .../files/dual-datetime@rcalixte/po/es.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/fr.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/hu.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/it.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/nl.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/ro.po | 18 +++++++++++++++++- .../files/dual-datetime@rcalixte/po/ru.po | 18 +++++++++++++++++- 12 files changed, 161 insertions(+), 15 deletions(-) diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js index 69474e704..6e1b5ce48 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/5.4/desklet.js @@ -102,7 +102,7 @@ DateTimeDesklet.prototype = { this[`time_font${num}`] = this[`time_font${num}`].replace(/['"`]/g, ""); this[`font${num}`] = this[`time_font${num}`] !== "" ? ` font-family: '${this["time_font" + num]}';` : ""; let _padding = this._vertical || num == 1 ? "" : "padding-left: 0.5em; "; - this[`container${num}`].style = `${_padding}color: ${this['time_color' + num]}; font-size: ${this['time_size' + num]}em;font-weight: ${this['time_weight' + num]};${this['font' + num]}`; + this[`container${num}`].style = `${_padding}color: ${this['time_color' + num]}; font-size: ${this['time_size' + num]}em; font-weight: ${this['time_weight' + num]};${this['font' + num]}`; let _alignment = this._vertical ? { x_fill: false, x_align: ST_ALIGNMENT[this[`time_align${num}`]] } : null; this._main.add(this[`container${num}`], _alignment); }, diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po index 7516f81f0..a5ed7b998 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: 2024-05-15 13:58+0200\n" "Last-Translator: Daniel \n" "Language-Team: \n" @@ -107,6 +107,20 @@ msgstr "Color de la lletra" msgid "RGB or RGBA" msgstr "RGB o RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Mida de la lletra" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "Definiu el factor d'escala de la lletra (1.2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po index fe457e216..36d621c74 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: Alan Mortensen \n" "Language-Team: \n" @@ -107,6 +107,22 @@ msgstr "Skrifttypefarve" msgid "RGB or RGBA" msgstr "RGB eller RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Skrifttypestørrelse" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Forøg eller formindsk denne værdi for at ændre skaleringen af skrifttypen " +"(1,2 = 120 %)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po index 5d0cdf949..2df8b5c3f 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: 2024-09-17 08:55+0200\n" "Last-Translator: acaimingus \n" "Language-Team: \n" @@ -115,8 +115,11 @@ msgstr "Schriftbreite" #. 5.4->settings-schema.json->time_weight1->tooltip #. 5.4->settings-schema.json->time_weight2->tooltip msgid "" -"Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)" -msgstr "Erhöhe oder verkleinere diesen Wert um die Schriftbreite zu skalieren (Normal = 400, Fett = 700)" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Erhöhe oder verkleinere diesen Wert um die Schriftbreite zu skalieren " +"(Normal = 400, Fett = 700)" #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot index 5d0236f25..83e2f185e 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -110,7 +110,8 @@ msgstr "" #. 5.4->settings-schema.json->time_weight1->tooltip #. 5.4->settings-schema.json->time_weight2->tooltip msgid "" -"Increase or decrease this value to change the font weight (Normal = 400, Bold = 700)" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" msgstr "" #. 5.4->settings-schema.json->time_size1->description diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po index 1e08a9822..dedd95c95 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -106,6 +106,22 @@ msgstr "Color de fuente" msgid "RGB or RGBA" msgstr "RGB o RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Tamaño de fuente" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Aumente o disminuya este valor para cambiar la escala del tamaño de la " +"fuente (1.2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po index 1e44080bb..4f1eddb74 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: 2023-10-21 17:11-0400\n" "Last-Translator: Claudiux \n" "Language-Team: \n" @@ -107,6 +107,22 @@ msgstr "Couleur de la police de caractères" msgid "RGB or RGBA" msgstr "RGB ou RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Taille de la police de caractères" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Augmentez ou diminuez cette valeur pour modifier l'échelle de la taille de " +"la police (1,2 = 120%)." + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po index 3e24dd802..9f6778265 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -107,6 +107,22 @@ msgstr "Betű szín" msgid "RGB or RGBA" msgstr "RGB vagy RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Betűméret" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Növelje vagy csökkentse ezt az értéket a betűméret tartomány módosításához " +"(1,2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po index b714291ce..b03380462 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: Dragone2 \n" "Language-Team: \n" @@ -109,6 +109,22 @@ msgstr "Colore carattere" msgid "RGB or RGBA" msgstr "RGB o RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Dimensione carattere" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Aumenta o diminuisci questo valore per modificare la scala delle dimensioni " +"del carattere (1.2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po index 5a29f984f..b924607c3 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: 2024-04-18 15:50+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" @@ -107,6 +107,22 @@ msgstr "Letterkleur" msgid "RGB or RGBA" msgstr "RGB of RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Lettergrootte" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Verhoog of verlaag deze waarde om de schaal van de lettergrootte te wijzigen " +"(1.2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po index 7519c38c6..50a6b6bac 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: 2023-10-21 17:11-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -106,6 +106,22 @@ msgstr "Culoarea fontului" msgid "RGB or RGBA" msgstr "RGB sau RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Mărimea fontului" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Mărește sau micșorează această valoare pentru a modifica scara dimensiunii " +"fontului (1,2 = 120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po index 5b87b80f2..f17f65af1 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-08-06 22:34-0400\n" +"POT-Creation-Date: 2024-09-18 21:20-0400\n" "PO-Revision-Date: \n" "Last-Translator: blogdron\n" "Language-Team: \n" @@ -103,6 +103,22 @@ msgstr "Цвет Текста" msgid "RGB or RGBA" msgstr "RGB или RGBA" +#. 5.4->settings-schema.json->time_weight1->description +#. 5.4->settings-schema.json->time_weight2->description +#, fuzzy +msgid "Font Weight" +msgstr "Размер Шрифта" + +#. 5.4->settings-schema.json->time_weight1->tooltip +#. 5.4->settings-schema.json->time_weight2->tooltip +#, fuzzy +msgid "" +"Increase or decrease this value to change the font weight (Normal = 400, " +"Bold = 700)" +msgstr "" +"Увеличьте или уменьшите это значение для изменения размера шрифта (1.2 = " +"120%)" + #. 5.4->settings-schema.json->time_size1->description #. 5.4->settings-schema.json->time_size2->description msgid "Font Size" From a703c34035ba33f4a6276c30d9bf128c647cb2a4 Mon Sep 17 00:00:00 2001 From: Rick Calixte <10281587+rcalixte@users.noreply.github.com> Date: Wed, 18 Sep 2024 21:30:55 -0400 Subject: [PATCH 4/4] update documentation --- dual-datetime@rcalixte/CHANGELOG.md | 3 +++ dual-datetime@rcalixte/README.md | 3 ++- .../files/dual-datetime@rcalixte/metadata.json | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po | 2 +- .../dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot | 4 ++-- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po | 2 +- dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po | 2 +- 14 files changed, 18 insertions(+), 14 deletions(-) diff --git a/dual-datetime@rcalixte/CHANGELOG.md b/dual-datetime@rcalixte/CHANGELOG.md index ea6ee282f..08bc41d6d 100644 --- a/dual-datetime@rcalixte/CHANGELOG.md +++ b/dual-datetime@rcalixte/CHANGELOG.md @@ -1,4 +1,7 @@ +### 1.3.0 +* Add an option for font weight + ### 1.2.1 * Update default time size to 5 * Update default date size to 2.5 diff --git a/dual-datetime@rcalixte/README.md b/dual-datetime@rcalixte/README.md index e22fe3d36..67242ab9d 100644 --- a/dual-datetime@rcalixte/README.md +++ b/dual-datetime@rcalixte/README.md @@ -12,8 +12,9 @@ Adjust the following options for each datetime value using the settings: * Time Format * Time Alignment (per Layout) -* Font +* Font Family * Color +* Font Weight * Size Additional desklet options include: diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/metadata.json b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/metadata.json index 946ea929a..02e958999 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/metadata.json +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/metadata.json @@ -11,5 +11,5 @@ ], "multiversion": true, "max-instances": "10", - "version": "1.2.1" + "version": "1.3.0" } diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po index a5ed7b998..801329cea 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ca.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: 2024-05-15 13:58+0200\n" "Last-Translator: Daniel \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po index 36d621c74..d7dff2e1f 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/da.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: Alan Mortensen \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po index 2df8b5c3f..98c649feb 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/de.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: 2024-09-17 08:55+0200\n" "Last-Translator: acaimingus \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot index 83e2f185e..7de3e6623 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/dual-datetime@rcalixte.pot @@ -5,10 +5,10 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: dual-datetime@rcalixte 1.2.1\n" +"Project-Id-Version: dual-datetime@rcalixte 1.3.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po index dedd95c95..6a497eb5c 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/es.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po index 4f1eddb74..7a109c4ea 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/fr.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: 2023-10-21 17:11-0400\n" "Last-Translator: Claudiux \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po index 9f6778265..32140e6a4 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/hu.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po index b03380462..5222a5ed4 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/it.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.2\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: Dragone2 \n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po index b924607c3..bc83383f2 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/nl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: dual-datetime@rcalixte 1.1\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: 2024-04-18 15:50+0200\n" "Last-Translator: qadzek\n" "Language-Team: \n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po index 50a6b6bac..c6e879eab 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ro.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: 1.0\n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: 2023-10-21 17:11-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po index f17f65af1..31e9f300e 100644 --- a/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po +++ b/dual-datetime@rcalixte/files/dual-datetime@rcalixte/po/ru.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/linuxmint/cinnamon-spices-desklets/" "issues\n" -"POT-Creation-Date: 2024-09-18 21:20-0400\n" +"POT-Creation-Date: 2024-09-18 21:30-0400\n" "PO-Revision-Date: \n" "Last-Translator: blogdron\n" "Language-Team: \n"