Translate new strings to portuguese and fixes some old translations.
This commit is contained in:
parent
c811c6fa92
commit
6ff46800d3
|
@ -661,7 +661,7 @@ function tainacan_customize_register( $wp_customize ) {
|
|||
'priority' => 3, // Within the section.
|
||||
'section' => 'tainacan_items_page_search_area',
|
||||
'label' => __( 'Hide the Search block.', 'tainacan-interface' ),
|
||||
'description' => __( 'Toggle to do not show the on the search control bar.', 'tainacan-interface' )
|
||||
'description' => __( 'Toggle to do not show the search block on the control bar.', 'tainacan-interface' )
|
||||
) );
|
||||
$wp_customize->selective_refresh->add_partial( 'tainacan_items_page_hide_search', array(
|
||||
'selector' => '.theme-items-list .search-area',
|
||||
|
@ -684,7 +684,7 @@ function tainacan_customize_register( $wp_customize ) {
|
|||
'priority' => 3, // Within the section.
|
||||
'section' => 'tainacan_items_page_search_area',
|
||||
'label' => __( 'Hide the Advanced Search link.', 'tainacan-interface' ),
|
||||
'description' => __( 'Toggle to do not show the on the advanced search link on the control bar.', 'tainacan-interface' )
|
||||
'description' => __( 'Toggle to do not show the advanced search link on the control bar.', 'tainacan-interface' )
|
||||
) );
|
||||
$wp_customize->selective_refresh->add_partial( 'tainacan_items_page_hide_advanced_search', array(
|
||||
'selector' => '.theme-items-list .search-area a.has-text-secondary ',
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -21,8 +21,8 @@
|
|||
<?php endif; ?>
|
||||
<?php if ( ! is_singular( 'page' ) ) : ?>
|
||||
<div class="row justify-content-between">
|
||||
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'tainacan-interface' ) ); ?></span>
|
||||
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'tainacan-interface' ) ); ?></span>
|
||||
<span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">←</span> ' . __( 'Previous', 'tainacan-interface' ) ); ?></span>
|
||||
<span class="nav-next"><?php next_post_link( '%link', __( 'Next', 'tainacan-interface' ) . ' <span class="meta-nav">→</span>' ); ?></span>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
<?php endwhile; ?>
|
||||
|
|
Loading…
Reference in New Issue