aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java')
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
index 4624864..d327ca9 100644
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
+++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
@@ -50,7 +50,7 @@ public class AboutFragment extends Fragment {
aboutButton = getActivity().findViewById(R.id.about_button);
toolbar = getActivity().findViewById(R.id.toolbar);
- toolbar.setTitle("About Wiimmfi Watcher");
+ toolbar.setTitle(R.string.about_fragment_title);
TextView aboutWatcher = view.findViewById(R.id.about_watcher_text);
TextView aboutMe = view.findViewById(R.id.about_me_text);
@@ -94,7 +94,7 @@ public class AboutFragment extends Fragment {
public void onResume() {
super.onResume();
aboutButton.setVisibility(View.INVISIBLE);
- toolbar.setTitle("About Wiimmfi Watcher");
+ toolbar.setTitle(R.string.about_fragment_title);
}
}