Bug 1232868 - Update strings. r=mcomella

MozReview-Commit-ID: 3dQBkKaP6WV
This commit is contained in:
Chenxia Liu 2016-03-04 10:01:14 -08:00
parent 94b640d1b2
commit e7a8a52533
5 changed files with 6 additions and 6 deletions

View File

@ -291,7 +291,7 @@ class BookmarksListAdapter extends MultiTypeCursorAdapter {
final BookmarkFolderView row = (BookmarkFolderView) view;
if (cursor == null) {
final Resources res = context.getResources();
row.setText(res.getString(R.string.home_move_up_to_filter, mParentStack.get(1).title));
row.setText(res.getString(R.string.home_move_back_to_filter, mParentStack.get(1).title));
row.open();
} else {
row.setText(getFolderTitle(context, cursor));

View File

@ -42,7 +42,7 @@ class PanelBackItemView extends LinearLayout {
public void updateFromFilter(FilterDetail filter) {
final String backText = getResources()
.getString(R.string.home_move_up_to_filter, filter.title);
.getString(R.string.home_move_back_to_filter, filter.title);
title.setText(backText);
}
}

View File

@ -550,9 +550,9 @@ size. -->
is no data to show in an about:home panel that was created by an add-on. -->
<!ENTITY home_default_empty "No content could be found for this panel.">
<!-- Localization note (home_move_up_to_filter): The variable is replaced by the name of the
<!-- Localization note (home_back_up_to_filter): The variable is replaced by the name of the
previous location in the navigation, such as the previous folder -->
<!ENTITY home_move_up_to_filter "Up to &formatS;">
<!ENTITY home_move_back_to_filter "Back to &formatS;">
<!ENTITY home_remote_tabs_title "Synced Tabs">
<!ENTITY home_remote_tabs_empty "Your tabs from other devices show up here.">

View File

@ -451,7 +451,7 @@
<string name="home_most_recent_emptyhint">&home_most_recent_emptyhint2;</string>
<string name="home_reading_list_empty">&home_reading_list_empty;</string>
<string name="home_default_empty">&home_default_empty;</string>
<string name="home_move_up_to_filter">&home_move_up_to_filter;</string>
<string name="home_move_back_to_filter">&home_move_back_to_filter;</string>
<string name="home_remote_tabs_title">&home_remote_tabs_title;</string>
<string name="home_remote_tabs_empty">&home_remote_tabs_empty;</string>
<string name="home_remote_tabs_unable_to_connect">&home_remote_tabs_unable_to_connect;</string>

View File

@ -297,7 +297,7 @@ public class StringHelper {
READING_LIST_LABEL = res.getString(R.string.reading_list_title);
TODAY_LABEL = res.getString(R.string.history_today_section);
BOOKMARKS_UP_TO = res.getString(R.string.home_move_up_to_filter);
BOOKMARKS_UP_TO = res.getString(R.string.home_move_back_to_filter);
BOOKMARKS_ROOT_LABEL = res.getString(R.string.bookmarks_title);
DESKTOP_FOLDER_LABEL = res.getString(R.string.bookmarks_folder_desktop);
TOOLBAR_FOLDER_LABEL = res.getString(R.string.bookmarks_folder_toolbar);