Updated strings to better match the material design "writing" guidelines
This commit is contained in:
parent
3f83128161
commit
48337bb7da
28 changed files with 232 additions and 408 deletions
|
|
@ -23,8 +23,6 @@ public class PlayingQueueDialog extends LeakDetectDialogFragment {
|
|||
|
||||
public static PlayingQueueDialog create() {
|
||||
final ArrayList<Song> playingQueue = MusicPlayerRemote.getPlayingQueue();
|
||||
if (playingQueue.isEmpty())
|
||||
return null;
|
||||
PlayingQueueDialog dialog = new PlayingQueueDialog();
|
||||
Bundle args = new Bundle();
|
||||
args.putSerializable("queue", playingQueue);
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public class SongShareDialog extends LeakDetectDialogFragment {
|
|||
final String currentlyListening = getString(R.string.currently_listening_to_x_by_x, song.title, song.artistName);
|
||||
return new MaterialDialog.Builder(getActivity())
|
||||
.title(R.string.what_do_you_want_to_share)
|
||||
.items(new CharSequence[]{getString(R.string.the_audio_file), currentlyListening})
|
||||
.items(new CharSequence[]{getString(R.string.the_audio_file), "\u201C" + currentlyListening + "\u201D"})
|
||||
.itemsCallback(new MaterialDialog.ListCallback() {
|
||||
@Override
|
||||
public void onSelection(MaterialDialog materialDialog, View view, int i, CharSequence charSequence) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue