mirror of
				https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
				synced 2025-11-03 09:01:50 -05:00 
			
		
		
		
	i18n: Do not translate strings that cannot have any sensible translations.
This commit is contained in:
		
							parent
							
								
									e1a699c394
								
							
						
					
					
						commit
						0e1f1d6444
					
				
					 3 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -2525,10 +2525,10 @@ static pa_bool_t element_create_settings(pa_alsa_element *e, pa_alsa_setting *te
 | 
			
		|||
        if (template) {
 | 
			
		||||
            s = pa_xnewdup(pa_alsa_setting, template, 1);
 | 
			
		||||
            s->options = pa_idxset_copy(template->options);
 | 
			
		||||
            s->name = pa_sprintf_malloc(_("%s+%s"), template->name, o->name);
 | 
			
		||||
            s->name = pa_sprintf_malloc("%s+%s", template->name, o->name);
 | 
			
		||||
            s->description =
 | 
			
		||||
                (template->description[0] && o->description[0])
 | 
			
		||||
                ? pa_sprintf_malloc(_("%s / %s"), template->description, o->description)
 | 
			
		||||
                ? pa_sprintf_malloc("%s / %s", template->description, o->description)
 | 
			
		||||
                : (template->description[0]
 | 
			
		||||
                   ? pa_xstrdup(template->description)
 | 
			
		||||
                   : pa_xstrdup(o->description));
 | 
			
		||||
| 
						 | 
				
			
			@ -4418,7 +4418,7 @@ void pa_alsa_path_set_add_ports(
 | 
			
		|||
                n = pa_sprintf_malloc("%s;%s", path->name, s->name);
 | 
			
		||||
 | 
			
		||||
                if (s->description[0])
 | 
			
		||||
                    d = pa_sprintf_malloc(_("%s / %s"), path->description, s->description);
 | 
			
		||||
                    d = pa_sprintf_malloc("%s / %s", path->description, s->description);
 | 
			
		||||
                else
 | 
			
		||||
                    d = pa_xstrdup(path->description);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -882,7 +882,7 @@ pa_bool_t pa_alsa_init_description(pa_proplist *p) {
 | 
			
		|||
    k = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_DESCRIPTION);
 | 
			
		||||
 | 
			
		||||
    if (d && k)
 | 
			
		||||
        pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, _("%s %s"), d, k);
 | 
			
		||||
        pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, "%s %s", d, k);
 | 
			
		||||
    else if (d)
 | 
			
		||||
        pa_proplist_sets(p, PA_PROP_DEVICE_DESCRIPTION, d);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -3362,7 +3362,7 @@ pa_bool_t pa_device_init_description(pa_proplist *p) {
 | 
			
		|||
    k = pa_proplist_gets(p, PA_PROP_DEVICE_PROFILE_DESCRIPTION);
 | 
			
		||||
 | 
			
		||||
    if (d && k)
 | 
			
		||||
        pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, _("%s %s"), d, k);
 | 
			
		||||
        pa_proplist_setf(p, PA_PROP_DEVICE_DESCRIPTION, "%s %s", d, k);
 | 
			
		||||
    else if (d)
 | 
			
		||||
        pa_proplist_sets(p, PA_PROP_DEVICE_DESCRIPTION, d);
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue