diff --git a/app/src/dw/res/layout/activity_info.xml b/app/src/dw/res/layout/activity_info.xml
index 573928883..46dcde9b4 100644
--- a/app/src/dw/res/layout/activity_info.xml
+++ b/app/src/dw/res/layout/activity_info.xml
@@ -45,53 +45,59 @@
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
-
-
+
-
+
-
+
-
+
-
+
-
-
+
+
+
\ No newline at end of file
diff --git a/app/src/dw/res/values/strings.xml b/app/src/dw/res/values/strings.xml
index 54e528a6a..ed98b16d1 100644
--- a/app/src/dw/res/values/strings.xml
+++ b/app/src/dw/res/values/strings.xml
@@ -2,10 +2,10 @@
DW Media ProbeWhat is News Media Scan?
- Your app for measuring internet censorship. \n\nAre websites and social media apps blocked? Is your internet connection unusually slow?\n\nRun News Media Scan to find out!
- Measurement data is openly published by OONI and will include your network information.
- Anyone monitoring your internet connection will be able to see you are running News Media Scan
- You will be testing news websites which might be banned in your country
+ Are news sites and social media apps blocked?\nIs your Internet connection unusually slow? \n\nRun News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public list by Github and not curated by DW. It represents an objective range of international and national news media providers.
+ OONI will openly publish the measurement data you send, along with your network information.
+ Anyone monitoring your Internet connection will be able to see you are running News Media Scan.
+ You will be testing news websites that might be banned in the country where you currently find yourself.To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically. \n\nDon\’t worry, we\’ll be mindful of battery usage. \n\nYou can disable automated testing from the settings at any time.\n\nTo improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?If someone is monitoring my internet activity, they will see that I am running News Media Scan.
@@ -14,7 +14,7 @@
To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).About News Media ScanBackend proxy
- What is News Media Scan? Your app for measuring internet censorship. \n\nAre websites and social media apps blocked? Is your internet connection unusually slow? \n\nRun News Media Scan to find out!
+ This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n _About DW:_ Unbiased information for free minds – that is the DW brand promise. As an independent media company, Germany’s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media.\n\n Further information: [About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n _About OONI:_ is a non-profit free software project related to the Tor project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to our global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you’re using.News Media Websites
diff --git a/app/src/main/java/org/openobservatory/ooniprobe/activity/InfoActivity.java b/app/src/main/java/org/openobservatory/ooniprobe/activity/InfoActivity.java
index 3a75eace3..2e0d9ea44 100644
--- a/app/src/main/java/org/openobservatory/ooniprobe/activity/InfoActivity.java
+++ b/app/src/main/java/org/openobservatory/ooniprobe/activity/InfoActivity.java
@@ -14,10 +14,12 @@
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
+import ru.noties.markwon.Markwon;
public class InfoActivity extends AbstractActivity {
@BindView(R.id.toolbar) Toolbar toolbar;
@BindView(R.id.version) TextView version;
+ @BindView(R.id.desc) TextView description;
@Override protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
@@ -26,6 +28,7 @@ public class InfoActivity extends AbstractActivity {
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
version.setText(getString(R.string.version, BuildConfig.SOFTWARE_NAME, BuildConfig.VERSION_NAME));
+ Markwon.setMarkdown(description, getString(R.string.Settings_About_Content_Paragraph));
}
@OnClick(R.id.blog) void onBlogClick() {
diff --git a/app/src/main/res/layout/activity_info.xml b/app/src/main/res/layout/activity_info.xml
index cd55d2700..0a69f8b0d 100644
--- a/app/src/main/res/layout/activity_info.xml
+++ b/app/src/main/res/layout/activity_info.xml
@@ -46,6 +46,7 @@
app:layout_behavior="@string/appbar_scrolling_view_behavior">