mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	pacat: Fix partially translated message
The word "not" was not translated. BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=76529
This commit is contained in:
		
							parent
							
								
									cd13fb368d
								
							
						
					
					
						commit
						568702f44e
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -356,10 +356,10 @@ static void stream_state_callback(pa_stream *s, void *userdata) {
 | 
				
			||||||
                        pa_sample_spec_snprint(sst, sizeof(sst), pa_stream_get_sample_spec(s)),
 | 
					                        pa_sample_spec_snprint(sst, sizeof(sst), pa_stream_get_sample_spec(s)),
 | 
				
			||||||
                        pa_channel_map_snprint(cmt, sizeof(cmt), pa_stream_get_channel_map(s)));
 | 
					                        pa_channel_map_snprint(cmt, sizeof(cmt), pa_stream_get_channel_map(s)));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                pa_log(_("Connected to device %s (%u, %ssuspended)."),
 | 
					                pa_log(_("Connected to device %s (index: %u, suspended: %s)."),
 | 
				
			||||||
                        pa_stream_get_device_name(s),
 | 
					                        pa_stream_get_device_name(s),
 | 
				
			||||||
                        pa_stream_get_device_index(s),
 | 
					                        pa_stream_get_device_index(s),
 | 
				
			||||||
                        pa_stream_is_suspended(s) ? "" : "not ");
 | 
					                        pa_yes_no(pa_stream_is_suspended(s)));
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            break;
 | 
					            break;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue