aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Knepper <thknepper@gmx.de>2014-04-09 11:17:53 +0200
committerThomas Knepper <thknepper@gmx.de>2014-04-09 11:17:53 +0200
commit1f8ad0577fcab7cd6a4b43b6935ec4f3d5dbf884 (patch)
tree37e51646828d6e4acad3fccdcd911e5e02606be6 /src
parent035d49df7ee3c9947e48f5c552618fd67d4bd990 (diff)
downloaddsub-1f8ad0577fcab7cd6a4b43b6935ec4f3d5dbf884.tar.gz
dsub-1f8ad0577fcab7cd6a4b43b6935ec4f3d5dbf884.tar.bz2
dsub-1f8ad0577fcab7cd6a4b43b6935ec4f3d5dbf884.zip
Revert "Use resource string instead of hard code"
This reverts commit 8d31d2edebd352b12693914516351399ae3f965d.
Diffstat (limited to 'src')
-rw-r--r--src/github/daneren2005/dsub/fragments/DownloadFragment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/github/daneren2005/dsub/fragments/DownloadFragment.java b/src/github/daneren2005/dsub/fragments/DownloadFragment.java
index ec75af80..bc30eb02 100644
--- a/src/github/daneren2005/dsub/fragments/DownloadFragment.java
+++ b/src/github/daneren2005/dsub/fragments/DownloadFragment.java
@@ -146,7 +146,7 @@ public class DownloadFragment extends SubsonicFragment implements OnGestureListe
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) {
rootView = inflater.inflate(R.layout.download, container, false);
- setTitle(nowPlaying ? R.string.download_title_now_playing : R.string.download_title_downloading);
+ setTitle(nowPlaying ? "Now Playing" : "Downloading");
mainLayout = rootView.findViewById(R.id.download_layout);
if(!primaryFragment) {
@@ -1403,7 +1403,7 @@ public class DownloadFragment extends SubsonicFragment implements OnGestureListe
private void toggleNowPlaying() {
nowPlaying = !nowPlaying;
- setTitle(nowPlaying ? R.string.download_title_now_playing : R.string.download_title_downloading);
+ setTitle(nowPlaying ? "Now Playing" : "Downloading");
onDownloadListChanged(true);
}