Plugin Directory

Changeset 3112321

Timestamp:
07/04/2024 10:03:07 AM (5 weeks ago)
Author:
nilovelez
Message:

5.0.1

  • Update: Updated translation files
  • Update: Social share module: Updated x.com url for sharing
  • Improvement: Manteintenance mode: Added compatibility with custom password recovery URLs
Location:
machete
Files:
119 added
14 edited

Legend:

Unmodified
Added
Removed
  • machete/trunk/changelog.md

    r3109168 r3112321  
    11== Changelog ==
     2
     3
     4
     5
     6
    27
    38= 5.0 =
  • machete/trunk/inc/class-machete-module.php

    r3109168 r3112321  
    142142    }
    143143
    144     /**
    145      * Returns a module settings array to use for backups.
    146      *
    147      * @return array modules settings array.
    148      */
    149     protected function export() {
    150         return $this->read_settings();
    151     }
    152 
    153     /**
    154      * Restores module settings from a backup
    155      *
    156      * @param array $settings modules settings array.
    157      * @return string success/error message.
    158      */
    159     protected function import( $settings = array() ) {
    160         if ( $this->save_settings( $settings, true ) ) {
    161             return __( 'Settings successfully restored from backup', 'machete' ) . "\n";
    162         } else {
    163             return __( 'Error restoring settings backup', 'machete' ) . "\n";
    164         }
    165     }
    166144    /* Dashboard notices */
    167145
  • machete/trunk/inc/clone/admin-functions.php

    r3109168 r3112321  
    9090function machete_content_clone_new_title( $title ) {
    9191
     92
    9293    $copy_text = __( 'copy', 'machete' );
    9394
  • machete/trunk/inc/cookies/class-machete-cookies-module.php

    r3109168 r3112321  
    216216
    217217    /**
    218      * Returns a module settings array to use for backups.
    219      *
    220      * @return array modules settings array.
    221      */
    222     protected function export() {
    223         $export = $this->read_settings();
    224         if ( ! empty( $export['warning_text'] ) ) {
    225             $export['warning_text'] = stripslashes( $export['warning_text'] );
    226         }
    227         return $export;
    228     }
    229     /**
    230218     * Echoes the cookie bar for use in the front-end.
    231219     */
  • machete/trunk/inc/maintenance/class-machete-maintenance-page.php

    r3109168 r3112321  
    6767                return false;
    6868            }
    69 
     69            // Exit if in a custom recover password URL.
     70            if ( wp_lostpassword_url() === home_url( filter_input( INPUT_SERVER, 'REQUEST_URI' ) ) ) {
     71                return false;
     72            }
    7073            // Exit if user is logged in.
    7174            if ( is_user_logged_in() && current_user_can( 'publish_posts' ) ) {
  • machete/trunk/inc/social/class-machete-social-module.php

    r3109168 r3112321  
    5454                'title' => _x( 'X/Twitter', 'network name', 'machete' ),
    5555                'label' => _x( 'Post this', 'Twitter button label', 'machete' ),
    56                 'url'   => 'https://twitter.com/intent/tweet?url=%s',
     56                'url'   => 'https://t?url=%s',
    5757            ),
    5858            'facebook'  => array(
  • machete/trunk/inc/utils/admin-content.php

    r3109168 r3112321  
    11<?php
    22/**
    3  * Content of the "Import/Export" page.
     3 * Content of the "" page.
    44
    55 * @package WordPress
     
    7070
    7171    <a href="#machete-tabs-tracking" data-tab="machete-tabs-tracking" class="nav-tab machete-tabs-tracking"><?php esc_html_e( 'Tracking settings', 'machete' ); ?></a>
    72     <?php // Translators: <head>. ?>
     72    <?php // Translators: <head>. ?>
    7373    <a href="#machete-tabs-header" data-tab="machete-tabs-header" class="nav-tab machete-tabs-header"><?php echo esc_html( sprintf( __( '%s code', 'machete' ), '<head>' ) ); ?></a>
    74     <?php // Translators: <body>. ?>
     74    <?php // Translators: <body>. ?>
    7575    <a href="#machete-tabs-alfonso" data-tab="machete-tabs-alfonso" class="nav-tab machete-tabs-alfonso"><?php echo esc_html( sprintf( __( '%s code', 'machete' ), '<body>' ) ); ?></a>
    7676    <a href="#machete-tabs-footer" data-tab="machete-tabs-footer" class="nav-tab machete-tabs-footer"><?php esc_html_e( 'Footer code', 'machete' ); ?></a>
  • machete/trunk/inc/utils/class-machete-utils-module.php

    r3109168 r3112321  
    392392        return $this->readfile( MACHETE_DATA_PATH . 'footer.html' );
    393393    }
    394 
    395     /**
    396      * Restores module settings from a backup
    397      *
    398      * @param array $settings modules settings array.
    399      * @return string success/error message.
    400      */
    401     protected function import( $settings = array() ) {
    402 
    403         $encoded_fields = array( 'header_content', 'alfonso_content', 'footer_content' );
    404 
    405         foreach ( $encoded_fields as $encoded_field ) {
    406             if ( array_key_exists( $encoded_field, $settings ) && ! empty( $settings[ $encoded_field ] ) ) {
    407                 // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode
    408                 $settings[ $encoded_field ] = base64_decode( $settings[ $encoded_field ] );
    409             }
    410         }
    411 
    412         if ( $this->save_settings( $settings, true ) ) {
    413             return __( 'Settings successfully restored from backup', 'machete' ) . "\n";
    414         } else {
    415             return __( 'Error restoring settings backup', 'machete' ) . "\n";
    416         }
    417     }
    418     /**
    419      * Returns a module settings array to use for backups.
    420      *
    421      * @return array modules settings array.
    422      */
    423     protected function export() {
    424 
    425         $export = $this->settings;
    426 
    427         $machete_header_content = $this->get_contents( MACHETE_DATA_PATH . 'header.html' );
    428         if ( ! empty( $machete_header_content ) ) {
    429 
    430             $machete_header_content = explode( '<!-- Machete Header -->', $machete_header_content );
    431             switch ( count( $machete_header_content ) ) {
    432                 case 1:
    433                     $machete_header_content = $machete_header_content[0];
    434                     break;
    435                 case 2:
    436                     $machete_header_content = $machete_header_content[1];
    437                     break;
    438                 default:
    439                     $machete_header_content = implode( '', array_slice( $machete_header_content, 1 ) );
    440             }
    441             // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
    442             $export['header_content'] = base64_encode( $machete_header_content );
    443         }
    444         if ( file_exists( MACHETE_DATA_PATH . 'body.html' ) ) {
    445             // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
    446             $export['alfonso_content'] = base64_encode( $this->get_contents( MACHETE_DATA_PATH . 'body.html' ) );
    447         }
    448 
    449         if ( file_exists( MACHETE_DATA_PATH . 'footer.html' ) ) {
    450             // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
    451             $export['footer_content'] = base64_encode( $this->get_contents( MACHETE_DATA_PATH . 'footer.html' ) );
    452         }
    453 
    454         return $export;
    455     }
    456394}
    457395$machete->modules['utils'] = new MACHETE_UTILS_MODULE();
  • machete/trunk/inc/woocommerce/class-machete-woocommerce-module.php

    r3109168 r3112321  
    149149        return true;
    150150    }
    151 
    152     /**
    153      * Returns a module settings array to use for backups.
    154      *
    155      * @return array modules settings array.
    156      */
    157     protected function export() {
    158         $export = $this->read_settings();
    159         if ( ! empty( $export['warning_text'] ) ) {
    160             $export['warning_text'] = stripslashes( $export['warning_text'] );
    161         }
    162         return $export;
    163     }
    164151}
    165152$machete->modules['woocommerce'] = new MACHETE_WOOCOMMERCE_MODULE();
  • machete/trunk/languages/machete-es_ES.po

    r3109168 r3112321  
    22msgstr ""
    33"Project-Id-Version: Plugins - Machete - Development (trunk)\n"
    4 "Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2024-05-19 20:03+0200\n"
    6 "PO-Revision-Date: 2024-06-28 10:11+0200\n"
     4"Report-Msgid-Bugs-To: \n"
     5"POT-Creation-Date: 2024-000\n"
     6"PO-Revision-Date: 2024-0+0200\n"
    77"Last-Translator: Nilo Velez <nilovelez@gmail.com>\n"
    88"Language-Team: \n"
     
    1414"X-Generator: Poedit 3.4.4\n"
    1515
     16
     17
     18
     19
     20
     21
     22
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
    1641#: inc/about/admin-content.php:16
    1742msgid "Welcome to Machete!"
     
    7297msgstr "Activar"
    7398
    74 #: inc/class-machete-module.php:161
    75 #: inc/utils/class-machete-utils-module.php:413
    76 msgid "Settings successfully restored from backup"
    77 msgstr "Ajustes restaurados con éxito desde la copia de seguridad"
    78 
    79 #: inc/class-machete-module.php:163
    80 #: inc/utils/class-machete-utils-module.php:415
    81 msgid "Error restoring settings backup"
    82 msgstr "Error restaurando la copia de seguridad"
    83 
    84 #: inc/class-machete-module.php:184
     99#: inc/class-machete-module.php:162
    85100msgid "Options saved!"
    86101msgstr "¡Ajustes guardados!"
    87102
    88 #: inc/class-machete-module.php:190 inc/class-machete.php:181
     103#: inc/class-machete-module.php:1 inc/class-machete.php:181
    89104#: inc/class-machete.php:219
    90105msgid "Error saving configuration to database."
    91106msgstr "Error al guardar la configuración a base de datos."
    92107
    93 #: inc/class-machete-module.php:196
     108#: inc/class-machete-module.php:1
    94109msgid "No changes were needed."
    95110msgstr "No había nada que guardar."
    96111
    97 #: inc/class-machete-module.php:250
     112#: inc/class-machete-module.php:2
    98113msgid "This function needs direct access to the filesystem."
    99114msgstr "Esta función necesita acceso directo al sistema de ficheros."
    100115
    101 #: inc/class-machete-module.php:256
     116#: inc/class-machete-module.php:2
    102117msgid "There was a problem accessing the filesystem. Check your permissions."
    103118msgstr "Se producido un problema al acceder al sistema de ficheros. Comprueba tus permisos."
     
    121136#. Translators: module title
    122137#: inc/class-machete.php:172
    123 #, php-format
    124138msgid "Module %s disabled successfully"
    125139msgstr "Módulo %s desactivado con éxito"
     
    135149#. Translators: module title
    136150#: inc/class-machete.php:209
    137 #, php-format
    138151msgid "Module %s enabled successfully"
    139152msgstr "Módulo %s activado con éxito"
     
    461474#. translators: %s: singular post type name.
    462475#: inc/clone/admin-bar.php:40
    463 #, php-format
    464476msgid "Clone %s"
    465477msgstr "Clonar %s"
     
    467479#. translators: %s: singular post type name.
    468480#: inc/clone/admin-bar.php:44
    469 #, php-format
    470481msgid "Copy this %s to a new draft"
    471482msgstr "Copiar %s a un nuevo borrador"
     
    544555msgstr "Tema de la barra de cookies"
    545556
     557
     558
     559
     560
     561
     562
     563
     564
    546565#: inc/cookies/admin-content.php:75
    547566msgid "How do I customize the cookie bar?"
     
    550569#. Translators: $s: a href part of a link
    551570#: inc/cookies/admin-content.php:79
    552 #, php-format
    553571msgid "You can customize the cookie bar CSS using the %sAnalytics & Code tab"
    554572msgstr "Puedes personalizar el CSS de la barra de cookies utilizando la pestaña %sAnalytics y código"
     
    591609msgstr "Barra aviso de ley de cookies ligera y adaptable que no afecta a tu puntuación de PageSpeed y que se lleva bien con los plugins de caché."
    592610
     611
     612
     613
     614
    593615#: inc/cookies/class-machete-cookies-module.php:36
    594616msgid "Accept cookies"
     
    614636#: inc/cookies/class-machete-cookies-module.php:113
    615637#: inc/utils/class-machete-utils-module.php:108
    616 #, php-format
    617638msgid "Error creating data dir %s please check file permissions"
    618639msgstr "Error al crear el directorio %s comprueba los permisos de archivo, por favor"
     
    621642#: inc/cookies/class-machete-cookies-module.php:185
    622643#: inc/utils/class-machete-utils-module.php:253
    623 #, php-format
    624644msgid "Error writing static javascript file to %s please check file permissions. Aborting to prevent inconsistent state."
    625645msgstr "Error al guardar el fichero estático de JavaScript a %s , comprueba los permisos. Cancelando para evitar un estado inconsistente."
     
    628648#: inc/cookies/class-machete-cookies-module.php:196
    629649#: inc/utils/class-machete-utils-module.php:266
    630 #, php-format
    631650msgid "Could not delete old javascript file from %s please check file permissions. Aborting to prevent inconsistent state."
    632651msgstr "Error al borrar el fichero estático antiguo de %s , comprueba los permisos. Cancelando para evitar un estado inconsistente."
     
    669688msgstr "Enlace mágico"
    670689
     690
     691
     692
     693
    671694#: inc/maintenance/admin-content.php:55
    672695msgid "change secret token"
     
    695718#. translators: %s: Analytics & code tab link.
    696719#: inc/maintenance/admin-content.php:93
    697 #, php-format
    698720msgid "You can customize the maintenance page CSS using the %sAnalytics & Code tab"
    699721msgstr "Puedes personalizar el CSS de la página de mantenimiento usando la %spestaña de Analytics y código"
     
    710732msgid "content of the selected page"
    711733msgstr "contenido de la página elegida"
     734
     735
     736
     737
    712738
    713739#: inc/maintenance/admin-content.php:147
     
    836862#. translators: Link the post "SVG uploads in WordPress (the Inconvenient Truth)".
    837863#: inc/powertools/class-machete-powertools-module.php:64
    838 #, php-format
    839864msgid "Enables the upload of SVG images to the media library. This <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">has been proven to be dangerous</a>, so be careful."
    840865msgstr "Permite la subida de imágenes SVG a la biblioteca de medioa. Está <a href=\"%s\" target=\"_blank\" rel=\"noopener noreferrer\">demostrado que esto es peligroso</a>, así que ten cuidado."
     
    854879#. translators: $d number of deleted transsients.
    855880#: inc/powertools/class-machete-powertools-module.php:219
    856 #, php-format
    857881msgid "%d Transients Rows Cleared"
    858882msgstr "%d Filas de transitorios borradas"
     
    860884#. translators: $d number of deleted post revisions.
    861885#: inc/powertools/class-machete-powertools-module.php:238
    862 #, php-format
    863886msgid "Success! %s Post revision deleted."
    864887msgid_plural "Success! %s Post revisions deleted."
     
    880903#. translators: %s: homepage URL.
    881904#: inc/powertools/powertools.php:92
    882 #, php-format
    883905msgid "No feed available, please visit our <a href=\"%s\">homepage</a>!"
    884906msgstr "¡Feed no disponible, visita nuestra <a href=\"%s\">portada</a>!"
     
    916938
    917939#: inc/social/admin-content.php:44
    918 #, php-format
    919940msgid "Leave blank to remove. The %%post_type%% placeholder is replaced by the post type name. ie: post, page"
    920941msgstr "Déjalo en blanco para eliminarlo. El texto %%post_type%% se reemplaza por el nombre del tipo de contenido. Ej: entrada, página"
     
    950971#. translators: %%post_type%% is a placeholder, keep it as is.
    951972#: inc/social/class-machete-social-module.php:37
    952 #, php-format
    953973msgid "Share this %%post_type%%"
    954974msgstr "Comparte este/a %%post_type%%"
     
    10471067msgstr "Ajustes de seguimiento"
    10481068
    1049 #. Translators: <head>.
    1050 #. Translators: <body>.
     1069#. Translators: <head> or <body>.
    10511070#: inc/utils/admin-content.php:73 inc/utils/admin-content.php:75
    1052 #, php-format
    10531071msgid "%s code"
    10541072msgstr "Código del %s"
     
    11081126#. translators: $s: file path.
    11091127#: inc/utils/admin-content.php:134
    1110 #, php-format
    11111128msgid "This code is included before the closing <code>&lt;/head&gt;</code> tag.<br>Content is saved to <code>%s</code> and served using PHP's <code>readfile()</code> function, so no PHP or shortcodes here."
    11121129msgstr "Este código se incluye antes de la etiqueta de cierre <code>&lt;/head&gt;</code>.<br>El contenido se guarda en <code>%s</code> y se sirve usando la función <code>readfile()</code> de PHP, así que nada de PHP o shortcodes aquí."
     
    11221139#. translators: $s: file path.
    11231140#: inc/utils/admin-content.php:150
    1124 #, php-format
    11251141msgid "Content is saved to <code>%s</code> and served using PHP. No PHP code or shortcodes here."
    11261142msgstr "El contenido se guarda en el fichero <code>%s</code> y se sirve usando PHP.  No uses código PHP ni shortcodes aquí."
     
    11401156#. translators: %s url of article with explanation.
    11411157#: inc/utils/admin-content.php:169
    1142 #, php-format
    11431158msgid "Try to inject the code automatically using <a href=\"%s\" target=\"_blank\" rel=\"nofollow\">Yaniv Friedensohn's method</a>"
    11441159msgstr "Intentar inyectar automáticamente el código usando el <a href=\"%s\" target=\"_blank\" rel=\"nofollow\">método de Yaniv Friedensohn</a>"
     
    11541169#. translators: $s: file path.
    11551170#: inc/utils/admin-content.php:186
    1156 #, php-format
    11571171msgid "This code is included when the <code>wp_footer</code> action is called, normally just before the closing <code>&lt;/body&gt;</code> tag.<br>Content is saved to <code>%s</code> and served using PHP's <code>readfile()</code> function, so no PHP or shortcodes here."
    11581172msgstr "Este código se incuye cuando se ejecuta la acción <code>wp_footer</code>, normalmente justo antes del cierre de la etiqueta <code>&lt;/body&gt;</code>.<br>El contenido se guarda en <code>%s</code> y se sirve usando la función <code>readfile()</code> de PHP, así que nada de código PHP o shortcodes aquí."
     
    11801194#. Translators: 1: Analytics property id 2: link open tag 3: link close tag
    11811195#: inc/utils/class-machete-utils-module.php:75
    1182 #, php-format
    11831196msgid "You are using the obsolete Universal Analytics property id %1$s. Go to the %2$sMachete Analytics & code module page%3$s and <strong>Save Settings</strong> to remove this notice."
    11841197msgstr "Estás utilizando el obsoleto identificador de propiedad de Universal Analytics %1$s. Ve a la página del módulo de Machete %2$sAnalytics y código%3$s y <strong>Guarda los ajustes</strong> para eliminar este aviso."
     
    11911204#: inc/woocommerce/actions.php:68 inc/woocommerce/actions.php:83
    11921205#: inc/woocommerce/actions.php:89
    1193 #, php-format
    11941206msgid "From %1$s"
    11951207msgstr "Desde %1$s"
     
    12581270#. Translators: 1: link open tag 2: link close tag
    12591271#: machete-admin.php:47
    1260 #, php-format
    12611272msgid "You are using Cookie settings from a previous Machete version. Go to the %1$sCookies Module page%2$s and <strong>Save Settings</strong> to remove this notice."
    12621273msgstr "Estás utilizando los ajustes de cookies de una versión anterior de Machete. Ve a la %1$spágina del módulo de cookies%2$s y <strong>guarda los ajustes</strong> para quitar este aviso."
     
    12641275#. Translators: 1: link open tag 2: link close tag
    12651276#: machete-admin.php:61
    1266 #, php-format
    12671277msgid "You are using Tracking settings from a previous Machete version. Go to the %1$sAnalytics & Code Module page%2$s and <strong>Save Settings</strong> to remove this notice."
    12681278msgstr "Estás utilizando los ajustes de seguimiento de una versión anterior de Machete. Ve a la %1$spágina del modulo de Analytics y código%2$s y <strong>guarda los ajustes</strong> para quitar este aviso."
    12691279
    1270 #. translators: %s: five stars
    1271 #: machete-admin.php:81
    1272 #, php-format
    1273 msgid "If you like <strong>Machete</strong>, please %1$sleave us a rating of %2$s. Thank you!"
    1274 msgstr "Si te gusta <strong>Machete</strong>, %1$sdéjame una reseña de %2$s. ¡Muchas gracias!"
    1275 
    12761280#. translators: %s: url of plugin settings page
    12771281#: machete-admin.php:107
    1278 #, php-format
    12791282msgid "<a href=\"%s\">Settings</a>"
    12801283msgstr "<a href=\"%s\">Ajustes</a>"
     
    12881291msgstr "Tienes que instalar y activar WooCommerce para utilizar este módulo."
    12891292
    1290 #. Plugin Name of the plugin
    1291 msgid "Machete"
    1292 msgstr "Machete"
    1293 
    1294 #. Plugin URI of the plugin
    1295 msgid "https://machetewp.com"
    1296 msgstr "https://machetewp.com"
    1297 
    1298 #. Description of the plugin
    1299 msgid "Machete is a lean and simple suite of tools that makes WordPress development easier: cookie bar, tracking codes, custom code editor, header cleanup, post and page cloner"
    1300 msgstr "Machete es un conjunto de herramientas ligeras y sencillas que facilitan el desarrollo con WordPress: barra de cookies, códigos de seguimiento, editor de código personalizado, limpieza de cabecera, duplicar entradas y páginas"
    1301 
    1302 #. Author of the plugin
    1303 msgid "Nilo Velez"
    1304 msgstr "Nilo Vélez"
    1305 
    1306 #. Author URI of the plugin
    1307 msgid "https://www.nilovelez.com"
    1308 msgstr "https://www.nilovelez.com"
    1309 
    1310 #: inc/maintenance/admin-content.php:54 inc/maintenance/admin-content.php:141
    1311 msgid "copy to clipboard"
    1312 msgstr "copiar al portapapeles"
    1313 
    1314 #: inc/maintenance/admin-content.php:139
    1315 msgid "copied to clipboard!"
    1316 msgstr "¡copiado en el portapapeles!"
    1317 
    1318 #: inc/cookies/admin-content.php:63
    1319 msgid "Accent color"
    1320 msgstr "Color de acento"
    1321 
    1322 #: inc/cookies/admin-content.php:65
    1323 msgid "Restore default color"
    1324 msgstr "Restaurar color por defecto"
    1325 
    1326 #: inc/cookies/class-machete-cookies-module.php:35
    1327 msgid "This website uses both technical cookies, essential for you to browse the website and use its features, and third-party cookies we use for marketing and data analytics porposes, as explained in our <a href=\"/cookies/\">cookie policy</a>."
    1328 msgstr "Esta web utiliza tanto cookies técnicas, esenciales para que puedas navegar por el sitio web y utilizar sus funciones, como cookies de terceros que utilizamos con fines de marketing y análisis de datos, como se explica en nuestra <a href=\"/cookies/\">política de cookies</a>."
     1293#. translators: %s: five stars
     1294#: machete-admin.php:81
     1295msgid "If you like <strong>Machete</strong>, please help us %1$sleaving a 5&starf; rating%2$s. Thank you!"
     1296msgstr "Si te gusta <strong>Machete</strong>, ayúdanos %1$sdejando una valoración de 5&starf;%2$s. ¡Gracias!"
  • machete/trunk/languages/machete.pot

    r3109168 r3112321  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Machete 4.0.3\n"
     5"Project-Id-Version: Machete \n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/machete\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-06-28T08:10:39+00:00\n"
     12"POT-Creation-Date: 2024-0+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.9.0\n"
     14"X-Generator: WP-CLI 2..0\n"
    1515"X-Domain: machete\n"
    1616
    1717#. Plugin Name of the plugin
     18
    1819msgid "Machete"
    1920msgstr ""
    2021
    2122#. Plugin URI of the plugin
     23
    2224msgid "https://machetewp.com"
    2325msgstr ""
    2426
    2527#. Description of the plugin
     28
    2629msgid "Machete is a lean and simple suite of tools that makes WordPress development easier: cookie bar, tracking codes, custom code editor, header cleanup, post and page cloner"
    2730msgstr ""
    2831
    2932#. Author of the plugin
     33
    3034msgid "Nilo Velez"
    3135msgstr ""
    3236
    3337#. Author URI of the plugin
     38
    3439msgid "https://www.nilovelez.com"
    3540msgstr ""
     
    9499msgstr ""
    95100
    96 #: inc/class-machete-module.php:161
    97 #: inc/utils/class-machete-utils-module.php:413
    98 msgid "Settings successfully restored from backup"
    99 msgstr ""
    100 
    101 #: inc/class-machete-module.php:163
    102 #: inc/utils/class-machete-utils-module.php:415
    103 msgid "Error restoring settings backup"
    104 msgstr ""
    105 
    106 #: inc/class-machete-module.php:184
     101#: inc/class-machete-module.php:162
    107102msgid "Options saved!"
    108103msgstr ""
    109104
    110 #: inc/class-machete-module.php:190
     105#: inc/class-machete-module.php:1
    111106#: inc/class-machete.php:181
    112107#: inc/class-machete.php:219
     
    114109msgstr ""
    115110
    116 #: inc/class-machete-module.php:196
     111#: inc/class-machete-module.php:1
    117112msgid "No changes were needed."
    118113msgstr ""
    119114
    120 #: inc/class-machete-module.php:250
     115#: inc/class-machete-module.php:2
    121116msgid "This function needs direct access to the filesystem."
    122117msgstr ""
    123118
    124 #: inc/class-machete-module.php:256
     119#: inc/class-machete-module.php:2
    125120msgid "There was a problem accessing the filesystem. Check your permissions."
    126121msgstr ""
     
    11031098msgstr ""
    11041099
    1105 #. Translators: <head>.
    1106 #. Translators: <body>.
     1100#. Translators: <head> or <body>.
    11071101#: inc/utils/admin-content.php:73
    11081102#: inc/utils/admin-content.php:75
     
    13291323#. translators: %s: five stars
    13301324#: machete-admin.php:81
    1331 msgid "If you like <strong>Machete</strong>, please %1$sleave us a rating of %2$s. Thank you!"
     1325msgid "If you like <strong>Machete</strong>, please %2$s. Thank you!"
    13321326msgstr ""
    13331327
  • machete/trunk/machete.php

    r3109168 r3112321  
    44 * Plugin URI: https://machetewp.com
    55 * Description: Machete is a lean and simple suite of tools that makes WordPress development easier: cookie bar, tracking codes, custom code editor, header cleanup, post and page cloner
    6  * Version: 5.0
     6 * Version: 5.0
    77 * Requires at least: 4.6
    88 * Requires PHP: 7.4
  • machete/trunk/readme.txt

    r3110611 r3112321  
    55Requires PHP: 7.4
    66Requires at least: 4.6
    7 Tested up to: 6.5
    8 Stable tag: 5.0
     7Tested up to: 6.
     8Stable tag: 5.0
    99License: WTFPL
    1010License URI: http://www.wtfpl.net/txt/copying/
     
    7878== Changelog ==
    7979
     80
     81
     82
     83
     84
    8085= 5.0 =
    8186* Checked for compatibility with WordPress 6.5.x
Note: See TracChangeset for help on using the changeset viewer.