Remove repetiton in the QR code message

As noted by ~ferenc, the message for QR code popups translates to
"QR-Code code" which doesn't look nice.
This commit is contained in:
Martijn Braam 2021-09-10 02:52:23 +02:00
parent 85819660a7
commit 7d8404d895
No known key found for this signature in database
GPG Key ID: C4280ACB000B060F
1 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@ on_zbar_code_tapped(GtkWidget *widget, const MPZBarCode *code)
flags,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
"Found a URL '%s' encoded in a %s code.",
"Found a URL '%s' encoded in a %s.",
code->data,
code->type);
gtk_dialog_add_buttons(
@ -557,7 +557,7 @@ on_zbar_code_tapped(GtkWidget *widget, const MPZBarCode *code)
flags,
GTK_MESSAGE_QUESTION,
GTK_BUTTONS_NONE,
"Found '%s' encoded in a %s code.",
"Found '%s' encoded in a %s.",
code->data,
code->type);
}