소스 검색

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.
Martijn Braam 3 년 전
부모
커밋
7d8404d895
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/main.c

+ 2 - 2
src/main.c

@@ -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);
 	}