Commit bfcbe0a5 authored by David Fuhrmann's avatar David Fuhrmann

macosx: CAS: Fix 2 more label l10n with missing outlets

parent 7d502e3b
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -120,9 +120,11 @@ ...@@ -120,9 +120,11 @@
@property (weak) IBOutlet NSTextField *streamPortField; @property (weak) IBOutlet NSTextField *streamPortField;
@property (weak) IBOutlet NSTextField *streamAnnouncementLabel; @property (weak) IBOutlet NSTextField *streamAnnouncementLabel;
@property (weak) IBOutlet NSButton *streamSAPCheckbox; @property (weak) IBOutlet NSButton *streamSAPCheckbox;
@property (weak) IBOutlet NSTextField *streamChannelLabel;
@property (weak) IBOutlet NSTextField *streamChannelField; @property (weak) IBOutlet NSTextField *streamChannelField;
@property (weak) IBOutlet NSMatrix *streamSDPMatrix; @property (weak) IBOutlet NSMatrix *streamSDPMatrix;
@property (weak) IBOutlet NSButton *streamSDPFileBrowseButton; @property (weak) IBOutlet NSButton *streamSDPFileBrowseButton;
@property (weak) IBOutlet NSTextField *streamSDPLabel;
@property (weak) IBOutlet NSTextField *streamSDPField; @property (weak) IBOutlet NSTextField *streamSDPField;
@property (weak) IBOutlet NSButton *streamCancelButton; @property (weak) IBOutlet NSButton *streamCancelButton;
@property (weak) IBOutlet NSButton *streamOkButton; @property (weak) IBOutlet NSButton *streamOkButton;
......
...@@ -193,6 +193,8 @@ ...@@ -193,6 +193,8 @@
[_streamSAPCheckbox setState:NSOffState]; [_streamSAPCheckbox setState:NSOffState];
[_streamSDPMatrix setEnabled:NO]; [_streamSDPMatrix setEnabled:NO];
[_streamSDPFileBrowseButton setStringValue:_NS("Browse...")]; [_streamSDPFileBrowseButton setStringValue:_NS("Browse...")];
[_streamChannelLabel setStringValue:_NS("Channel Name")];
[_streamSDPLabel setStringValue:_NS("SDP URL")];
/* there is no way to hide single cells, so replace the existing ones with empty cells.. */ /* there is no way to hide single cells, so replace the existing ones with empty cells.. */
id blankCell = [[NSCell alloc] init]; id blankCell = [[NSCell alloc] init];
......
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