Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/StringHelper.java

Issue 29346676: Issue 3766 - Restore default ABP bookmarks (Closed)
Patch Set: Including file removal Created June 20, 2016, 9:20 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mobile/android/base/strings.xml.in ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/StringHelper.java
===================================================================
--- a/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/StringHelper.java
+++ b/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/tests/StringHelper.java
@@ -297,29 +297,31 @@ public class StringHelper {
private StringHelper(final Resources res) {
OK = res.getString(R.string.button_ok);
CANCEL = res.getString(R.string.button_cancel);
CLEAR = res.getString(R.string.button_clear);
// Note: DEFAULT_BOOKMARKS_TITLES.length == DEFAULT_BOOKMARKS_URLS.length
DEFAULT_BOOKMARKS_TITLES = new String[] {
- res.getString(R.string.bookmarkdefaults_title_aboutfirefox),
- res.getString(R.string.bookmarkdefaults_title_adblockplus),
- res.getString(R.string.bookmarkdefaults_title_acceptableads)
+ res.getString(R.string.bookmarkdefaults_title_about_browser),
+ res.getString(R.string.bookmarkdefaults_title_adblock_plus),
+ res.getString(R.string.bookmarkdefaults_title_acceptable_ads),
+ res.getString(R.string.bookmarkdefaults_title_beta_community)
};
DEFAULT_BOOKMARKS_URLS = new String[] {
- res.getString(R.string.bookmarkdefaults_url_aboutfirefox),
- res.getString(R.string.bookmarkdefaults_url_adblockplus),
- res.getString(R.string.bookmarkdefaults_url_acceptableads)
+ res.getString(R.string.bookmarkdefaults_url_about_browser),
+ res.getString(R.string.bookmarkdefaults_url_adblock_plus),
+ res.getString(R.string.bookmarkdefaults_url_acceptable_ads),
+ res.getString(R.string.bookmarkdefaults_url_beta_community)
};
DEFAULT_BOOKMARKS_COUNT = DEFAULT_BOOKMARKS_TITLES.length;
// About pages
- ABOUT_FIREFOX_URL = res.getString(R.string.bookmarkdefaults_url_aboutfirefox);
+ ABOUT_FIREFOX_URL = res.getString(R.string.bookmarkdefaults_url_about_browser);
// Context Menu item strings
CONTEXT_MENU_OPEN_IN_NEW_TAB = res.getString(R.string.contextmenu_open_new_tab);
CONTEXT_MENU_OPEN_IN_PRIVATE_TAB = res.getString(R.string.contextmenu_open_private_tab);
CONTEXT_MENU_EDIT = res.getString(R.string.contextmenu_top_sites_edit);
CONTEXT_MENU_SHARE = res.getString(R.string.contextmenu_share);
CONTEXT_MENU_REMOVE = res.getString(R.string.contextmenu_remove);
CONTEXT_MENU_COPY_ADDRESS = res.getString(R.string.contextmenu_copyurl);
« no previous file with comments | « mobile/android/base/strings.xml.in ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld