1
0
Fork 0

dialog_align: Remove point at the end of the tooltips

No other tooltips end with points, even if they're a sentence.These
ones aren't even sentences.
Also updates all *.po files accordingly, with an hacked in
POT-Creation-Date due to issues with make_pot.sh.
This commit is contained in:
Oneric 2020-07-16 23:04:26 +02:00 committed by arch1t3cht
parent b2ba1feb28
commit 2300988613
1 changed files with 4 additions and 4 deletions

View File

@ -105,13 +105,13 @@ namespace {
selected_color->SetColor(agi::Color(r, g, b));
});
selected_color = new ColourButton(this, wxSize(55, 16), true, agi::Color("FFFFFF"));
selected_color->SetToolTip(_("The key color to be followed."));
selected_color->SetToolTip(_("The key color to be followed"));
selected_x = new wxTextCtrl(this, -1, "0");
selected_x->SetToolTip(_("The x coord of the key point."));
selected_x->SetToolTip(_("The x coord of the key point"));
selected_y = new wxTextCtrl(this, -1, "0");
selected_y->SetToolTip(_("The y coord of the key point."));
selected_y->SetToolTip(_("The y coord of the key point"));
selected_tolerance = new wxTextCtrl(this, -1, wxString::Format(wxT("%i"), int(tolerance)));
selected_tolerance->SetToolTip(_("Max tolerance of the color."));
selected_tolerance->SetToolTip(_("Max tolerance of the color"));
selected_x->Bind(wxEVT_TEXT, &DialogAlignToVideo::update_from_textbox, this);
selected_y->Bind(wxEVT_TEXT, &DialogAlignToVideo::update_from_textbox, this);