mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
02d94a303c
Corrects a slew of titles, buttons, labels, menu items and status bars for capitalization, ellipses and punctuation. Rewords a few actions and dialogs to use uniform language and punctuation.
71 lines
1.3 KiB
Plaintext
71 lines
1.3 KiB
Plaintext
@GUI::Frame {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
spacing: 4
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Board size:"
|
|
text_alignment: "CenterLeft"
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "board_size_spinbox"
|
|
max: 100
|
|
min: 2
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
spacing: 4
|
|
}
|
|
|
|
@GUI::Label {
|
|
text: "Target tile:"
|
|
text_alignment: "CenterLeft"
|
|
}
|
|
|
|
@GUI::Label {
|
|
name: "tile_value_label"
|
|
text_alignment: "CenterRight"
|
|
}
|
|
|
|
@GUI::SpinBox {
|
|
name: "target_spinbox"
|
|
min: 3
|
|
}
|
|
}
|
|
|
|
@GUI::CheckBox {
|
|
name: "evil_ai_checkbox"
|
|
text: "Evil AI"
|
|
}
|
|
|
|
@GUI::CheckBox {
|
|
name: "temporary_checkbox"
|
|
text: "Temporarily apply changes"
|
|
}
|
|
|
|
@GUI::Widget {
|
|
layout: @GUI::HorizontalBoxLayout {
|
|
spacing: 10
|
|
}
|
|
|
|
@GUI::Button {
|
|
name: "cancel_button"
|
|
text: "Cancel"
|
|
}
|
|
|
|
@GUI::Button {
|
|
name: "ok_button"
|
|
text: "OK"
|
|
}
|
|
}
|
|
}
|