localize sync overlay help
This commit is contained in:
@@ -1259,6 +1259,11 @@ Song offset from %+.3f to %+.3f (notes %s)=Song offset from %+.3f to %+.3f (note
|
|||||||
Sync changes reverted.=Sync changes reverted.
|
Sync changes reverted.=Sync changes reverted.
|
||||||
earlier=earlier
|
earlier=earlier
|
||||||
later=later
|
later=later
|
||||||
|
Revert sync changes=Revert sync changes
|
||||||
|
Current BPM - smaller/larger=Current BPM - smaller/larger
|
||||||
|
Song offset - notes earlier/later=Song offset - notes earlier/later
|
||||||
|
Machine offset - notes earlier/later=Machine offset - notes earlier/later
|
||||||
|
(hold Alt for smaller increment)=(hold Alt for smaller increment)
|
||||||
|
|
||||||
[ScreenSystemLayer]
|
[ScreenSystemLayer]
|
||||||
CreditsCardChanged=CARD SWITCHED
|
CreditsCardChanged=CARD SWITCHED
|
||||||
@@ -1605,3 +1610,4 @@ Delete beat and shift up=Delete beat and shift up
|
|||||||
Shift BPM changes and stops up one beat=Shift BPM changes and stops up one beat
|
Shift BPM changes and stops up one beat=Shift BPM changes and stops up one beat
|
||||||
Lay mine=Lay mine
|
Lay mine=Lay mine
|
||||||
Add to/remove from right half=Add to/remove from right half
|
Add to/remove from right half=Add to/remove from right half
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,12 @@ static bool IsGameplay()
|
|||||||
|
|
||||||
REGISTER_SCREEN_CLASS( ScreenSyncOverlay );
|
REGISTER_SCREEN_CLASS( ScreenSyncOverlay );
|
||||||
|
|
||||||
|
static LocalizedString REVERT_SYNC_CHANGES ( "ScreenSyncOverlay", "Revert sync changes" );
|
||||||
|
static LocalizedString CURRENT_BPM ( "ScreenSyncOverlay", "Current BPM - smaller/larger" );
|
||||||
|
static LocalizedString SONG_OFFSET ( "ScreenSyncOverlay", "Song offset - notes earlier/later" );
|
||||||
|
static LocalizedString MACHINE_OFFSET ( "ScreenSyncOverlay", "Machine offset - notes earlier/later" );
|
||||||
|
static LocalizedString HOLD_ALT ( "ScreenSyncOverlay", "(hold Alt for smaller increment)" );
|
||||||
|
|
||||||
void ScreenSyncOverlay::Init()
|
void ScreenSyncOverlay::Init()
|
||||||
{
|
{
|
||||||
Screen::Init();
|
Screen::Init();
|
||||||
@@ -32,15 +38,15 @@ void ScreenSyncOverlay::Init()
|
|||||||
m_textHelp.SetZoom( 0.6f );
|
m_textHelp.SetZoom( 0.6f );
|
||||||
m_textHelp.SetShadowLength( 2 );
|
m_textHelp.SetShadowLength( 2 );
|
||||||
m_textHelp.SetText(
|
m_textHelp.SetText(
|
||||||
"Revert sync changes:\n"
|
REVERT_SYNC_CHANGES.GetValue()+":\n"
|
||||||
" F4\n"
|
" F4\n" +
|
||||||
"Current BPM - smaller/larger:\n"
|
CURRENT_BPM.GetValue()+":\n"
|
||||||
" F9/F10\n"
|
" F9/F10\n" +
|
||||||
"Song offset - notes earlier/later:\n"
|
CURRENT_BPM.GetValue()+":\n"
|
||||||
" F11/F12\n"
|
" F11/F12\n" +
|
||||||
"Machine offset - notes earlier/later:\n"
|
MACHINE_OFFSET.GetValue()+":\n"
|
||||||
" Shift + F11/F12\n"
|
" Shift + F11/F12\n" +
|
||||||
"(hold Alt for smaller increment)" );
|
HOLD_ALT.GetValue() );
|
||||||
this->AddChild( &m_textHelp );
|
this->AddChild( &m_textHelp );
|
||||||
|
|
||||||
m_quad.ZoomToWidth( m_textHelp.GetZoomedWidth()+20 );
|
m_quad.ZoomToWidth( m_textHelp.GetZoomedWidth()+20 );
|
||||||
|
|||||||
Reference in New Issue
Block a user