Skip to content

Commit

Permalink
Fix placeholder-text strings (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bart Gravendeel authored Feb 21, 2024
1 parent 50db207 commit 48fe1b0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion demos/Email/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Adw.StatusPage {
halign: center;

Entry entry {
placeholder-text: _("Enter your email address");
placeholder-text: _("Email address");
margin-bottom: 18;
}

Expand Down
2 changes: 1 addition & 1 deletion demos/Launcher/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Adw.StatusPage {
}

Entry uri_details {
placeholder-text: _("Enter URL");
placeholder-text: _("URL");
text: "https://gnome.org";
}

Expand Down
2 changes: 1 addition & 1 deletion demos/Level Bars/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Adw.StatusPage {
}

PasswordEntry entry {
placeholder-text: "Choose a Password";
placeholder-text: "Password";
show-peek-icon: true;
}

Expand Down
2 changes: 1 addition & 1 deletion demos/List Model/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Adw.StatusPage {
]

SearchEntry search_entry {
placeholder-text: _("Start searching");
placeholder-text: _("Search items");
}

Button add {
Expand Down
4 changes: 2 additions & 2 deletions demos/Text Fields/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Adw.Clamp {
}

Entry entry_placeholder {
placeholder-text: "Enter text here";
placeholder-text: "Text";
}
}

Expand Down Expand Up @@ -190,7 +190,7 @@ Adw.Clamp {

PasswordEntry entry_password {
show-peek-icon: true;
placeholder-text: "Enter password";
placeholder-text: "Password";
margin-bottom: 12;
}

Expand Down
2 changes: 1 addition & 1 deletion demos/Toolbar View/main.blp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ SearchBar search_bar {
show-close-button: true;

SearchEntry {
placeholder-text: _("Start searching");
placeholder-text: _("Search");
}
}

Expand Down

0 comments on commit 48fe1b0

Please sign in to comment.