Translate new strings to portuguese and fixes some old translations.

This commit is contained in:
mateuswetah 2020-05-18 12:16:38 -03:00
parent c811c6fa92
commit 6ff46800d3
4 changed files with 711 additions and 192 deletions

View File

@ -661,7 +661,7 @@ function tainacan_customize_register( $wp_customize ) {
'priority' => 3, // Within the section. 'priority' => 3, // Within the section.
'section' => 'tainacan_items_page_search_area', 'section' => 'tainacan_items_page_search_area',
'label' => __( 'Hide the Search block.', 'tainacan-interface' ), '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( $wp_customize->selective_refresh->add_partial( 'tainacan_items_page_hide_search', array(
'selector' => '.theme-items-list .search-area', 'selector' => '.theme-items-list .search-area',
@ -684,7 +684,7 @@ function tainacan_customize_register( $wp_customize ) {
'priority' => 3, // Within the section. 'priority' => 3, // Within the section.
'section' => 'tainacan_items_page_search_area', 'section' => 'tainacan_items_page_search_area',
'label' => __( 'Hide the Advanced Search link.', 'tainacan-interface' ), '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( $wp_customize->selective_refresh->add_partial( 'tainacan_items_page_hide_advanced_search', array(
'selector' => '.theme-items-list .search-area a.has-text-secondary ', 'selector' => '.theme-items-list .search-area a.has-text-secondary ',

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -21,8 +21,8 @@
<?php endif; ?> <?php endif; ?>
<?php if ( ! is_singular( 'page' ) ) : ?> <?php if ( ! is_singular( 'page' ) ) : ?>
<div class="row justify-content-between"> <div class="row justify-content-between">
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">&larr;</span> Previous', 'tainacan-interface' ) ); ?></span> <span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">&larr;</span>&nbsp;' . __( 'Previous', 'tainacan-interface' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">&rarr;</span>', 'tainacan-interface' ) ); ?></span> <span class="nav-next"><?php next_post_link( '%link', __( 'Next', 'tainacan-interface' ) . '&nbsp;<span class="meta-nav">&rarr;</span>' ); ?></span>
</div> </div>
<?php endif; ?> <?php endif; ?>
<?php endwhile; ?> <?php endwhile; ?>