diff options
author | Damiano Galassi <[email protected]> | 2018-07-11 09:06:12 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2018-07-11 09:06:12 +0200 |
commit | cd26253e5adcaa0a0c7ee7d9067f6d2d1d2f4112 (patch) | |
tree | 801231c5888a8d2f9e417231c8c36dec5378e48c | |
parent | f2ce3838e9dbc1e6cffb3db875be723fd88cdbd3 (diff) |
MacGui: make it possible to localise the default chapters titles.
-rw-r--r-- | macosx/HBTitle.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBTitle.m b/macosx/HBTitle.m index 36508643b..e718624a7 100644 --- a/macosx/HBTitle.m +++ b/macosx/HBTitle.m @@ -291,7 +291,7 @@ extern NSString *keySubTrackType; } else { - title = [NSString stringWithFormat:@"Chapter %d", i + 1]; + title = [NSString stringWithFormat:NSLocalizedString(@"Chapter %d", "Title -> chapter name"), i + 1]; } [chapters addObject:[[HBChapter alloc] initWithTitle:title |