File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
Voice Control For Plex/src/main Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -188,11 +188,6 @@ private boolean hasValidUtter() {
188
188
return false ;
189
189
}
190
190
191
-
192
-
193
-
194
-
195
-
196
191
public void resumeChecked (View v ) {
197
192
mPrefsEditor .putBoolean ("resume" , ((CheckBox )v ).isChecked ());
198
193
mPrefsEditor .commit ();
@@ -530,7 +525,7 @@ private void saveSettings() {
530
525
public boolean onCreateOptionsMenu (Menu _menu ) {
531
526
// Inflate the menu; this adds items to the action bar if it is present.
532
527
getMenuInflater ().inflate (R .menu .menu_main , _menu );
533
- if (!hasValidAutoVoice () || !hasValidUtter ()) {
528
+ if (!hasValidAutoVoice () && !hasValidUtter ()) {
534
529
_menu .findItem (R .id .menu_tasker_import ).setVisible (false );
535
530
if (!hasValidTasker ()) {
536
531
_menu .findItem (R .id .menu_install_tasker ).setVisible (true );
Original file line number Diff line number Diff line change @@ -707,7 +707,7 @@ public void onFailure(Throwable error) {
707
707
708
708
private void onFinishedNextEpisodeSearch (String queryTerm ) {
709
709
if (videos .size () == 0 ) {
710
- feedback .e (getResources ().getString (R .string .couldnt_find_next ), queryTerm );
710
+ feedback .e (getResources ().getString (R .string .couldnt_find_next ), queryTerm , queryTerm );
711
711
return ;
712
712
} else {
713
713
if (videos .size () == 1 )
Original file line number Diff line number Diff line change 52
52
<string name =" couldnt_find_episode" >Sorry, I couldn\'t find the episode you specified.</string >
53
53
<string name =" found_more_than_one_show" >Sorry, I found more than one matching show. Please be more specific.</string >
54
54
<string name =" couldnt_find" >Sorry, I couldn\'t find %s.</string >
55
- <string name =" couldnt_find_next" >Sorry, I couldn\'t find %s, or else no episodes for Fargo are on deck.</string >
55
+ <string name =" couldnt_find_next" >Sorry, I couldn\'t find %1$ s, or else no episodes for %2$s are on deck.</string >
56
56
<string name =" couldnt_find_season" >Sorry, I couldn\'t find that season.</string >
57
57
<string name =" found_more_than_one_movie" >I found more than one matching movie. Please be more specific.</string >
58
58
<string name =" now_watching_video" >Now watching %1$s on %2$s.</string >
You can’t perform that action at this time.
0 commit comments