[vlc-devel] [PATCH 2/2] Added tooltips that explain the subtitle sync hotkeys. (WARNING : I could not test it under OSX...)
Pascal Thomet
pthomet at gmail.com
Wed Jun 4 22:24:21 CEST 2014
Dear all,
I noted all your comments and remarks, but I will need a few days before I can start work again on this.
Please bear with me, as I can only work on this during my free time (and I do not have as much as I would like, as all of us :-)
Pascal Thomet
On 04 Jun 2014, at 21:24, David Fuhrmann <david.fuhrmann at gmail.com> wrote:
>
> Am 29.05.2014 um 19:43 schrieb Pascal Thomet <pthomet at gmail.com>:
>
>> This is a proposal for a tooltip in the "Track Synchronization" window
>> on the "subtitle track sycnhronization" label and widget.
>> It explains better the use of a patch I did last year that enables to
>> set the subtitle delay easier via hotkeys.
>> ---
>> modules/gui/macosx/TrackSynchronization.m | 14 +++++++++++++-
>> modules/gui/qt4/components/extended_panels.cpp | 14 +++++++++++++-
>> 2 files changed, 26 insertions(+), 2 deletions(-)
>>
>> diff --git a/modules/gui/macosx/TrackSynchronization.m b/modules/gui/macosx/TrackSynchronization.m
>> index c0b8f3c..62101a5 100644
>> --- a/modules/gui/macosx/TrackSynchronization.m
>> +++ b/modules/gui/macosx/TrackSynchronization.m
>> @@ -65,7 +65,19 @@ static VLCTrackSynchronization *_o_sharedInstance = nil;
>> [o_sv_lbl setStringValue: _NS("Subtitles/Video")];
>> [o_sv_advance_lbl setStringValue: _NS("Subtitle track synchronization:")];
>> [[o_sv_advance_value_fld formatter] setFormat:[NSString stringWithFormat:@"#,##0.000 %@", _NS("s")]];
>> - [o_sv_advance_value_fld setToolTip: _NS("A positive value means that the subtitles are ahead of the video")];
>> + [o_sv_advance_value_fld setToolTip:
>> + _NS(
>> + "A positive value means that the subtitles are ahead of the video\n"
>> + "\n"\
>> + "In order to set the subtitle track synchronization delay easily, \n"\
>> + "you can use the hotkeys :\n"\
>> + "\n"\
>> + "* Shift-H (audio bookmark)\n"\
>> + "* Shift-J (subtitle bookmark) \n"\
>> + "* Shift-K (sync bookmarks)\n"\
>> + "\n"\
>> + "(Use these hotkeys directly on the video)\n"
>> + ];
>> [o_sv_speed_lbl setStringValue: _NS("Subtitle speed:")];
>> [[o_sv_speed_value_fld formatter] setFormat:[NSString stringWithFormat:@"#,##0.000 %@", _NS("fps")]];
>> [o_sv_dur_lbl setStringValue: _NS("Subtitle duration factor:")];
>> diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
>> index 84d16ae..2d04c9d 100644
>> --- a/modules/gui/qt4/components/extended_panels.cpp
>> +++ b/modules/gui/qt4/components/extended_panels.cpp
>> @@ -1475,7 +1475,19 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
>>
>> subsSpin = new SyncWidget( this );
>> subsLayout->addWidget( subsSpin, 0, 2, 1, 1 );
>> -
>> + QString subsSpin_Tooltip = qtr(
>> + "In order to set the subtitle track synchronization delay easily, \n"\
>> + "you can use the hotkeys :\n"\
>> + "\n"\
>> + "* Shift-H (audio bookmark)\n"\
>> + "* Shift-J (subtitle bookmark) \n"\
>> + "* Shift-K (sync bookmarks)\n"\
>> + "\n"\
>> + "(Use these hotkeys directly on the video)\n"
>> + );
>> + subsSpin->setToolTip(subsSpin_Tooltip);
>> + subsLabel->setToolTip(subsSpin_Tooltip);
>> +
>> QLabel *subSpeedLabel = new QLabel;
>> subSpeedLabel->setText( qtr( "Subtitle speed:" ) );
>> subsLayout->addWidget( subSpeedLabel, 1, 0, 1, 1 );
>> —
>
> Hi,
>
> I think the same string should be used for qt and mac, to ease the translation.
>
> With best regards,
> David
>
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel
More information about the vlc-devel
mailing list