61 lines
2.6 KiB
PHP
61 lines
2.6 KiB
PHP
<?php
|
|
gp_title(
|
|
sprintf(
|
|
/* translators: %s: project name */
|
|
__( 'Branch project "%s" < GlotPress', 'glotpress' ),
|
|
$project->name
|
|
)
|
|
);
|
|
gp_breadcrumb_project(
|
|
$project,
|
|
array(
|
|
__( 'Branch', 'glotpress' ),
|
|
)
|
|
);
|
|
gp_tmpl_header();
|
|
?>
|
|
<h2>
|
|
<?php
|
|
printf(
|
|
/* translators: %s: project name */
|
|
__( 'Branch project "%s"', 'glotpress' ),
|
|
esc_html( $project->name )
|
|
);
|
|
?>
|
|
</h2>
|
|
<p><?php _e( 'Here you can branch out this project: everything will be duplicated into a new project for you.', 'glotpress' ); ?></p>
|
|
<form action="<?php echo esc_url( gp_url_current() ); ?>" method="post">
|
|
<dt><label for="project[name]"><?php _e( 'New branch name', 'glotpress' ); ?></label></dt>
|
|
<dd><input type="text" name="project[name]" value="" placeholder="<?php esc_attr_e( 'Type tag project name here', 'glotpress' ); ?>" id="project[name]"></dd>
|
|
|
|
<!-- TODO: make slug edit WordPress style -->
|
|
<dt><label for="project[slug]"><?php _e( 'New Slug', 'glotpress' ); ?></label></dt>
|
|
<dd>
|
|
<input type="text" name="project[slug]" value="" id="project[slug]">
|
|
<small><?php _e( 'If you leave the slug empty, it will be derived from the name.', 'glotpress' ); ?></small>
|
|
</dd>
|
|
<dt><label for="project[description]"><?php _e( 'Description', 'glotpress' ); ?></label> <span class="ternary"><?php _e( 'can include HTML', 'glotpress' ); ?></span></dt>
|
|
<dd><textarea name="project[description]" rows="4" cols="40" id="project[description]"><?php echo esc_textarea( $project->description ); ?></textarea></dd>
|
|
<dt><label for="project[source_url_template]"><?php _e( 'Source file URL', 'glotpress' ); ?></label></dt>
|
|
<dd>
|
|
<input type="text" value="<?php echo esc_html( $project->source_url_template ); ?>" name="project[source_url_template]" id="project[source_url_template]" style="width: 30em;" />
|
|
<span class="ternary">
|
|
<?php
|
|
printf(
|
|
/* translators: 1: %file%, 2: %line%, 3: https://trac.example.org/browser/%file%#L%line% */
|
|
__( 'Public URL to a source file in the project. You can use %1$s and %2$s. Ex. %3$s', 'glotpress' ),
|
|
'<code>%file%</code>',
|
|
'<code>%line%</code>',
|
|
'<code>https://trac.example.org/browser/%file%#L%line%</code>'
|
|
);
|
|
?>
|
|
</span>
|
|
</dd>
|
|
<div id="preview"></div>
|
|
<input type="hidden" value="<?php echo esc_html( $project->parent_project_id ); ?>" name="project[parent_project_id]" id="project[parent_project_id]" />
|
|
<p><input class="button is-primary" type="submit" name="submit" value="<?php esc_attr_e( 'Branch project', 'glotpress' ); ?>" id="submit" /></p>
|
|
<?php gp_route_nonce_field( 'branch-project_' . $project->id ); ?>
|
|
</form>
|
|
|
|
<?php
|
|
gp_tmpl_footer();
|