diff --git a/astrid/res/values/strings-core.xml b/astrid/res/values/strings-core.xml
index b82cdadb6..c4ea7fa7a 100644
--- a/astrid/res/values/strings-core.xml
+++ b/astrid/res/values/strings-core.xml
@@ -808,6 +808,11 @@
Empty List!
+ Astrid Power Pack
+ Support Astrid and get more productive with the Astrid Power Pack. 4x2 and 4x4 widgets and voice integration. Power up today!
+ Astrid Locale Plugin
+ Allows Astrid to make use of the Locale application to send you notifications based on filter conditions. Requires Locale.
+
diff --git a/astrid/src/com/todoroo/astrid/service/AddOnService.java b/astrid/src/com/todoroo/astrid/service/AddOnService.java
index 6a5c881f6..6bbb4baa8 100644
--- a/astrid/src/com/todoroo/astrid/service/AddOnService.java
+++ b/astrid/src/com/todoroo/astrid/service/AddOnService.java
@@ -139,22 +139,17 @@ public class AddOnService {
// temporary temporary
ArrayList list = new ArrayList(3);
if(Constants.MARKET_STRATEGY.includesPowerPack())
- list.add(new AddOn(false, true, "Astrid Power Pack", null,
- "Support Astrid and get more productive with the Astrid Power Pack. 4x2 and 4x4 widgets and voice integration. Power up today!",
+ list.add(new AddOn(false, true, r.getString(R.string.AOA_ppack_title), null,
+ r.getString(R.string.AOA_ppack_description),
POWER_PACK_PACKAGE, "http://www.weloveastrid.com/store",
((BitmapDrawable)r.getDrawable(R.drawable.icon_pp)).getBitmap()));
if(Constants.MARKET_STRATEGY.includesLocalePlugin())
- list.add(new AddOn(false, true, "Astrid Locale Plugin", null,
- "Allows Astrid to make use of the Locale application to send you notifications based on filter conditions. Requires Locale.",
+ list.add(new AddOn(false, true, r.getString(R.string.AOA_locale_title), null,
+ r.getString(R.string.AOA_locale_description),
LOCALE_PACKAGE, "http://www.weloveastrid.com/store",
((BitmapDrawable)r.getDrawable(R.drawable.icon_locale)).getBitmap()));
-// list.add(new AddOn(true, true, "Producteev", null,
-// "Synchronize with Producteev service. Also changes Astrid's importance levels to stars.",
-// Constants.PACKAGE, "http://www.producteev.com",
-// ((BitmapDrawable)r.getDrawable(R.drawable.icon_producteev)).getBitmap()));
-
return list.toArray(new AddOn[list.size()]);
}