mirror of https://github.com/odrling/Aegisub
Use "color" in all UI strings
Previously there were 29 instances of "color" and 9 of "colour". Originally committed to SVN as r6648.
This commit is contained in:
parent
b11e3d7f3a
commit
4bb707d663
|
@ -608,7 +608,7 @@ struct video_open_dummy : public Command {
|
||||||
CMD_NAME("video/open/dummy")
|
CMD_NAME("video/open/dummy")
|
||||||
STR_MENU("&Use Dummy Video...")
|
STR_MENU("&Use Dummy Video...")
|
||||||
STR_DISP("Use Dummy Video")
|
STR_DISP("Use Dummy Video")
|
||||||
STR_HELP("Opens a video clip with solid colour")
|
STR_HELP("Opens a video clip with solid color")
|
||||||
|
|
||||||
void operator()(agi::Context *c) {
|
void operator()(agi::Context *c) {
|
||||||
wxString fn;
|
wxString fn;
|
||||||
|
|
|
@ -652,7 +652,7 @@ static wxBitmap *make_rgb_image(int width, int offset) {
|
||||||
}
|
}
|
||||||
|
|
||||||
DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color, ColorCallback callback, void* userdata)
|
DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color, ColorCallback callback, void* userdata)
|
||||||
: wxDialog(parent, -1, _("Select Colour"))
|
: wxDialog(parent, -1, _("Select Color"))
|
||||||
, callback(callback)
|
, callback(callback)
|
||||||
, callbackUserdata(userdata)
|
, callbackUserdata(userdata)
|
||||||
{
|
{
|
||||||
|
@ -685,7 +685,7 @@ DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color, C
|
||||||
hsv_slider = new wxBitmap(sliderimg);
|
hsv_slider = new wxBitmap(sliderimg);
|
||||||
|
|
||||||
// Create the controls for the dialog
|
// Create the controls for the dialog
|
||||||
wxSizer *spectrum_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Colour spectrum"));
|
wxSizer *spectrum_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Color spectrum"));
|
||||||
spectrum = new ColorPickerSpectrum(this, ColorPickerSpectrum::HorzVert, wxSize(256, 256));
|
spectrum = new ColorPickerSpectrum(this, ColorPickerSpectrum::HorzVert, wxSize(256, 256));
|
||||||
slider = new ColorPickerSpectrum(this, ColorPickerSpectrum::Vert, wxSize(slider_width, 256));
|
slider = new ColorPickerSpectrum(this, ColorPickerSpectrum::Vert, wxSize(slider_width, 256));
|
||||||
wxString modes[] = { _("RGB/R"), _("RGB/G"), _("RGB/B"), _("HSL/L"), _("HSV/H") };
|
wxString modes[] = { _("RGB/R"), _("RGB/G"), _("RGB/B"), _("HSL/L"), _("HSV/H") };
|
||||||
|
@ -694,9 +694,9 @@ DialogColorPicker::DialogColorPicker(wxWindow *parent, wxColour initial_color, C
|
||||||
wxSize colorinput_size(70, -1);
|
wxSize colorinput_size(70, -1);
|
||||||
wxSize colorinput_labelsize(40, -1);
|
wxSize colorinput_labelsize(40, -1);
|
||||||
|
|
||||||
wxSizer *rgb_box = new wxStaticBoxSizer(wxHORIZONTAL, this, _("RGB colour"));
|
wxSizer *rgb_box = new wxStaticBoxSizer(wxHORIZONTAL, this, _("RGB color"));
|
||||||
wxSizer *hsl_box = new wxStaticBoxSizer(wxVERTICAL, this, _("HSL colour"));
|
wxSizer *hsl_box = new wxStaticBoxSizer(wxVERTICAL, this, _("HSL color"));
|
||||||
wxSizer *hsv_box = new wxStaticBoxSizer(wxVERTICAL, this, _("HSV colour"));
|
wxSizer *hsv_box = new wxStaticBoxSizer(wxVERTICAL, this, _("HSV color"));
|
||||||
for (int i = 0; i < 3; ++i) {
|
for (int i = 0; i < 3; ++i) {
|
||||||
rgb_input[i] = new wxSpinCtrl(this, -1, "", wxDefaultPosition, colorinput_size, wxSP_ARROW_KEYS, 0, 255);
|
rgb_input[i] = new wxSpinCtrl(this, -1, "", wxDefaultPosition, colorinput_size, wxSP_ARROW_KEYS, 0, 255);
|
||||||
hsl_input[i] = new wxSpinCtrl(this, -1, "", wxDefaultPosition, colorinput_size, wxSP_ARROW_KEYS, 0, 255);
|
hsl_input[i] = new wxSpinCtrl(this, -1, "", wxDefaultPosition, colorinput_size, wxSP_ARROW_KEYS, 0, 255);
|
||||||
|
|
|
@ -182,7 +182,7 @@ DialogDummyVideo::DialogDummyVideo(wxWindow *parent)
|
||||||
res_sizer->Add(new wxStaticText(this, -1, " x "), 0, wxALIGN_CENTRE_VERTICAL|wxFIXED_MINSIZE);
|
res_sizer->Add(new wxStaticText(this, -1, " x "), 0, wxALIGN_CENTRE_VERTICAL|wxFIXED_MINSIZE);
|
||||||
res_sizer->Add(height, 0, wxEXPAND);
|
res_sizer->Add(height, 0, wxEXPAND);
|
||||||
fg->Add(res_sizer, 0, wxEXPAND);
|
fg->Add(res_sizer, 0, wxEXPAND);
|
||||||
fg->Add(new wxStaticText(this, -1, _("Colour:")), 0, wxALIGN_CENTRE_VERTICAL);
|
fg->Add(new wxStaticText(this, -1, _("Color:")), 0, wxALIGN_CENTRE_VERTICAL);
|
||||||
fg->Add(colour, 0, wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL);
|
fg->Add(colour, 0, wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL);
|
||||||
fg->AddStretchSpacer();
|
fg->AddStretchSpacer();
|
||||||
fg->Add(pattern, 0, wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL);
|
fg->Add(pattern, 0, wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL);
|
||||||
|
|
|
@ -342,7 +342,7 @@ DialogStyleEditor::DialogStyleEditor(wxWindow *parent, AssStyle *style, agi::Con
|
||||||
SubsPreview->SetStyle(*style);
|
SubsPreview->SetStyle(*style);
|
||||||
SubsPreview->SetText(PreviewText->GetValue());
|
SubsPreview->SetText(PreviewText->GetValue());
|
||||||
PreviewText->SetToolTip(_("Text to be used for the preview"));
|
PreviewText->SetToolTip(_("Text to be used for the preview"));
|
||||||
previewButton->SetToolTip(_("Colour of preview background"));
|
previewButton->SetToolTip(_("Color of preview background"));
|
||||||
|
|
||||||
wxSizer *PreviewBottomSizer = new wxBoxSizer(wxHORIZONTAL);
|
wxSizer *PreviewBottomSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
PreviewBottomSizer->Add(PreviewText, 1, wxEXPAND | wxRIGHT, 5);
|
PreviewBottomSizer->Add(PreviewText, 1, wxEXPAND | wxRIGHT, 5);
|
||||||
|
|
|
@ -209,7 +209,7 @@ Interface::Interface(wxTreebook *book, Preferences *parent): OptionPage(book, pa
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Interface Colours preferences subpage
|
/// Interface Colours preferences subpage
|
||||||
Interface_Colours::Interface_Colours(wxTreebook *book, Preferences *parent): OptionPage(book, parent, _("Colours"), PAGE_SCROLL|PAGE_SUB) {
|
Interface_Colours::Interface_Colours(wxTreebook *book, Preferences *parent): OptionPage(book, parent, _("Colors"), PAGE_SCROLL|PAGE_SUB) {
|
||||||
delete sizer;
|
delete sizer;
|
||||||
wxSizer *main_sizer = new wxBoxSizer(wxHORIZONTAL);
|
wxSizer *main_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue