MislabeledAndroidString
Certain resources in `android.R.string` have names that do not match their content

Severity
ERROR

The problem

Certain resources in android.R.string have names that do not match their content: android.R.string.yes is actually โ€œOKโ€ and android.R.string.no is โ€œCancelโ€. Avoid these string resources and prefer ones whose names do match their content. If you need โ€œYesโ€ or โ€œNoโ€ you must create your own string resources.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("MislabeledAndroidString") to the enclosing element.