mirror of https://github.com/odrling/Aegisub
Make "Untitled" and "untitled" translateable, updates #792.
Originally committed to SVN as r3761.
This commit is contained in:
parent
cd4905fe34
commit
3c75547292
|
@ -914,7 +914,7 @@ void FrameMain::UpdateTitle() {
|
|||
wxFileName file (AssFile::top->filename);
|
||||
newTitle << file.GetFullName();
|
||||
}
|
||||
else newTitle << _T("Untitled");
|
||||
else newTitle << _("Untitled");
|
||||
newTitle << _T(" - Aegisub ") << GetAegisubLongVersionString();
|
||||
#else
|
||||
// Apple HIG says "untitled" should not be capitalised
|
||||
|
@ -924,7 +924,7 @@ void FrameMain::UpdateTitle() {
|
|||
wxFileName file (AssFile::top->filename);
|
||||
newTitle << file.GetFullName();
|
||||
}
|
||||
else newTitle << _T("untitled");
|
||||
else newTitle << _("untitled");
|
||||
#endif
|
||||
|
||||
#ifdef __WXMAC__
|
||||
|
|
Loading…
Reference in New Issue