diff options
author | Damiano Galassi <[email protected]> | 2018-06-09 10:06:52 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2018-06-09 10:06:52 +0200 |
commit | 041d228b23f622ee86a528f8c667e048503c226e (patch) | |
tree | 31e2a6e0422acd1765c68f78a2209d6014bb186f /macosx/HBPlayerHUDController.m | |
parent | 047c78c7946aeba026a259c1a9cad8937975115b (diff) |
MacGui: improve NSLocalizedString comments.
Diffstat (limited to 'macosx/HBPlayerHUDController.m')
-rw-r--r-- | macosx/HBPlayerHUDController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPlayerHUDController.m b/macosx/HBPlayerHUDController.m index 98ab96fa5..b3b391cbd 100644 --- a/macosx/HBPlayerHUDController.m +++ b/macosx/HBPlayerHUDController.m @@ -119,7 +119,7 @@ NSArray<HBPlayerTrack *> *audioTracks = self.player.audioTracks; if (audioTracks.count) { - [self _addSectionTitle:NSLocalizedString(@"Audio", nil)]; + [self _addSectionTitle:NSLocalizedString(@"Audio", @"Player HUD -> audio menu")]; [self _addTracksItemFromArray:audioTracks selector:@selector(enableAudioTrack:)]; } @@ -130,7 +130,7 @@ { [self.tracksSelection.menu addItem:[NSMenuItem separatorItem]]; } - [self _addSectionTitle:NSLocalizedString(@"Subtitles", nil)]; + [self _addSectionTitle:NSLocalizedString(@"Subtitles", @"Player HUD -> subtitles menu")]; [self _addTracksItemFromArray:subtitlesTracks selector:@selector(enableSubtitlesTrack:)]; } } |