Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions admin/admin-emails.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function email_acf_fields( $field_group ) {
'id' => '',
),
'default_value' => '',
'placeholder' => 'Name this email for your reference',
'placeholder' => __( 'Name this email for your reference', 'advanced-forms' ),
'prepend' => '',
'append' => '',
'maxlength' => '',
Expand All @@ -148,7 +148,7 @@ function email_acf_fields( $field_group ) {
'class' => '',
'id' => '',
),
'message' => 'Yes',
'message' => __( 'Yes', 'advanced-forms' ),
'default_value' => 1,
),
array (
Expand Down Expand Up @@ -239,7 +239,7 @@ function email_acf_fields( $field_group ) {
'label' => __( 'From', 'advanced-forms' ),
'name' => 'from',
'type' => 'text',
'instructions' => 'Must be either an email address or on the form "Name <Email address>".',
'instructions' => __( 'Must be either an email address or on the form "Name <Email address>".', 'advanced-forms' ),
'required' => 0,
'conditional_logic' => 0,
'wrapper' => array (
Expand Down
4 changes: 2 additions & 2 deletions admin/admin-entries.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ function add_form_settings_fields( $field_group ) {
'message' => '',
'default_value' => 0,
'ui' => 1,
'ui_on_text' => 'Yes',
'ui_off_text' => 'No',
'ui_on_text' => __( 'Yes', 'advanced-forms' ),
'ui_off_text' => __( 'No', 'advanced-forms' ),
);


Expand Down
2 changes: 1 addition & 1 deletion admin/forms/forms-import.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function import_form() {

<div id="poststuff" class="af-postbox-wrapper">
<div class="postbox af-postbox-left">
<h2 class="hndle"><span>Import JSON file</span></h2>
<h2 class="hndle"><span><?php echo __( 'Import JSON file', 'advanced-forms' ); ?></span></h2>
<div class="inside">
<form method="post" enctype="multipart/form-data">
<p>
Expand Down