From e786360ac74fc8f3e3f5f1621fb4b31c3cfa0669 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Mon, 27 May 2024 22:52:30 +0000 Subject: [PATCH 1/3] Translated using Weblate (English (United Kingdom)) Currently translated at 100.0% (14 of 14 strings) Translation: Installer/Installer (Extra) Translate-URL: https://l10n.elementary.io/projects/installer/extra/en_GB/ --- po/extra/en_GB.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/extra/en_GB.po b/po/extra/en_GB.po index 14d712004..f008105ef 100644 --- a/po/extra/en_GB.po +++ b/po/extra/en_GB.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-24 17:31+0000\n" -"PO-Revision-Date: 2023-08-03 16:08+0000\n" +"PO-Revision-Date: 2024-05-28 23:13+0000\n" "Last-Translator: David Hewitt \n" "Language-Team: English (United Kingdom) \n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.5\n" #: data/installer.metainfo.xml.in:9 msgid "Installer" @@ -37,7 +37,7 @@ msgstr "Improvements:" #: data/installer.metainfo.xml.in:63 msgid "Keyboard layout preview is now in a resizable window" -msgstr "" +msgstr "Keyboard layout preview is now in a resizeable window" #: data/installer.metainfo.xml.in:64 data/installer.metainfo.xml.in:78 #: data/installer.metainfo.xml.in:91 data/installer.metainfo.xml.in:107 From ff757c667f478f1983d622e2b4ba4439bddeeeff Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Mon, 27 May 2024 22:51:49 +0000 Subject: [PATCH 2/3] Translated using Weblate (English (United Kingdom)) Currently translated at 100.0% (112 of 112 strings) Translation: Installer/Installer Translate-URL: https://l10n.elementary.io/projects/installer/installer/en_GB/ --- po/en_GB.po | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/po/en_GB.po b/po/en_GB.po index f80ff9580..f172bf084 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-05-24 17:31+0000\n" -"PO-Revision-Date: 2024-05-04 07:13+0000\n" +"PO-Revision-Date: 2024-05-28 23:13+0000\n" "Last-Translator: David Hewitt \n" "Language-Team: English (United Kingdom) \n" @@ -336,21 +336,14 @@ msgid "Currently active language" msgstr "Currently active language" #: src/Views/PartitioningView.vala:52 -#, fuzzy -#| msgid "Use Partition" msgid "Select Partitions" -msgstr "Use Partition" +msgstr "Select Partitions" #: src/Views/PartitioningView.vala:56 -#, fuzzy -#| msgid "" -#| "Select which partitions to use across all drives. Selecting \"Format\" " -#| "will erase ALL data on the selected partition." msgid "" "Selecting “Format” will erase all data on the selected partition." msgstr "" -"Select which partitions to use across all drives. Selecting \"Format\" " -"will erase ALL data on the selected partition." +"Selecting “Format” will erase all data on the selected partition." #. Device is in BIOS mode, so we just require a root partition #: src/Views/PartitioningView.vala:65 From e61a9e51e0c237a61926317a09199d2c4330110f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Tue, 28 May 2024 16:16:50 -0700 Subject: [PATCH 3/3] EncryptView: ErrorRevealer Gtk4 prep (#777) --- src/Views/EncryptView.vala | 43 +++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/src/Views/EncryptView.vala b/src/Views/EncryptView.vala index db88ae8a0..510e8ec49 100644 --- a/src/Views/EncryptView.vala +++ b/src/Views/EncryptView.vala @@ -285,26 +285,35 @@ public class EncryptView : AbstractInstallerView { } } - private class ErrorRevealer : Gtk.Revealer { - public Gtk.Label label_widget; + private class ErrorRevealer : Gtk.Box { + public bool reveal_child { get; set; } + public Gtk.Label label_widget { get; private set; } + public string label { get; construct set; } - public string label { - set { - label_widget.label = "%s".printf (value); - } + public ErrorRevealer (string label) { + Object (label: label); } - public ErrorRevealer (string label) { - label_widget = new Gtk.Label ("%s".printf (label)); - label_widget.halign = Gtk.Align.END; - label_widget.justify = Gtk.Justification.RIGHT; - label_widget.max_width_chars = 55; - label_widget.use_markup = true; - label_widget.wrap = true; - label_widget.xalign = 1; - - transition_type = Gtk.RevealerTransitionType.CROSSFADE; - add (label_widget); + construct { + label_widget = new Gtk.Label (label) { + halign = END, + justify = RIGHT, + max_width_chars = 55, + use_markup = true, + wrap = true, + xalign = 1 + }; + label_widget.get_style_context ().add_class (Granite.STYLE_CLASS_SMALL_LABEL); + + var revealer = new Gtk.Revealer () { + child = label_widget, + transition_type = CROSSFADE + }; + + add (revealer); + + bind_property ("reveal-child", revealer, "reveal-child"); + bind_property ("label", label_widget, "label"); } } }