update strings

This commit is contained in:
yggverse 2025-01-31 15:19:22 +02:00
parent 078de72c89
commit ff326290c6
3 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@ impl Search for AlertDialog {
// Init main widget // Init main widget
let alert_dialog = AlertDialog::builder() let alert_dialog = AlertDialog::builder()
.heading("Search") .heading("Search")
.body("Select default provider") .body("Choose default provider")
.close_response(RESPONSE_CANCEL.0) .close_response(RESPONSE_CANCEL.0)
.default_response(RESPONSE_APPLY.0) .default_response(RESPONSE_APPLY.0)
.extra_child(&form.g_box) .extra_child(&form.g_box)

View file

@ -18,7 +18,7 @@ impl Item {
pub fn add() -> Self { pub fn add() -> Self {
Object::builder() Object::builder()
.property("value", G_VALUE_ADD) .property("value", G_VALUE_ADD)
.property("title", "Add..") .property("title", "Add provider..")
.property("is-default", false) .property("is-default", false)
.build() .build()
} }

View file

@ -29,7 +29,7 @@ impl Query for Entry {
Entry::builder() Entry::builder()
.margin_top(8) .margin_top(8)
.max_length(MAX_LENGTH as i32) .max_length(MAX_LENGTH as i32)
.placeholder_text("Provider query URL") .placeholder_text("Request URL (without query)")
.visible(false) .visible(false)
.build() .build()
} }