Plugin Directory

Changeset 1873815


Ignore:
Timestamp:
05/14/2018 07:10:20 AM (8 years ago)
Author:
chetanchauhan
Message:

Uploading 1.0.4

Location:
review-content-type
Files:
47 added
4 edited

Legend:

Unmodified
Added
Removed
  • review-content-type/trunk/README.txt

    r1394306 r1873815  
    33Tags: review, reviews, ratings, rich snippets, schema, hreview, star rating, stars, affiliate, product review, wp review
    44Requires at least: 3.8
    5 Tested up to: 4.5
    6 Stable tag: 1.0.3
     5Tested up to: 4.9
     6Stable tag: 1.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555== Changelog ==
     56= 1.0.4 - 2018-05-14 =
     57* Fix: Allow hardcoded string in `content-single-review-price.php` to be translated.
     58
    5659= 1.0.3 - 2016-04-13 =
    5760* Fix: Span element not closed while displaying rating using `rct_rating_html()`.
  • review-content-type/trunk/languages/review-content-type.pot

    r1394306 r1873815  
    1 # Copyright (C) 2016 Chetan Chauhan
     1# Copyright (C) 2018 Chetan Chauhan
    22# This file is distributed under the GPL-2.0+.
    33msgid ""
     
    66"Report-Msgid-Bugs-To: "
    77"https://github.com/chetanchauhan/review-content-type/issues\n"
    8 "POT-Creation-Date: 2016-04-13 14:56:59+00:00\n"
     8"POT-Creation-Date: 2018-05-14 05:22:10+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
     12"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    1414"Language-Team: LANGUAGE <LL@li.org>\n"
    15 "X-Generator: grunt-wp-i18n 0.5.3\n"
    16 "X-Poedit-KeywordsList: "
    17 "__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
    18 "attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
    1915"Language: en\n"
    2016"Plural-Forms: nplurals=2; plural=(n != 1);\n"
    2117"X-Poedit-Country: United States\n"
    2218"X-Poedit-SourceCharset: UTF-8\n"
     19"X-Poedit-KeywordsList: "
     20"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
     21"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
    2322"X-Poedit-Basepath: ../\n"
    2423"X-Poedit-SearchPath-0: .\n"
    2524"X-Poedit-Bookmarks: \n"
    2625"X-Textdomain-Support: yes\n"
     26"X-Generator: grunt-wp-i18n1.0.2\n"
    2727
    2828#: includes/admin/class-rct-admin-meta-boxes.php:32
     
    841841msgstr ""
    842842
     843#: templates/content-single-review-price.php:7
     844msgid "to"
     845msgstr ""
     846
    843847#: templates/content-single-review-rating.php:2
    844848msgid "Editor's Rating:"
  • review-content-type/trunk/review-content-type.php

    r1394306 r1873815  
    44 * Plugin URI:        https://github.com/chetanchauhan/review-content-type/
    55 * Description:       Create and manage reviews easily with this feature-rich, extendable, powerful and free WordPress review plugin the right way.
    6  * Version:           1.0.3
     6 * Version:           1.0.4
    77 * Author:            Chetan Chauhan
    88 * Author URI:        https://github.com/chetanchauhan/
     
    117117    private function define_constants() {
    118118        // Set the plugin version.
    119         define( 'RCT_VERSION', '1.0.3' );
     119        define( 'RCT_VERSION', '1.0.4' );
    120120
    121121        // Set the plugin root file.
  • review-content-type/trunk/templates/content-single-review-price.php

    r1138395 r1873815  
    55
    66    <div class="rct-review-price" itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
    7         <span><?php echo rct_format_price_amount( $min_price ); ?></span> to
     7        <span><?php echo rct_format_price_amount( $min_price ); ?></span> <?php esc_html_e( 'to', 'review-content-type' ); ?>
    88        <span><?php echo rct_format_price_amount( $max_price ); ?></span>
    99        <meta itemprop="lowPrice" content="<?php echo esc_attr( $min_price ); ?>">
Note: See TracChangeset for help on using the changeset viewer.