[bug] Don't translate empty strings (#8464)

Introduced in https://github.com/koreader/koreader/pull/8419

Unfortunately it's not just useless, but it causes some edge case issue.
pull/8465/head
Frans de Jonge 2 years ago committed by GitHub
parent 8207bdc3e3
commit 59d09f54f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -72,7 +72,7 @@ local symbol_prefix = {
-- @translators This is the footer letter prefix for Wi-Fi status.
wifi_status = C_("FooterLetterPrefix", "W:"),
-- no prefix for custom text
custom_text = C_("FooterLetterPrefix", ""),
custom_text = "",
},
icons = {
time = "",

Loading…
Cancel
Save