remove .git files and fix one translatable string

This commit is contained in:
leogermani 2019-02-27 12:44:19 -03:00
parent 01d3716057
commit 0f6054efa2
2 changed files with 6 additions and 1 deletions

View File

@ -33,4 +33,8 @@ cp $destination/assets/vendor/slick/scss/slick-theme.min.css $destination/assets
mv $destination/assets/vendor/slick/ajax-loader.gif $destination/assets/vendor/slick/css/ajax-loader.gif mv $destination/assets/vendor/slick/ajax-loader.gif $destination/assets/vendor/slick/css/ajax-loader.gif
mv $destination/assets/vendor/slick/fonts/ $destination/assets/vendor/slick/css/fonts/ mv $destination/assets/vendor/slick/fonts/ $destination/assets/vendor/slick/css/fonts/
##clean
rm $destination/assets/vendor/ekko-lightbox/.gitignore
rm -rf $destination/assets/vendor/ekko-lightbox/.git
echo "Compilation Finish!!" echo "Compilation Finish!!"

View File

@ -70,7 +70,8 @@ if ( ! function_exists( 'tainacan_pagination' ) ) :
$count_max = ( $to_paged - 1 ) * $cur_posts; ?> $count_max = ( $to_paged - 1 ) * $cur_posts; ?>
<div class="d-flex margin-pagination justify-content-between border-top pt-2"> <div class="d-flex margin-pagination justify-content-between border-top pt-2">
<div class="col-sm-3 d-none d-lg-block pl-0 view-items"> <div class="col-sm-3 d-none d-lg-block pl-0 view-items">
<?php printf( __('Viewing Items: %d to %d from %d', 'tainacan-interface'), $count_max + 1, $count_max + $wp_query->post_count, $wp_query->found_posts ); ?> <?php //translators: Example - Viewing Items: 1 to 12 of 345 ?>
<?php printf( __('Viewing Items: %1$d to %2$d of %3$d', 'tainacan-interface'), $count_max + 1, $count_max + $wp_query->post_count, $wp_query->found_posts ); ?>
</div> </div>
<div class="col-sm-5 pr-md-0 justify-content-md-end"> <div class="col-sm-5 pr-md-0 justify-content-md-end">
<?php the_posts_pagination( <?php the_posts_pagination(