Plugin Directory

Changeset 1381778


Ignore:
Timestamp:
03/30/2016 07:07:48 AM (10 years ago)
Author:
Jebble
Message:

fix i18n

Location:
gf-uploads-as-attachments
Files:
5 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • gf-uploads-as-attachments/trunk/gforms-uploads-as-attachments.php

    r1381769 r1381778  
    44Plugin URI: https://github.com/Jebble/Gravity-Forms-Uploads-as-Attachments
    55Description: Adds an option to send files from the fileupload field(s) as attachment with notifications
    6 Version: 1.1.0
     6Version: 1.1.1
    77Author: Jebble
    88Author URI: http://jebble.nl/
    9 Text Domain: jbl-gfuaa
     9Text Domain: gf-uploads-as-attachments
     10Domain Path: /languages
    1011*/
     12
     13function jbl_gfuaa_load_text_domain() {
     14    load_plugin_textdomain( 'gf-uploads-as-attachments', FALSE, basename( dirname( __FILE__ ) ) . '/languages/' );
     15}
     16add_action( 'plugins_loaded', 'jbl_gfuaa_load_text_domain' );
    1117
    1218add_action( 'admin_init', 'jbl_check_gforms' );
     
    4349            <th colspan=2>
    4450                <hr>
    45                 <strong>' . __( 'Uploads as Attachments settings', 'jbl-gfuaa' ) . ': </strong>
     51                <strong>' . __( 'Uploads as Attachments settings', 'gf-uploads-as-attachments' ) . ': </strong>
    4652            </th>
    4753        </tr>
    4854        <tr valign="top">
    4955            <th scope="row">
    50                 <label for="jbl_gfuaa_enable">' . __( 'Enable', 'jbl-gfuaa' ) . '</label>
     56                <label for="jbl_gfuaa_enable">' . __( 'Enable', 'gf-uploads-as-attachments' ) . '</label>
    5157            </th>
    5258            <td>
    5359                <input type="checkbox" id="jbl_gfuaa_enable" name="jbl_gfuaa_enable" value="1"' . $checked_enable . '>
    54                 <label for="jbl_gfuaa_enable" class="inline">' . __( 'Add fileupload fields from this form as attachments to this notification', 'jbl-gfuaa' ) . '</label>
     60                <label for="jbl_gfuaa_enable" class="inline">' . __( 'Add fileupload fields from this form as attachments to this notification', 'gf-uploads-as-attachments' ) . '</label>
    5561                <br>
    5662            </td>
     
    5864        <tr valign="top">
    5965            <th scope="row">
    60                 <label for="jbl_gfuaa_delete_files_after">' . __( 'Delete files', 'jbl-gfuaa' ) . '</label>
     66                <label for="jbl_gfuaa_delete_files_after">' . __( 'Delete files', 'gf-uploads-as-attachments' ) . '</label>
    6167            </th>
    6268            <td>
    6369                <input type="checkbox" id="jbl_gfuaa_delete_files_after" name="jbl_gfuaa_delete_files_after" value="1"' . $checked_delete_files_after . '>
    64                 <label for="jbl_gfuaa_delete_files_after" class="inline">' . __( 'Delete uploaded files from server after notification sent?', 'jbl-gfuaa' ) . '</label>
     70                <label for="jbl_gfuaa_delete_files_after" class="inline">' . __( 'Delete uploaded files from server after notification sent?', 'gf-uploads-as-attachments' ) . '</label>
    6571                <br>
    6672            </td>
  • gf-uploads-as-attachments/trunk/readme.txt

    r1381772 r1381778  
    44Requires at least: 2.5.0
    55Tested up to: 4.4
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77License: GPLv2 or later.
    88
Note: See TracChangeset for help on using the changeset viewer.