Skip to content

Commit 616d914

Browse files
committed
Fix Czech confirm_remove_site translation breaking release lint
The 26.8 translation sync introduced a doubled backslash (\\") in the Czech confirm_remove_site string. Android reads \\ as an escaped literal backslash, which hides the %s placeholder from lint, so StringFormatMatches fails: ChooseSiteActivity supplies 1 argument but the string is seen as requiring 0. Use a single-backslash escape (\") to match the English source and every other locale.
1 parent 2775848 commit 616d914

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

WordPress/src/main/res/values-cs/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ Language: cs_CZ
210210
<string name="site_settings_tags_empty_subtitle">Proč jej nevytvořit, aby bylo snazší označovat příspěvky štítky?</string>
211211
<string name="posts_published_empty_subtitle">Proč jej nevytvořit?</string>
212212
<string name="media_empty_list_subtitle">Proč něco nenahrát?</string>
213-
<string name="confirm_remove_site">Odebrat \\"%s\\" z aplikace?</string>
213+
<string name="confirm_remove_site">Odebrat \"%s\" z aplikace?</string>
214214
<string name="he_support_forbidden_error">Omlouváme se, tuto akci nemáte povoleno provést.</string>
215215
<string name="he_support_generic_error">Došlo k chybě. Zkuste to prosím později.</string>
216216
<string name="he_support_send_ticket_button">Odeslat</string>

0 commit comments

Comments
 (0)