From 48fe1b0d9626ccd3b03c03150d0c52c828d1b78d Mon Sep 17 00:00:00 2001 From: Bart Gravendeel Date: Wed, 21 Feb 2024 23:03:23 +0100 Subject: [PATCH] Fix placeholder-text strings (#105) --- demos/Email/main.blp | 2 +- demos/Launcher/main.blp | 2 +- demos/Level Bars/main.blp | 2 +- demos/List Model/main.blp | 2 +- demos/Text Fields/main.blp | 4 ++-- demos/Toolbar View/main.blp | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/demos/Email/main.blp b/demos/Email/main.blp index 53339379..f194b140 100644 --- a/demos/Email/main.blp +++ b/demos/Email/main.blp @@ -11,7 +11,7 @@ Adw.StatusPage { halign: center; Entry entry { - placeholder-text: _("Enter your email address"); + placeholder-text: _("Email address"); margin-bottom: 18; } diff --git a/demos/Launcher/main.blp b/demos/Launcher/main.blp index 197eb3bc..9fb5d214 100644 --- a/demos/Launcher/main.blp +++ b/demos/Launcher/main.blp @@ -111,7 +111,7 @@ Adw.StatusPage { } Entry uri_details { - placeholder-text: _("Enter URL"); + placeholder-text: _("URL"); text: "https://gnome.org"; } diff --git a/demos/Level Bars/main.blp b/demos/Level Bars/main.blp index de0ae9ba..64450abc 100644 --- a/demos/Level Bars/main.blp +++ b/demos/Level Bars/main.blp @@ -53,7 +53,7 @@ Adw.StatusPage { } PasswordEntry entry { - placeholder-text: "Choose a Password"; + placeholder-text: "Password"; show-peek-icon: true; } diff --git a/demos/List Model/main.blp b/demos/List Model/main.blp index 353a4749..38d9c5c7 100644 --- a/demos/List Model/main.blp +++ b/demos/List Model/main.blp @@ -75,7 +75,7 @@ Adw.StatusPage { ] SearchEntry search_entry { - placeholder-text: _("Start searching"); + placeholder-text: _("Search items"); } Button add { diff --git a/demos/Text Fields/main.blp b/demos/Text Fields/main.blp index 66476689..50bba029 100644 --- a/demos/Text Fields/main.blp +++ b/demos/Text Fields/main.blp @@ -75,7 +75,7 @@ Adw.Clamp { } Entry entry_placeholder { - placeholder-text: "Enter text here"; + placeholder-text: "Text"; } } @@ -190,7 +190,7 @@ Adw.Clamp { PasswordEntry entry_password { show-peek-icon: true; - placeholder-text: "Enter password"; + placeholder-text: "Password"; margin-bottom: 12; } diff --git a/demos/Toolbar View/main.blp b/demos/Toolbar View/main.blp index 3cecdefb..d9c17430 100644 --- a/demos/Toolbar View/main.blp +++ b/demos/Toolbar View/main.blp @@ -229,7 +229,7 @@ SearchBar search_bar { show-close-button: true; SearchEntry { - placeholder-text: _("Start searching"); + placeholder-text: _("Search"); } }