1
0
Fork 0
forked from len0rd/rockbox

Android: replace hardcoded strings with Android strings, allowing translations

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28518 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2010-11-06 02:02:58 +00:00
parent 13f7dffb09
commit f20582442f
3 changed files with 5 additions and 3 deletions

View file

@ -207,7 +207,7 @@ public class RockboxService extends Service
e.printStackTrace();
if (resultReceiver != null) {
Bundle bundle = new Bundle();
bundle.putString("error", "Error occured during extraction!");
bundle.putString("error", getString(R.string.error_extraction));
resultReceiver.send(RESULT_ERROR_OCCURED, bundle);
}
}