aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-05-23 18:03:25 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-05-23 18:03:25 -0600
commitd876fae0b4a968f66777be7342ed9af7f6676ebc (patch)
tree876b5657ff15a699ec7ffd2319eea064819f2a70 /app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
parentd5f791b4cb0c970efc3d809b0375e3c57094154e (diff)
downloadwiimmfi-watcher-d876fae0b4a968f66777be7342ed9af7f6676ebc.tar
wiimmfi-watcher-d876fae0b4a968f66777be7342ed9af7f6676ebc.tar.gz
wiimmfi-watcher-d876fae0b4a968f66777be7342ed9af7f6676ebc.tar.bz2
added german
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);
}
}