diff --git a/res/values/strings.xml b/res/values/strings.xml index 0fae56971..d2a22ab78 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -44,8 +44,11 @@ like this: http://f-droid.org/repo + Installed Not Installed + Added on %s + Update possible - Ver.: @@ -117,7 +120,6 @@ Version %s installed Not installed - Installed Downloaded file is corrupt Download cancelled diff --git a/src/org/fdroid/fdroid/AppDetails.java b/src/org/fdroid/fdroid/AppDetails.java index b5e301171..aca27650e 100644 --- a/src/org/fdroid/fdroid/AppDetails.java +++ b/src/org/fdroid/fdroid/AppDetails.java @@ -142,7 +142,7 @@ public class AppDetails extends ListActivity { TextView added = (TextView) v.findViewById(R.id.added); if (apk.added != null) { added.setVisibility(View.VISIBLE); - added.setText(df.format(apk.added)); + added.setText(getString(R.string.added_on, df.format(apk.added))); } else { added.setVisibility(View.GONE); }