mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00: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.
35 lines
786 B
Text
35 lines
786 B
Text
@GUI::Frame {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::CheckBox {
|
|
name: "allow_autoplay_on_all_websites_checkbox"
|
|
text: "Allow media to automatically play on all websites"
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
title: "Autoplay allowlist"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [8]
|
|
}
|
|
|
|
@GUI::ListView {
|
|
name: "allowlist_view"
|
|
}
|
|
|
|
@GUI::Widget {
|
|
fixed_height: 32
|
|
layout: @GUI::HorizontalBoxLayout {}
|
|
|
|
@GUI::Layout::Spacer {}
|
|
|
|
@GUI::Button {
|
|
name: "add_website_button"
|
|
fixed_width: 100
|
|
text: "Add Website..."
|
|
}
|
|
}
|
|
}
|
|
}
|