diff --git a/res/values/strings.xml b/res/values/strings.xml
index 6aaea9f89..15dc5c364 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -43,8 +43,11 @@
like
this: http://f-droid.org/repo
+ Installed
Not Installed
+ Added on %s
+
Update possible - Ver.:
@@ -113,7 +116,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 acf560e24..3916bed9e 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);
}