Plugin Directory

Changeset 3215425


Ignore:
Timestamp:
12/31/2024 04:19:53 PM (12 months ago)
Author:
airesvsg
Message:

fix text domain

Location:
acf-to-rest-api
Files:
46 added
6 edited

Legend:

Unmodified
Added
Removed
  • acf-to-rest-api/trunk/class-acf-to-rest-api.php

    r2687878 r3215425  
    55 * Author: Aires Gonçalves
    66 * Author URI: http://github.com/airesvsg
    7  * Version: 3.3.3
     7 * Version: 3.3.4
    88 * Plugin URI: http://github.com/airesvsg/acf-to-rest-api
    99 */
     
    1717    class ACF_To_REST_API {
    1818
    19         const VERSION = '3.3.3';
     19        const VERSION = '3.3.4';
    2020
    2121        private static $old_request_version     = 2;
  • acf-to-rest-api/trunk/composer.json

    r2687878 r3215425  
    33  "description": "Exposes Advanced Custom Fields Endpoints in the WordPress REST API",
    44  "type": "wordpress-plugin",
    5   "version": "3.3.3",
     5  "version": "3.3.4",
    66  "keywords": ["wordpress", "wp", "rest-api", "acf", "wp-api", "json", "wordpres-plugin", "fields"],
    77  "homepage": "https://github.com/airesvsg/acf-to-rest-api",
  • acf-to-rest-api/trunk/readme.txt

    r2689652 r3215425  
    44Tags: acf, api, rest, wp-api, wp-rest-api, json, wp, wordpress, wp-rest-api, wordpress-rest-api
    55Requires at least: 4.6
    6 Tested up to: 5.9.1
    7 Stable tag: 3.3.3
     6Tested up to: 6.7.1
     7Stable tag: 3.3.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2121
    2222== Changelog ==
     23
     24= 3.3.4 =
     25fix text domain
    2326
    2427= 3.3.3 =
  • acf-to-rest-api/trunk/shared/includes/admin/views/html-notice-donation.php

    r2245907 r3215425  
    88
    99<div class="notice acf-to-rest-api-donation-notice">
    10     <p><span class="acf-to-rest-api-donation-plugin-name">{ <?php esc_html_e( 'ACF to REST-API', 'act-to-rest-api' ); ?> }</span> <a href="<?php echo esc_url( self::DONATION_URL ); ?>" target="_blank" class="acf-to-rest-api-donation-button"> <span class="dashicons dashicons-heart"></span> <?php echo esc_html_e( 'Make a donation', 'acf-to-rest-api' ); ?></a></p>
     10    <p><span class="acf-to-rest-api-donation-plugin-name">{ <?php esc_html_e( 'ACF to REST-API', 'acf-to-rest-api' ); ?> }</span> <a href="<?php echo esc_url( self::DONATION_URL ); ?>" target="_blank" class="acf-to-rest-api-donation-button"> <span class="dashicons dashicons-heart"></span> <?php echo esc_html_e( 'Make a donation', 'acf-to-rest-api' ); ?></a></p>
    1111    <button type="button" class="notice-dismiss acf-to-rest-api-donation-button-notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
    1212</div>
  • acf-to-rest-api/trunk/shared/includes/admin/views/html-notice-missing-acf.php

    r1752896 r3215425  
    2424
    2525<div class="notice error is-dismissible">
    26     <p><strong><?php esc_html_e( 'ACF to REST API', 'act-to-rest-api' ); ?></strong> <?php esc_html_e( 'depends on the last version of Advanced Custom Fields to work!', 'acf-to-rest-api' ); ?></p>
     26    <p><strong><?php esc_html_e( 'ACF to REST API', 'acf-to-rest-api' ); ?></strong> <?php esc_html_e( 'depends on the last version of Advanced Custom Fields to work!', 'acf-to-rest-api' ); ?></p>
    2727    <p><a href="<?php echo esc_url( $url ); ?>" class="button button-primary"<?php if ( $target ) : ?> target="_blank"<?php endif; ?>><?php esc_html_e( $action . ' Advanced Custom Fields', 'acf-to-rest-api' ); ?></a></p>
    2828</div>
  • acf-to-rest-api/trunk/shared/includes/admin/views/html-notice-missing-rest-api.php

    r1752896 r3215425  
    2424
    2525<div class="notice error is-dismissible">
    26     <p><strong><?php esc_html_e( 'ACF to REST API', 'act-to-rest-api' ); ?></strong> <?php esc_html_e( 'depends on the last version of WordPress REST API to work!', 'acf-to-rest-api' ); ?></p>
     26    <p><strong><?php esc_html_e( 'ACF to REST API', 'acf-to-rest-api' ); ?></strong> <?php esc_html_e( 'depends on the last version of WordPress REST API to work!', 'acf-to-rest-api' ); ?></p>
    2727    <p><a href="<?php echo esc_url( $url ); ?>" class="button button-primary"<?php if ( $target ) : ?> target="_blank"<?php endif; ?>><?php esc_html_e( $action . ' WordPress REST API', 'acf-to-rest-api' ); ?></a></p>
    2828</div>
Note: See TracChangeset for help on using the changeset viewer.