Commit 6d044920 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

po: do not translate ""

parent edada22b
......@@ -471,7 +471,7 @@ static VLCPrefs *_o_sharedMainInstance = nil;
@implementation VLCTreePluginItem
- (id)initWithPlugin:(module_t *)plugin
{
NSString * name = _NS(module_get_name(plugin, false)?:"");
NSString * name = _NS(module_get_name(plugin, false));
if (self = [super initWithName:name]) {
_configItems = module_config_get(plugin, &_configSize);
//_plugin = plugin;
......
......@@ -400,7 +400,7 @@ static inline char * __config_GetLabel(vlc_object_t *p_this, const char *psz_nam
- (void)setupButton: (NSButton *)object forBoolValue: (const char *)name
{
[object setState: config_GetInt(p_intf, name)];
[object setToolTip: _NS(config_GetLabel(p_intf, name) ?: "")];
[object setToolTip: _NS(config_GetLabel(p_intf, name))];
}
- (void)setupField:(NSTextField *)o_object forOption:(const char *)psz_option
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment