106 lines
4 KiB
PHP
106 lines
4 KiB
PHP
<?php
|
|
/**
|
|
* Template for the editor part of a single translation row in a translation set display
|
|
*
|
|
* @package GlotPress
|
|
* @subpackage Templates
|
|
*/
|
|
|
|
/**
|
|
* Filter to update colspan of editor. Decrease to add an extra column
|
|
* with action 'gp_translation_row_editor_columns'.
|
|
*
|
|
* @since 3.0.0
|
|
*
|
|
* @param int $colspan The colspan of editor column.
|
|
*/
|
|
$colspan = apply_filters( 'gp_translation_row_editor_colspan', $can_approve ? 5 : 4 );
|
|
|
|
$singular = sprintf(
|
|
'<small>%s</small><br><span class="original">%s</span>',
|
|
__( 'Singular:', 'glotpress' ),
|
|
prepare_original( $translation_singular )
|
|
);
|
|
$plural = sprintf(
|
|
'<small>%s</small><br><span class="original">%s</span>',
|
|
__( 'Plural:', 'glotpress' ),
|
|
isset( $translation->plural_glossary_markup ) ? prepare_original( $translation->plural_glossary_markup ) : prepare_original( esc_translation( $translation->plural ) )
|
|
);
|
|
|
|
?>
|
|
<tr class="editor <?php gp_translation_row_classes( $translation ); ?>" id="editor-<?php echo esc_attr( $translation->row_id ); ?>" row="<?php echo esc_attr( $translation->row_id ); ?>">
|
|
<td colspan="<?php echo esc_attr( $colspan ); ?>">
|
|
<div class="strings">
|
|
<?php if ( ! $translation->plural ) : ?>
|
|
<p class="original"><?php echo prepare_original( $translation_singular ); ?></p>
|
|
<p aria-hidden="true" class="original_raw"><?php echo esc_translation( $translation->singular ); ?></p>
|
|
<?php textareas( $translation, array( $can_edit, $can_approve_translation ) ); ?>
|
|
<?php else : ?>
|
|
<?php if ( absint( $locale->nplurals ) === 2 && 'n != 1' === $locale->plural_expression ) : ?>
|
|
<p>
|
|
<?php
|
|
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
echo $singular;
|
|
?>
|
|
<span aria-hidden="true" class="original_raw"><?php echo esc_translation( $translation->singular ); ?></span>
|
|
</p>
|
|
<?php textareas( $translation, array( $can_edit, $can_approve ), 0 ); ?>
|
|
<p class="clear">
|
|
<?php
|
|
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
echo $plural;
|
|
?>
|
|
<span aria-hidden="true" class="original_raw"><?php echo esc_translation( $translation->plural ); ?></span>
|
|
</p>
|
|
<?php textareas( $translation, array( $can_edit, $can_approve ), 1 ); ?>
|
|
<?php else : ?>
|
|
<!--
|
|
TODO: labels for each plural textarea and a sample number
|
|
-->
|
|
<p>
|
|
<?php
|
|
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
echo $singular;
|
|
?>
|
|
<span aria-hidden="true" class="original_raw"><?php echo esc_translation( $translation->singular ); ?></span>
|
|
</p>
|
|
<p class="clear">
|
|
<?php
|
|
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
echo $plural;
|
|
?>
|
|
<span aria-hidden="true" class="original_raw"><?php echo esc_translation( $translation->plural ); ?></span>
|
|
</p>
|
|
<?php foreach ( range( 0, $locale->nplurals - 1 ) as $plural_index ) : ?>
|
|
<?php if ( $locale->nplurals > 1 ) : ?>
|
|
<p class="plural-numbers">
|
|
<?php
|
|
printf(
|
|
/* translators: %s: Numbers */
|
|
__( 'This plural form is used for numbers like: %s', 'glotpress' ),
|
|
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
|
'<span class="numbers">' . implode( ', ', $locale->numbers_for_index( $plural_index ) ) . '</span>'
|
|
);
|
|
?>
|
|
</p>
|
|
<?php endif; ?>
|
|
<?php textareas( $translation, array( $can_edit, $can_approve ), $plural_index ); ?>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
<?php gp_tmpl_load( 'translation-row-editor-actions', get_defined_vars() ); ?>
|
|
</div>
|
|
<?php gp_tmpl_load( 'translation-row-editor-meta', get_defined_vars() ); ?>
|
|
</td>
|
|
<?php
|
|
/**
|
|
* Fires after editor column.
|
|
*
|
|
* @since 3.0.0
|
|
*
|
|
* @param GP_Translation $translation The current translation.
|
|
* @param GP_Translation_Set $translation_set The current translation set.
|
|
*/
|
|
do_action( 'gp_translation_row_editor_columns', $translation, $translation_set );
|
|
?>
|
|
</tr>
|