1
0

android: qr scanner: add emoji to clipboard string

The string is not translated and might not be accessible for non-english
speakers, even though its relatively self-explanatory i think adding
this emoji makes it more accessible.
This commit is contained in:
f321x
2025-10-28 14:29:59 +01:00
parent 6423323037
commit c816987164
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ EXCLUDE_EXTENSIONS = {
UNICODE_WHITELIST = { UNICODE_WHITELIST = {
"💬", "🗯", "", chr(0xfe0f), "", "", "", "", "", "", "", "", "💬", "🗯", "", chr(0xfe0f), "", "", "", "", "", "", "", "",
"á", "é", "", "á", "é", "",
"", "", "", "", "", "", "", "", "📋",
} }
exit_code = 0 exit_code = 0

View File

@@ -31,6 +31,6 @@
android:layout_gravity="center|bottom" android:layout_gravity="center|bottom"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Paste from clipboard" /> android:text="Paste from clipboard 📋" />
</FrameLayout> </FrameLayout>