Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the copy of the Experiments page #18233

Merged
merged 3 commits into from
Dec 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions lib/experiments-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function the_gutenberg_experiments() {
id="experiments-editor"
class="wrap"
>
<h1><?php echo __( 'Experiment settings', 'gutenberg' ); ?></h1>
<h1><?php echo __( 'Experimental settings', 'gutenberg' ); ?></h1>
<?php settings_errors(); ?>
<form method="post" action="options.php">
<?php settings_fields( 'gutenberg-experiments' ); ?>
Expand Down Expand Up @@ -47,7 +47,7 @@ function gutenberg_initialize_experiments_settings() {
'gutenberg-experiments',
'gutenberg_experiments_section',
array(
'label' => __( 'Enable Widgets Screen and Legacy Widget Block', 'gutenberg' ),
'label' => __( 'Enable Widgets screen and Legacy Widgets block', 'gutenberg' ),
'id' => 'gutenberg-widget-experiments',
)
);
Expand All @@ -58,7 +58,7 @@ function gutenberg_initialize_experiments_settings() {
'gutenberg-experiments',
'gutenberg_experiments_section',
array(
'label' => __( 'Enable Block Directory search', 'gutenberg' ),
'label' => __( 'Enable block directory search', 'gutenberg' ),
'id' => 'gutenberg-block-directory',
)
);
Expand All @@ -69,7 +69,7 @@ function gutenberg_initialize_experiments_settings() {
'gutenberg-experiments',
'gutenberg_experiments_section',
array(
'label' => __( 'Enable Full Site Editing', 'gutenberg' ),
'label' => __( 'Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)', 'gutenberg' ),
'id' => 'gutenberg-full-site-editing',
)
);
Expand All @@ -80,7 +80,7 @@ function gutenberg_initialize_experiments_settings() {
'gutenberg-experiments',
'gutenberg_experiments_section',
array(
'label' => __( 'Enable Full Site Editing Demo Templates', 'gutenberg' ),
'label' => __( 'Enable Full Site Editing demo templates', 'gutenberg' ),
'id' => 'gutenberg-full-site-editing-demo',
)
);
Expand All @@ -91,7 +91,7 @@ function gutenberg_initialize_experiments_settings() {
'gutenberg-experiments',
'gutenberg_experiments_section',
array(
'label' => __( 'Enable Page Templates', 'gutenberg' ),
'label' => __( 'Enable page templates', 'gutenberg' ),
'id' => 'gutenberg-page-templates',
)
);
Expand Down Expand Up @@ -128,7 +128,7 @@ function gutenberg_display_experiment_field( $args ) {
*/
function gutenberg_display_experiment_section() {
?>
<p><?php echo __( 'Gutenberg has some experimental features you can turn on. Simply select each you would like to use. These features are likely to change so it is inadvisable to use them in production.', 'gutenberg' ); ?></p>
<p><?php echo __( "The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.", 'gutenberg' ); ?></p>

<?php
}
Expand Down