From 575be1267533e194229a36bb3aa791d06587be3a Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:17:30 -0700 Subject: [PATCH 1/6] Fixed: Restored single entry links The `$input_type` wasn't being set as `id` --- readme.txt | 2 ++ template-row.php | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index d9b5598..ad9b1d3 100644 --- a/readme.txt +++ b/readme.txt @@ -233,6 +233,8 @@ Since 3.6.3, the Directory plugin displays formatted values (like currency). To == Changelog == +* Fixed: Restored single entry links +* Fixed: Displaying IP address, other default entry values = 3.6.3 (on October 3, 2014) = * Modified: Values now using Gravity Forms formatting by default. Most field types won't change, but some will look different, including pricing fields * Modified: Removed `wpautop` and `fulltext` parameters - full text, styled using paragraphs is always used diff --git a/template-row.php b/template-row.php index 92fce9b..c0ff378 100644 --- a/template-row.php +++ b/template-row.php @@ -49,7 +49,11 @@ $value = GFCommon::get_lead_field_display($field, $value, $lead["currency"]); } - if(GFCommon::is_post_field($columns[$field_id])) { + // `id`, `ip`, etc. + if( !is_numeric( $field_id ) ) { + $input_type = $field_id; + } + elseif( GFCommon::is_post_field($columns[$field_id])) { $input_type = $field['type']; } else { $input_type = RGFormsModel::get_input_type($field); From b3ea9c821b8d07a534863bf5ade90807714f8f72 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:17:43 -0700 Subject: [PATCH 2/6] Business Hours field support --- readme.txt | 1 + template-row.php | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/readme.txt b/readme.txt index ad9b1d3..3bb1ecd 100644 --- a/readme.txt +++ b/readme.txt @@ -235,6 +235,7 @@ Since 3.6.3, the Directory plugin displays formatted values (like currency). To * Fixed: Restored single entry links * Fixed: Displaying IP address, other default entry values +* Modified: Added support for future Business Hours field = 3.6.3 (on October 3, 2014) = * Modified: Values now using Gravity Forms formatting by default. Most field types won't change, but some will look different, including pricing fields * Modified: Removed `wpautop` and `fulltext` parameters - full text, styled using paragraphs is always used diff --git a/template-row.php b/template-row.php index c0ff378..a5ae433 100644 --- a/template-row.php +++ b/template-row.php @@ -61,6 +61,10 @@ switch($input_type){ + case "business_hours": + $value = $display_value; + break; + case "address" : case "radio" : case "checkbox" : From 9841a123ccdfe3f74ef5822a27425ef921d680d2 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:18:31 -0700 Subject: [PATCH 3/6] Image generation refactoring & Fixes --- gravity-forms-addons.php | 141 ++++++++++++++++++++++++--------------- readme.txt | 6 ++ template-row.php | 68 +++++++------------ 3 files changed, 119 insertions(+), 96 deletions(-) diff --git a/gravity-forms-addons.php b/gravity-forms-addons.php index 88fb892..c30bed9 100644 --- a/gravity-forms-addons.php +++ b/gravity-forms-addons.php @@ -676,60 +676,9 @@ static public function lead_detail($Form, $lead, $allow_display_empty_fields=fal $valueArray = explode("|:|", $value); @list($url, $title, $caption, $description) = $valueArray; - $size = ''; + if(!empty($url)){ - //displaying thumbnail (if file is an image) or an icon based on the extension - $icon = GFEntryList::get_icon_url($url); - if(!preg_match('/icon\_image\.gif/ism', $icon)) { - $lightboxclass = ''; - $src = $icon; - if(!empty($getimagesize)) { - $size = @getimagesize($src); - $img = ""; - } else { - $size = false; - $img = ""; - } - } else { // No thickbox for non-images please - switch(strtolower(trim($postimage))) { - case 'image': - $src = $url; - break; - case 'icon': - default: - $src = $icon; - break; - } - if(!empty($getimagesize)) { - $size = @getimagesize($src); - } else { - $size = false; - } - } - $img = array( - 'src' => $src, - 'size' => $size, - 'title' => $title, - 'caption' => $caption, - 'description' => $description, - 'url' => esc_attr($url), - 'code' => isset($size[3]) ? "" : "" - ); - $img = apply_filters('kws_gf_directory_lead_image', apply_filters('kws_gf_directory_lead_image_'.$postimage, apply_filters('kws_gf_directory_lead_image_'.$lead['id'], $img))); - - //lightbox class - $lightboxclass = ''; - if(!empty($lightboxsettings['images'])) { - if(wp_script_is('colorbox', 'registered')) { - $lightboxclass = ' class="colorbox lightbox"'; - } else if(wp_script_is('thickbox', 'registered')) { - $lightboxclass = ' class="thickbox lightbox"'; - } - } - // link target - $target = ($linknewwindow && empty($lightboxsettings['images'])) ? ' target="_blank"' : ''; - - $value = $display_value = "{$img['code']}"; + $value = $display_value = self::render_image_link( $url, $lead, $options, $title, $caption, $description ); } break; @@ -1610,7 +1559,93 @@ function Search(search, sort_field_id, sort_direction, search_criteria ){ return $content; // Return it! } + /** + * Render image link HTML + * + * @since 3.7 + * @param [type] $url [description] + * @param string $title [description] + * @param string $caption [description] + * @param string $description [description] + * @return [type] [description] + */ + static private function render_image_link( $url, $lead, $options, $title = '', $caption = '', $description = '' ) { + + extract($options); + + $target = ($linknewwindow && empty($lightboxsettings['images'])) ? ' target="_blank"' : ''; + + $size = false; + if( !empty( $options['getimagesize'] )) { + $size = @getimagesize( $url ); + } + + //displaying thumbnail (if file is an image) or an icon based on the extension + $icon = GFEntryList::get_icon_url($url); + if(!preg_match('/icon\_image\.gif/ism', $icon)) { + $src = $icon; + if(!empty($size)) { + $img = ""; + } else { + $img = ""; + } + } else { // No thickbox for non-images please + switch( strtolower( trim( $options['postimage'] ) ) ) { + case 'image': + $src = $url; + break; + case 'icon': + default: + $src = $icon; + break; + } + } + $img = array( + 'src' => $src, + 'size' => $size, + 'title' => $title, + 'caption' => $caption, + 'description' => $description, + 'url' => esc_url_raw( $url ), + 'code' => isset($size[3]) ? "" : "" + ); + $img = apply_filters('kws_gf_directory_lead_image', apply_filters('kws_gf_directory_lead_image_'.$options['postimage'], apply_filters('kws_gf_directory_lead_image_'.$lead['id'], $img))); + + $lightboxclass = ''; + + if(!empty($lightboxsettings['images']) && self::is_image_file( $url ) ) { + if(wp_script_is('colorbox', 'registered')) { + $lightboxclass = ' class="colorbox lightbox"'; + } else if(wp_script_is('thickbox', 'registered')) { + $lightboxclass = ' class="thickbox lightbox"'; + } + + if(in_array('images', $lightboxsettings) || !empty($lightboxsettings['images'])) { + $lightboxclass .= ' rel="directory_all directory_images"'; + } + } + + $value = "{$img['code']}"; + + $value = apply_filters( 'kws_gf_directory_render_image_link', $value, $url, $lead, $options, $title, $caption, $description ); + + return $value; + } + + /** + * Verify that the src URL matches image patterns. + * + * + * @return boolean True: matches pattern; False: does not match pattern. + */ + public static function is_image_file( $src ) { + + $info = pathinfo( $src ); + $image_exts = apply_filters('kws_gf_directory_image_extensions', array( 'jpg', 'jpeg', 'jpe', 'gif', 'png', 'bmp', 'tif', 'tiff', 'ico' )); + + return isset( $info['extension'] ) && in_array(strtolower( $info['extension'] ), $image_exts); + } /** * render_search_dropdown function. diff --git a/readme.txt b/readme.txt index 3bb1ecd..b9afa3f 100644 --- a/readme.txt +++ b/readme.txt @@ -235,7 +235,13 @@ Since 3.6.3, the Directory plugin displays formatted values (like currency). To * Fixed: Restored single entry links * Fixed: Displaying IP address, other default entry values +* Fixed: Restored respecting settings for image upload formatting +* Fixed: Lightboxes no longer work for non-image files + - Added `kws_gf_directory_image_extensions` filter to modify what image formats to support +* Added: Improved support for multiple file uploads * Modified: Added support for future Business Hours field +* Modified: Refactored code; created `render_image_link()` method to render images + = 3.6.3 (on October 3, 2014) = * Modified: Values now using Gravity Forms formatting by default. Most field types won't change, but some will look different, including pricing fields * Modified: Removed `wpautop` and `fulltext` parameters - full text, styled using paragraphs is always used diff --git a/template-row.php b/template-row.php index a5ae433..b618602 100644 --- a/template-row.php +++ b/template-row.php @@ -97,54 +97,36 @@ break; case "fileupload" : + + // Multi-file uploads are stored as JSON array. Single images are URLs + $images = json_decode( $value, true ); + + // Only one image, not array of JSON-encoded images + if( !is_array( $images ) ) { + $images = array( $value ); + } + + $image_output = array(); + foreach ( $images as $key => $url ) { + if(!empty($url)){ + $image_output[] = GFDirectory::render_image_link( $url, $lead, $options ); + } + } + + if( sizeof( $image_output ) > 1 ) { + $value = '
  • '.implode('
  • ', $image_output).'
'; + } else { + $value = implode('', $image_output); + } + + break; case "post_image" : $valueArray = explode("|:|", $value); @list($url, $title, $caption, $description) = $valueArray; - $size = ''; + if(!empty($url)){ - //displaying thumbnail (if file is an image) or an icon based on the extension - $icon = GFEntryList::get_icon_url($url); - if(!preg_match('/icon\_image\.gif/ism', $icon)) { - $src = $icon; - if(!empty($getimagesize)) { - $size = @getimagesize($src); - $img = ""; - } else { - $size = false; - $img = ""; - } - } else { // No thickbox for non-images please - switch(strtolower(trim($postimage))) { - case 'image': - $src = $url; - break; - case 'icon': - default: - $src = $icon; - break; - } - if(!empty($getimagesize)) { - $size = @getimagesize($src); - } else { - $size = false; - } - } - $img = array( - 'src' => $src, - 'size' => $size, - 'title' => $title, - 'caption' => $caption, - 'description' => $description, - 'url' => esc_attr($url), - 'code' => isset($size[3]) ? "" : "" - ); - $img = apply_filters('kws_gf_directory_lead_image', apply_filters('kws_gf_directory_lead_image_'.$postimage, apply_filters('kws_gf_directory_lead_image_'.$lead['id'], $img))); - - if(in_array('images', $lightboxsettings) || !empty($lightboxsettings['images'])) { - $lightboxclass .= ' rel="directory_all directory_images"'; - } - $value = "{$img['code']}"; + $value = GFDirectory::render_image_link( $url, $lead, $options, $title, $caption, $description ); } break; From ae03b19e91ee0f51330c0299cc8f3de379d3765f Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:19:14 -0700 Subject: [PATCH 4/6] Don't escape links --- readme.txt | 1 + template-row.php | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/readme.txt b/readme.txt index b9afa3f..a08f1c2 100644 --- a/readme.txt +++ b/readme.txt @@ -235,6 +235,7 @@ Since 3.6.3, the Directory plugin displays formatted values (like currency). To * Fixed: Restored single entry links * Fixed: Displaying IP address, other default entry values +* Fixed: HTML links are no longer displayed as text * Fixed: Restored respecting settings for image upload formatting * Fixed: Lightboxes no longer work for non-image files - Added `kws_gf_directory_image_extensions` filter to modify what image formats to support diff --git a/template-row.php b/template-row.php index b618602..6c91bb1 100644 --- a/template-row.php +++ b/template-row.php @@ -198,9 +198,6 @@ } $value = "{$value}"; } - else { - $value = esc_html($value); - } } if($is_first_column) { echo "\n"; } if($value !== NULL) { From 6b2eea802ab6b26e7f6f93643ea6eff6ebb54a80 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:19:49 -0700 Subject: [PATCH 5/6] Version 3.7, baby! --- gravity-forms-addons.php | 4 ++-- readme.txt | 12 ++++++++++++ template-row.php | 14 ++++++++++---- 3 files changed, 24 insertions(+), 6 deletions(-) diff --git a/gravity-forms-addons.php b/gravity-forms-addons.php index c30bed9..c56a7ea 100644 --- a/gravity-forms-addons.php +++ b/gravity-forms-addons.php @@ -4,7 +4,7 @@ Plugin URI: http://katz.co/gravity-forms-addons/ Description: Turn Gravity Forms into a great WordPress directory...and more! Author: Katz Web Services, Inc. -Version: 3.6.3 +Version: 3.7 Author URI: http://www.katzwebservices.com Text Domain: gravity-forms-addons License: GPLv2 or later @@ -36,7 +36,7 @@ class GFDirectory { private static $path = "gravity-forms-addons/gravity-forms-addons.php"; private static $slug = "gravity-forms-addons"; - private static $version = "3.6.3"; + private static $version = "3.7"; private static $min_gravityforms_version = "1.5"; public static function directory_defaults($args = array()) { diff --git a/readme.txt b/readme.txt index a08f1c2..d727257 100644 --- a/readme.txt +++ b/readme.txt @@ -233,6 +233,7 @@ Since 3.6.3, the Directory plugin displays formatted values (like currency). To == Changelog == += 3.7 on December 17 = * Fixed: Restored single entry links * Fixed: Displaying IP address, other default entry values * Fixed: HTML links are no longer displayed as text @@ -545,6 +546,17 @@ Note: This update has only been tested with WordPress 3.2 and Gravity Forms 1.5. == Upgrade Notice == += 3.7 on December 17 = +* Fixed: Restored single entry links +* Fixed: Displaying IP address, other default entry values +* Fixed: HTML links are no longer displayed as text +* Fixed: Restored respecting settings for image upload formatting +* Fixed: Lightboxes no longer work for non-image files + - Added `kws_gf_directory_image_extensions` filter to modify what image formats to support +* Added: Improved support for multiple file uploads +* Modified: Added support for future Business Hours field +* Modified: Refactored code; created `render_image_link()` method to render images + = 3.6.3 (on October 3, 2014) = * Modified: Values now using Gravity Forms formatting by default. Most field types won't change, but some will look different, including pricing fields * Modified: Removed `wpautop` and `fulltext` parameters - full text, styled using paragraphs is always used diff --git a/template-row.php b/template-row.php index 6c91bb1..dcf34fe 100644 --- a/template-row.php +++ b/template-row.php @@ -39,14 +39,15 @@ } } - $value = RGFormsModel::get_lead_field_value($lead, $field); + $display_value = $value; /** * @since 3.6.3 */ if( apply_filters('kws_gf_directory_format_value', true ) ) { - $value = GFCommon::get_lead_field_display($field, $value, $lead["currency"]); + $display_value = GFCommon::get_lead_field_display($field, $value, $lead["currency"]); + $display_value = apply_filters("gform_entry_field_value", $display_value, $field, $lead, $form); } // `id`, `ip`, etc. @@ -121,6 +122,7 @@ break; case "post_image" : + $valueArray = explode("|:|", $value); @list($url, $title, $caption, $description) = $valueArray; @@ -180,9 +182,12 @@ break; default: - $input_type = 'text'; - if(is_email($value) && $linkemail) {$value = "$value"; } + + if(is_email($value) && $linkemail) { + $value = "$value"; + } + elseif(preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $value) && $linkwebsite) { $href = $value; if(!empty($lightboxsettings['images'])) { @@ -211,6 +216,7 @@ $value = empty($value) ? ' ' : $value; + // If the current field is the ID if(isset($entrylinkcolumns[floor($field_id)]) || isset($entrylinkcolumns['id']) && $input_type == 'id') { if($input_type == 'id' && $entry) { From 8de317eccdb3fba5c8e26f3f2b454b9a891f21f6 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 17 Dec 2014 22:25:22 -0700 Subject: [PATCH 6/6] Empty translations --- languages/gravity-forms-addons-ar.mo | Bin 0 -> 845 bytes languages/gravity-forms-addons-ar.po | 1052 +++++++++++++++++++++++ languages/gravity-forms-addons-bn_BD.mo | Bin 0 -> 763 bytes languages/gravity-forms-addons-bn_BD.po | 1052 +++++++++++++++++++++++ languages/gravity-forms-addons-bn_IN.mo | Bin 0 -> 777 bytes languages/gravity-forms-addons-bn_IN.po | 1052 +++++++++++++++++++++++ languages/gravity-forms-addons-fr.mo | Bin 0 -> 761 bytes languages/gravity-forms-addons-fr.po | 1052 +++++++++++++++++++++++ languages/gravity-forms-addons.mo | Bin 748 -> 748 bytes languages/gravity-forms-addons.po | 68 +- 10 files changed, 4241 insertions(+), 35 deletions(-) create mode 100644 languages/gravity-forms-addons-ar.mo create mode 100644 languages/gravity-forms-addons-ar.po create mode 100644 languages/gravity-forms-addons-bn_BD.mo create mode 100644 languages/gravity-forms-addons-bn_BD.po create mode 100644 languages/gravity-forms-addons-bn_IN.mo create mode 100644 languages/gravity-forms-addons-bn_IN.po create mode 100644 languages/gravity-forms-addons-fr.mo create mode 100644 languages/gravity-forms-addons-fr.po diff --git a/languages/gravity-forms-addons-ar.mo b/languages/gravity-forms-addons-ar.mo new file mode 100644 index 0000000000000000000000000000000000000000..5c51e39abc7db512822b88bf7a594711fe3ad964 GIT binary patch literal 845 zcmZ8eO>Yx15G{h!9^uMi4p4!JckN9|5^uNArXQ->iUUi7|$?YW4^(Bj@iO=(ZhU&2YptOh0L;|`%+N>NC@ z%KO4~`(M`sdVsnQ6eGA6wIw4XR9y>zoN1V71zRMPn89%?x*EU>T}GGzRgoQPUh!p=B^VRL#V*Gp~2^>tBO z4q29DGRYKYtvJb6ZprcF5vUdKFu9)AsjdnVL%LzG$auX8$II$!A0KL@2s?Lg\n" +"Language-Team: Arabic (http://www.transifex.com/projects/p/gravity-forms-directory/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: Poedit 1.7.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: admin.php:52 +#, php-format +msgid "%d entries" +msgstr "" + +#: admin.php:52 +msgid "1 entry" +msgstr "" + +#: admin.php:60 +#, php-format +msgid "%s approved." +msgstr "" + +#: admin.php:65 +#, php-format +msgid "%s disapproved." +msgstr "" + +#: admin.php:93 +#, php-format +msgid "" +"%sGravity Forms is installed but not active. %sActivate Gravity Forms%s to " +"use the Gravity Forms Directory & Addons plugin.%s" +msgstr "" + +#: admin.php:95 +#, php-format +msgid "" +"%sGravity Forms cannot be found%s\n" +"\n" +"\t\t\t\tThe %sGravity Forms plugin%s must be installed and activated for the Gravity Forms Addons plugin to work.\n" +"\n" +"\t\t\t\tIf you haven't installed the plugin, you can %3$spurchase the plugin here%4$s. If you have, and you believe this notice is in error, %5$sstart a topic on the plugin support forum%4$s.\n" +"\n" +"\t\t\t\t%6$s%7$sBuy Gravity Forms%4$s%8$s\n" +"\t\t\t\t" +msgstr "" + +#: admin.php:119 +#, php-format +msgid "" +"Congratulations - the Gravity Forms Directory & Addons plugin has been " +"installed. %sGo to the settings page%s to read usage instructions and " +"configure the plugin default settings. %sGo to settings page%s" +msgstr "" + +#: admin.php:183 +msgid "Edit this entry" +msgstr "" + +#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:829 +msgid "Edit" +msgstr "" + +#: admin.php:194 +#, php-format +msgid "Fields for Form ID %s" +msgstr "" + +#: admin.php:197 +msgid "IDs" +msgstr "" + +#: admin.php:308 +msgid "Please select a form" +msgstr "" + +#: admin.php:343 +msgid "Insert A Directory" +msgstr "" + +#: admin.php:345 +msgid "Select a form below to add it to your post or page." +msgstr "" + +#: admin.php:350 +msgid "Select a Form" +msgstr "" + +#: admin.php:360 +msgid "This form will be the basis of your directory." +msgstr "" + +#: admin.php:369 select_directory_columns.php:231 +msgid "Cancel" +msgstr "" + +#: admin.php:384 +#, php-format +msgid "Number of entries to show at once. Use %s0%s to show all entries." +msgstr "" + +#: admin.php:386 admin.php:392 +msgid "Table" +msgstr "" + +#: admin.php:387 admin.php:393 +msgid "Unordered List" +msgstr "" + +#: admin.php:388 admin.php:394 +msgid "Definition List" +msgstr "" + +#: admin.php:389 +msgid "Format for directory listings (directory view)" +msgstr "" + +#: admin.php:395 +msgid "Format for single entries (single entry view)" +msgstr "" + +#: admin.php:397 +msgid "Show the search field" +msgstr "" + +#: admin.php:398 +msgid "" +"Automatically convert directory into Approved-only when an Approved field is" +" detected." +msgstr "" + +#: admin.php:399 +#, php-format +msgid "" +"(If Smart Approval above is not enabled) Show only entries that have been " +"Approved (have a field in the form that is an Admin-only checkbox with a " +"value of 'Approved'). %sNote:%s This will hide entries that have not been " +"explicitly approved.%s" +msgstr "" + +#: admin.php:415 +msgid "If there's a displayed Entry ID column, add link to each full entry" +msgstr "" + +#: admin.php:417 +msgid "" +"Calculate image sizes (Warning: this may slow down the directory loading " +"speed!)" +msgstr "" + +#: admin.php:419 +msgid "Show image icon" +msgstr "" + +#: admin.php:420 +msgid "Show full image" +msgstr "" + +#: admin.php:421 +msgid "How do you want images to appear in the directory?" +msgstr "" + +#: admin.php:425 +#, php-format +msgid "Start date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:426 +#, php-format +msgid "End date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:430 +#, php-format +msgid "" +"Show Admin-Only columns %s(in Gravity Forms, Admin-Only fields are defined " +"by clicking the Advanced tab on a field in the Edit Form view, then editing " +"Visibility > Admin Only)%s" +msgstr "" + +#: admin.php:431 +msgid "" +"Allow logged-in users to edit entries they created. Will add an 'Edit Your " +"Entry' field to the Single Entry View." +msgstr "" + +#: admin.php:432 +msgid "" +"Display entries only the the creator of the entry (users will not see other " +"people's entries)." +msgstr "" + +#: admin.php:433 +#, php-format +msgid "" +"Allow %sadministrators%s to edit all entries. Will add an 'Edit Your Entry' " +"field to the Single Entry View." +msgstr "" + +#: admin.php:436 +#, php-format +msgctxt "Lightbox style" +msgid "Style %d" +msgstr "" + +#: admin.php:451 +msgid "Images" +msgstr "" + +#: admin.php:452 +msgid "Entry Links (Open entry details in lightbox)" +msgstr "" + +#: admin.php:453 +msgid "Website Links (non-entry)" +msgstr "" + +#: admin.php:454 +msgid "Set what type of links should be loaded in the lightbox" +msgstr "" + +#: admin.php:459 +msgid "Use the TableSorter jQuery plugin to sort the table?" +msgstr "" + +#: admin.php:460 +msgid "Show a form title?" +msgstr "" + +#: admin.php:460 +msgid "By default, the title will be the form title." +msgstr "" + +#: admin.php:461 +msgid "Do you want to show 'Displaying 1-19 of 19'?" +msgstr "" + +#: admin.php:462 +#, php-format +msgid "Show the top heading row (%s<thead>%s)" +msgstr "" + +#: admin.php:463 +#, php-format +msgid "Show the bottom heading row (%s<tfoot>%s)" +msgstr "" + +#: admin.php:464 +msgid "" +"Show each page number (eg: 1 2 3 4 5 6 7 8) instead of summary (eg: 1 2 3 " +"... 8 »)" +msgstr "" + +#: admin.php:465 +#, php-format +msgid "" +"Use JavaScript for sorting (otherwise, %slinks%s will be used for sorting by" +" column)" +msgstr "" + +#: admin.php:466 +msgid "" +"Override the options from Gravity Forms, and use standard PHP date formats" +msgstr "" + +#: admin.php:470 +msgid "Convert email fields to email links" +msgstr "" + +#: admin.php:471 +msgid "Convert URLs to links" +msgstr "" + +#: admin.php:472 +#, php-format +msgid "Show more simple links for URLs (strip %shttp://%s, %swww.%s, etc.)" +msgstr "" + +#: admin.php:473 +#, php-format +msgid "%sOpen links in new window?%s (uses %s)" +msgstr "" + +#: admin.php:474 +#, php-format +msgid "%sAdd %snofollow%s to all links%s, including emails" +msgstr "" + +#: admin.php:478 +msgid "Add the formatted address as a column at the end of the table" +msgstr "" + +#: admin.php:479 +msgid "" +"Hide the pieces that make up an address (Street, City, State, ZIP, Country, " +"etc.)" +msgstr "" + +#: admin.php:483 +msgid "Entry Detail" +msgstr "" + +#: admin.php:483 +msgid "Title of entry lightbox window" +msgstr "" + +#: admin.php:484 +msgid "Entry Detail Table Caption" +msgstr "" + +#: admin.php:484 +#, php-format +msgid "" +"The text displayed at the top of the entry details. Use " +"%s%%%%formtitle%%%%%s and %s%%%%leadid%%%%%s as variables that will be " +"replaced." +msgstr "" + +#: admin.php:485 +msgid "View entry details" +msgstr "" + +#: admin.php:485 +msgid "Link text to show full entry" +msgstr "" + +#: admin.php:486 +msgid "More Info" +msgstr "" + +#: admin.php:486 +msgid "Entry ID column title" +msgstr "" + +#: admin.php:487 +msgid "← Back to directory" +msgstr "" + +#: admin.php:487 +msgid "" +"The text of the link to return to the directory view from the single entry " +"view." +msgstr "" + +#: admin.php:488 +msgid "" +"When viewing full entry, show entry only? Otherwise, show entry with " +"directory below" +msgstr "" + +#: admin.php:489 +msgid "" +"When returning to directory view from single entry view, link to specific " +"anchor row?" +msgstr "" + +#: admin.php:493 +msgid "Content Settings" +msgstr "" + +#: admin.php:494 +msgid "Administration of Entries" +msgstr "" + +#: admin.php:495 +msgid "Lightbox Options" +msgstr "" + +#: admin.php:496 +msgid "Formatting Options" +msgstr "" + +#: admin.php:497 +msgid "Link Settings" +msgstr "" + +#: admin.php:498 +msgid "Address Options" +msgstr "" + +#: admin.php:502 +msgid "Show advanced settings" +msgstr "" + +#: admin.php:515 +msgid "Directory View" +msgstr "" + +#: admin.php:516 +msgid "These settings affect how multiple entries are shown at once." +msgstr "" + +#: admin.php:527 +msgid "Additional Settings" +msgstr "" + +#: admin.php:528 +msgid "These settings affect both the directory view and single entry view." +msgstr "" + +#: admin.php:543 admin.php:545 +msgid "Class for the ,
    , or
    " +msgstr "" + +#: admin.php:544 +msgid "inline CSS for the
,
    , or
    " +msgstr "" + +#: admin.php:546 +msgid "Inline CSS for all
's,
  • 's, or
    's" +msgstr "" + +#: admin.php:547 +msgid "Vertical align for table cells" +msgstr "" + +#: admin.php:548 +msgid "Use the input ID ( example: 1.3 or 7 or ip)" +msgstr "" + +#: admin.php:549 +#, php-format +msgid "Sort in ascending order (%sASC%s or descending (%sDESC%s)" +msgstr "" + +#: admin.php:550 +msgid "If you want to show page 8 instead of 1" +msgstr "" + +#: admin.php:551 +#, php-format +msgid "" +"Type of pagination links. %splain%s is just a string with the links " +"separated by a newline character. The other possible values are either " +"%sarray%s or %slist%s." +msgstr "" + +#: admin.php:552 +msgid "Default GF behavior is 'Entries : '" +msgstr "" + +#: admin.php:553 +msgid "Set the 'width' attribute for the
,
    , or
    " +msgstr "" + +#: admin.php:554 +#, php-format +msgid "Use %sstandard PHP date formats%s" +msgstr "" + +#: admin.php:555 +msgid "" +"Give credit to the plugin creator (who has spent over 300 hours on this free" +" plugin!) with a link at the bottom of the directory" +msgstr "" + +#: admin.php:709 +msgid "Add a Gravity Forms Directory" +msgstr "" + +#: admin.php:709 +msgid "Add Directory" +msgstr "" + +#: admin.php:719 +msgid "Directory & Addons" +msgstr "" + +#: admin.php:738 +msgid "Settings saved." +msgstr "" + +#: admin.php:824 admin.php:891 +msgid "Hide Directory Instructions" +msgstr "" + +#: admin.php:826 admin.php:889 +msgid "View Directory Instructions" +msgstr "" + +#: admin.php:842 +msgid "Gravity Forms Directory Add-on" +msgstr "" + +#: admin.php:853 +msgid "Go to the GravityView Website" +msgstr "" + +#: admin.php:854 +msgid "Better, simpler, more powerful." +msgstr "" + +#: admin.php:856 +msgid "A brand-new Directory plugin is here." +msgstr "" + +#: admin.php:861 +#, php-format +msgid "" +"%sGravityView%s is the best way to display Gravity Forms entries on your " +"website." +msgstr "" + +#: admin.php:866 +msgid "Drag & Drop interface" +msgstr "" + +#: admin.php:867 +msgid "Different layout types - display entries as a table or profiles" +msgstr "" + +#: admin.php:868 +msgid "Preset templates make it easy to get started" +msgstr "" + +#: admin.php:869 +msgid "Great support" +msgstr "" + +#: admin.php:874 +#, php-format +msgid "" +"We re-wrote the Directory plugin from the ground up to be more simple and " +"more powerful. If you like the Directory plugin, you’ll %slove%s " +"GravityView." +msgstr "" + +#: admin.php:876 +msgid "Check out GravityView" +msgstr "" + +#: admin.php:887 +msgid "Need help getting started?" +msgstr "" + +#: admin.php:900 +msgid "To integrate a form with Directory:" +msgstr "" + +#: admin.php:902 +msgid "Go to the post or page where you would like to add the directory." +msgstr "" + +#: admin.php:903 +msgid "Click the \"Add Directory\" button above the content area." +msgstr "" + +#: admin.php:904 +msgid "" +"Choose a form from the drop-down menu and configure settings as you would " +"like them." +msgstr "" + +#: admin.php:905 +#, php-format +msgid "" +"Click \"Insert Directory\". A \"shortcode\" should appear in the content " +"editor that looks similar to %s[directory form=\"#\"]%s" +msgstr "" + +#: admin.php:906 +msgid "Save the post or page" +msgstr "" + +#: admin.php:909 +msgid "Configuring Fields & Columns" +msgstr "" + +#: admin.php:911 +msgid "" +"When editing a form, click on a field to expand the field. Next, click the " +"\"Directory\" tab. There, you will find options to:" +msgstr "" + +#: admin.php:914 +msgid "" +"Choose whether you would like the field to be a link to the Single Entry " +"View;" +msgstr "" + +#: admin.php:915 +msgid "Hide the field in Directory View; and" +msgstr "" + +#: admin.php:916 +msgid "Hide the field in Single Entry View" +msgstr "" + +#: admin.php:919 +msgid "Configuring Column Visibility & Order" +msgstr "" + +#: admin.php:921 admin.php:924 +msgid "" +"When editing a form in Gravity Forms, click the link near the top-center of " +"the page named \"Directory Columns\"" +msgstr "" + +#: admin.php:925 +msgid "" +"Drag and drop columns from the right (\"Hidden Columns\") side to the left " +"(\"Visible Columns\") side." +msgstr "" + +#: admin.php:926 +msgid "Click the \"Save\" button" +msgstr "" + +#: admin.php:937 +msgid "Gravity Forms Directory" +msgstr "" + +#: admin.php:939 +msgid "Enable Gravity Forms Directory capabilities" +msgstr "" + +#: admin.php:945 +msgid "Directory Default Settings" +msgstr "" + +#: admin.php:946 +msgid "These defaults can be over-written when inserting a directory." +msgstr "" + +#: admin.php:955 +msgid "Add Referrer Data to Emails" +msgstr "" + +#: admin.php:957 +msgid "" +"Adds referrer data to entries, including the path the user took to get to " +"the form before submitting." +msgstr "" + +#: admin.php:961 +msgid "Modify Gravity Forms Admin" +msgstr "" + +#: admin.php:964 +msgid "Show option to expand Form Editor Field boxes" +msgstr "" + +#: admin.php:966 +msgid "" +"When clicking Form Editor Field boxes, toggle open and closed instead of " +"\"accordion mode\" (closing all except the clicked box)." +msgstr "" + +#: admin.php:968 +#, php-format +msgid "Makes possible direct editing of entries from %sEntries list view%s" +msgstr "" + +#: admin.php:970 +msgid "Adds a link in the Forms list view to view form IDs" +msgstr "" + +#: admin.php:975 +msgid "Save Settings" +msgstr "" + +#: edit-form.php:50 +msgid "Go to Entry" +msgstr "" + +#: edit-form.php:75 +msgid "Approved? (Admin-only)" +msgstr "" + +#: edit-form.php:77 +msgid "Approved?" +msgstr "" + +#: edit-form.php:84 edit-form.php:500 +msgid "Approved" +msgstr "" + +#: edit-form.php:160 +msgid "Ajax error while setting lead approval" +msgstr "" + +#: edit-form.php:201 +msgid "Approve" +msgstr "" + +#: edit-form.php:201 +msgid "Disapprove" +msgstr "" + +#: edit-form.php:203 +msgid "Entry not approved for directory viewing. Click to approve this entry." +msgstr "" + +#: edit-form.php:204 +msgid "Entry approved for directory viewing. Click to disapprove this entry." +msgstr "" + +#: edit-form.php:247 +msgid "Show entry in directory view?" +msgstr "" + +#: edit-form.php:268 +msgid "Use As Link to Single Entry" +msgstr "" + +#: edit-form.php:271 +msgid "Use this field as a link to single entry view" +msgstr "" + +#: edit-form.php:275 +msgid "Single Entry Link Text" +msgstr "" + +#: edit-form.php:276 +msgid "" +"Note: it is a good idea to use required fields for links to single entries " +"so there are no blank links." +msgstr "" + +#: edit-form.php:279 +msgid "Use field values from entry" +msgstr "" + +#: edit-form.php:281 +msgid "Use custom link text." +msgstr "" + +#: edit-form.php:286 +msgid "Hide This Field in Directory View?" +msgstr "" + +#: edit-form.php:289 +msgid "Hide this field in the directory view." +msgstr "" + +#: edit-form.php:292 +msgid "Only visible to logged in users with the following role:" +msgstr "" + +#: edit-form.php:294 +msgid "Any" +msgstr "" + +#: edit-form.php:295 +msgid "Author or higher" +msgstr "" + +#: edit-form.php:296 +msgid "Editor or higher" +msgstr "" + +#: edit-form.php:297 +msgid "Administrator" +msgstr "" + +#: edit-form.php:304 +msgid "Hide This Field in Single Entry View?" +msgstr "" + +#: edit-form.php:307 +msgid "Hide this field in the single entry view." +msgstr "" + +#: edit-form.php:311 +msgid "Directory Search Field" +msgstr "" + +#: edit-form.php:314 +msgid "Use this field as a search filter" +msgstr "" + +#: edit-form.php:325 +msgid "Modify Gravity Forms Directory Columns" +msgstr "" + +#: edit-form.php:325 +msgid "Directory Columns" +msgstr "" + +#: edit-form.php:343 +msgid "Directory" +msgstr "" + +#: edit-form.php:481 +#, php-format +msgid "" +"%sLink to single entry using this field%sIf you would like to link to the " +"single entry view using this link, check the box." +msgstr "" + +#: edit-form.php:482 +#, php-format +msgid "" +"%sHide in Directory View%sIf checked, this field will not be shown in the " +"directory view, even if it is visible in the %sDirectory Columns%s. If this " +"field is Admin Only (set in the Advanced tab), it will be hidden in the " +"directory view unless \"Show Admin-Only columns\" is enabled in the " +"directory. Even if \"Show Admin-Only columns\" is enabled, checking this box" +" will hide the column in the directory view." +msgstr "" + +#: edit-form.php:482 +msgid "Modify Directory Columns" +msgstr "" + +#: edit-form.php:483 +#, php-format +msgid "" +"%sHide in Single Entry View%sIf checked, this field will not be shown in the" +" single entry view of the directory." +msgstr "" + +#: edit-form.php:484 +#, php-format +msgid "" +"%sDirectory Search Field%sIf checked, add search fields to the Directory " +"search form. If this field is a text field, a text search input will be " +"added that will search only this field. Otherwise, the field choices will be" +" used to populate a dropdown menu search input. Example: if the field has " +"choices \"A\", \"B\", and \"C\", the search dropdown will have those items " +"as choices in a dropdown search field." +msgstr "" + +#: edit-form.php:505 +msgid "Entry Link" +msgstr "" + +#: edit-form.php:510 +msgid "User Edit Link" +msgstr "" + +#: field-ids.php:12 +msgid "You don't have adequate permission to preview forms." +msgstr "" + +#: field-ids.php:21 +msgid "Form Preview" +msgstr "" + +#: gravity-forms-addons.php:439 +msgid "Disapproved the lead" +msgstr "" + +#: gravity-forms-addons.php:457 +msgid "Approved the lead" +msgstr "" + +#: gravity-forms-addons.php:488 +#, php-format +msgid "%sYou do not have permission to edit this form.%s" +msgstr "" + +#: gravity-forms-addons.php:515 +#, php-format +msgid "%sThere were errors with the edit you made.%s%s" +msgstr "" + +#: gravity-forms-addons.php:527 +#, php-format +msgid "%sThe entry was successfully updated.%s" +msgstr "" + +#: gravity-forms-addons.php:553 +#, php-format +msgid "You can edit post details from the %1$spost page%2$s." +msgstr "" + +#: gravity-forms-addons.php:575 +msgid "Update Entry" +msgstr "" + +#: gravity-forms-addons.php:582 +#, php-format +msgid "%sThe link to edit this entry is not valid; it may have expired.%s" +msgstr "" + +#: gravity-forms-addons.php:646 +#, php-format +msgid "" +"(Admin-only notice) Field #%d not shown: \"Hide This Field in Single Entry " +"View\" was selected." +msgstr "" + +#: gravity-forms-addons.php:728 +msgid "Order" +msgstr "" + +#: gravity-forms-addons.php:740 +msgid "Product" +msgstr "" + +#: gravity-forms-addons.php:741 +msgid "Qty" +msgstr "" + +#: gravity-forms-addons.php:742 +msgid "Unit Price" +msgstr "" + +#: gravity-forms-addons.php:743 +msgid "Price" +msgstr "" + +#: gravity-forms-addons.php:803 +msgid "Total" +msgstr "" + +#: gravity-forms-addons.php:822 +msgid "Edit Entry" +msgstr "" + +#: gravity-forms-addons.php:824 +msgid "Edit Your Entry" +msgstr "" + +#: gravity-forms-addons.php:1367 +msgid "Search Entries:" +msgstr "" + +#: gravity-forms-addons.php:1375 +msgid "Search" +msgstr "" + +#: gravity-forms-addons.php:1396 gravity-forms-addons.php:1536 +#, php-format +msgid "Displaying %d - %d of %d" +msgstr "" + +#: gravity-forms-addons.php:1831 +msgid "Settings" +msgstr "" + +#: gravity-forms-addons.php:1870 +msgid "You don't have adequate permission to uninstall Directory Add-On." +msgstr "" + +#: gravity-forms-addons.php:2315 +msgid "Map It" +msgstr "" + +#: gravity-forms-addons.php:2700 +msgid "You don't have adequate permission to edit entries." +msgstr "" + +#: gravity-forms-lead-creator.php:80 +#, php-format +msgid "%s (ID #%d)" +msgstr "" + +#: gravity-forms-lead-creator.php:82 gravity-forms-lead-creator.php:124 +msgid "No User" +msgstr "" + +#: gravity-forms-lead-creator.php:94 +#, php-format +msgid "Changed lead creator from %s to %s" +msgstr "" + +#: gravity-forms-lead-creator.php:121 +msgid "Change Entry Creator:" +msgstr "" + +#: select_directory_columns.php:29 +msgid "Oops! We could not locate your form. Please try again." +msgstr "" + +#: select_directory_columns.php:143 +msgid "Ajax error while setting lead property" +msgstr "" + +#: select_directory_columns.php:157 +msgid "Entry Id" +msgstr "" + +#: select_directory_columns.php:158 +msgid "Entry Date" +msgstr "" + +#: select_directory_columns.php:159 +msgid "User IP" +msgstr "" + +#: select_directory_columns.php:160 +msgid "Source Url" +msgstr "" + +#: select_directory_columns.php:161 +msgid "Payment Status" +msgstr "" + +#: select_directory_columns.php:162 +msgid "Transaction Id" +msgstr "" + +#: select_directory_columns.php:163 +msgid "Payment Amount" +msgstr "" + +#: select_directory_columns.php:164 +msgid "Payment Date" +msgstr "" + +#: select_directory_columns.php:165 +msgid "User" +msgstr "" + +#: select_directory_columns.php:170 +msgid "" +"Drag & drop to order and select which columns are displayed in the Gravity " +"Forms Directory." +msgstr "" + +#: select_directory_columns.php:171 +#, php-format +msgid "Embed the Directory on a post or a page using %s " +msgstr "" + +#: select_directory_columns.php:176 +msgid "Visible Columns" +msgstr "" + +#: select_directory_columns.php:191 +msgid "Hidden Columns" +msgstr "" + +#: select_directory_columns.php:230 +msgid "Save" +msgstr "" + +#: template-row.php:265 +msgid "This search returned no results." +msgstr "" + +#: template-row.php:267 +msgid "This form does not have any visible entries." +msgstr "" + +#: template-row.php:269 +msgid "This form does not have any entries yet." +msgstr "" diff --git a/languages/gravity-forms-addons-bn_BD.mo b/languages/gravity-forms-addons-bn_BD.mo new file mode 100644 index 0000000000000000000000000000000000000000..9bbdd19566310fd5cef637e0b0fdf7af42e0c01e GIT binary patch literal 763 zcmZ8d+invv5Dk~7edL*kLE@nm@!kkZ@RABOy{Kv{A_xfavT`<)-K86QWjjsM|KNl8 z5x#|SoF<5oMn2;?b2;@Njq};nfh5<1F~jE>WWP#~CY})fSSlA10LXAv+ZY zTVX2>VR-nx#?4CUnYpQr<&fuDj#(~w(oM5`?Vf^u9)Vo*UeR?qG(|3~)l{&Dc!0YC zm#XZd*|E0Jv$k;GHkV4Zex_Xe;H{sN=dwiW?z!h2cK?Dx7uA?Fv6xi-lTb@t;K*N| IgFk)eFTb1aHUIzs literal 0 HcmV?d00001 diff --git a/languages/gravity-forms-addons-bn_BD.po b/languages/gravity-forms-addons-bn_BD.po new file mode 100644 index 0000000..6ff467b --- /dev/null +++ b/languages/gravity-forms-addons-bn_BD.po @@ -0,0 +1,1052 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Gravity Forms Directory\n" +"POT-Creation-Date: 2014-12-17 22:24-0700\n" +"PO-Revision-Date: 2014-12-18 05:24+0000\n" +"Last-Translator: Zachary Katz \n" +"Language-Team: Bengali (http://www.transifex.com/projects/p/gravity-forms-directory/language/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.7.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: admin.php:52 +#, php-format +msgid "%d entries" +msgstr "" + +#: admin.php:52 +msgid "1 entry" +msgstr "" + +#: admin.php:60 +#, php-format +msgid "%s approved." +msgstr "" + +#: admin.php:65 +#, php-format +msgid "%s disapproved." +msgstr "" + +#: admin.php:93 +#, php-format +msgid "" +"%sGravity Forms is installed but not active. %sActivate Gravity Forms%s to " +"use the Gravity Forms Directory & Addons plugin.%s" +msgstr "" + +#: admin.php:95 +#, php-format +msgid "" +"%sGravity Forms cannot be found%s\n" +"\n" +"\t\t\t\tThe %sGravity Forms plugin%s must be installed and activated for the Gravity Forms Addons plugin to work.\n" +"\n" +"\t\t\t\tIf you haven't installed the plugin, you can %3$spurchase the plugin here%4$s. If you have, and you believe this notice is in error, %5$sstart a topic on the plugin support forum%4$s.\n" +"\n" +"\t\t\t\t%6$s%7$sBuy Gravity Forms%4$s%8$s\n" +"\t\t\t\t" +msgstr "" + +#: admin.php:119 +#, php-format +msgid "" +"Congratulations - the Gravity Forms Directory & Addons plugin has been " +"installed. %sGo to the settings page%s to read usage instructions and " +"configure the plugin default settings. %sGo to settings page%s" +msgstr "" + +#: admin.php:183 +msgid "Edit this entry" +msgstr "" + +#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:829 +msgid "Edit" +msgstr "" + +#: admin.php:194 +#, php-format +msgid "Fields for Form ID %s" +msgstr "" + +#: admin.php:197 +msgid "IDs" +msgstr "" + +#: admin.php:308 +msgid "Please select a form" +msgstr "" + +#: admin.php:343 +msgid "Insert A Directory" +msgstr "" + +#: admin.php:345 +msgid "Select a form below to add it to your post or page." +msgstr "" + +#: admin.php:350 +msgid "Select a Form" +msgstr "" + +#: admin.php:360 +msgid "This form will be the basis of your directory." +msgstr "" + +#: admin.php:369 select_directory_columns.php:231 +msgid "Cancel" +msgstr "" + +#: admin.php:384 +#, php-format +msgid "Number of entries to show at once. Use %s0%s to show all entries." +msgstr "" + +#: admin.php:386 admin.php:392 +msgid "Table" +msgstr "" + +#: admin.php:387 admin.php:393 +msgid "Unordered List" +msgstr "" + +#: admin.php:388 admin.php:394 +msgid "Definition List" +msgstr "" + +#: admin.php:389 +msgid "Format for directory listings (directory view)" +msgstr "" + +#: admin.php:395 +msgid "Format for single entries (single entry view)" +msgstr "" + +#: admin.php:397 +msgid "Show the search field" +msgstr "" + +#: admin.php:398 +msgid "" +"Automatically convert directory into Approved-only when an Approved field is" +" detected." +msgstr "" + +#: admin.php:399 +#, php-format +msgid "" +"(If Smart Approval above is not enabled) Show only entries that have been " +"Approved (have a field in the form that is an Admin-only checkbox with a " +"value of 'Approved'). %sNote:%s This will hide entries that have not been " +"explicitly approved.%s" +msgstr "" + +#: admin.php:415 +msgid "If there's a displayed Entry ID column, add link to each full entry" +msgstr "" + +#: admin.php:417 +msgid "" +"Calculate image sizes (Warning: this may slow down the directory loading " +"speed!)" +msgstr "" + +#: admin.php:419 +msgid "Show image icon" +msgstr "" + +#: admin.php:420 +msgid "Show full image" +msgstr "" + +#: admin.php:421 +msgid "How do you want images to appear in the directory?" +msgstr "" + +#: admin.php:425 +#, php-format +msgid "Start date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:426 +#, php-format +msgid "End date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:430 +#, php-format +msgid "" +"Show Admin-Only columns %s(in Gravity Forms, Admin-Only fields are defined " +"by clicking the Advanced tab on a field in the Edit Form view, then editing " +"Visibility > Admin Only)%s" +msgstr "" + +#: admin.php:431 +msgid "" +"Allow logged-in users to edit entries they created. Will add an 'Edit Your " +"Entry' field to the Single Entry View." +msgstr "" + +#: admin.php:432 +msgid "" +"Display entries only the the creator of the entry (users will not see other " +"people's entries)." +msgstr "" + +#: admin.php:433 +#, php-format +msgid "" +"Allow %sadministrators%s to edit all entries. Will add an 'Edit Your Entry' " +"field to the Single Entry View." +msgstr "" + +#: admin.php:436 +#, php-format +msgctxt "Lightbox style" +msgid "Style %d" +msgstr "" + +#: admin.php:451 +msgid "Images" +msgstr "" + +#: admin.php:452 +msgid "Entry Links (Open entry details in lightbox)" +msgstr "" + +#: admin.php:453 +msgid "Website Links (non-entry)" +msgstr "" + +#: admin.php:454 +msgid "Set what type of links should be loaded in the lightbox" +msgstr "" + +#: admin.php:459 +msgid "Use the TableSorter jQuery plugin to sort the table?" +msgstr "" + +#: admin.php:460 +msgid "Show a form title?" +msgstr "" + +#: admin.php:460 +msgid "By default, the title will be the form title." +msgstr "" + +#: admin.php:461 +msgid "Do you want to show 'Displaying 1-19 of 19'?" +msgstr "" + +#: admin.php:462 +#, php-format +msgid "Show the top heading row (%s<thead>%s)" +msgstr "" + +#: admin.php:463 +#, php-format +msgid "Show the bottom heading row (%s<tfoot>%s)" +msgstr "" + +#: admin.php:464 +msgid "" +"Show each page number (eg: 1 2 3 4 5 6 7 8) instead of summary (eg: 1 2 3 " +"... 8 »)" +msgstr "" + +#: admin.php:465 +#, php-format +msgid "" +"Use JavaScript for sorting (otherwise, %slinks%s will be used for sorting by" +" column)" +msgstr "" + +#: admin.php:466 +msgid "" +"Override the options from Gravity Forms, and use standard PHP date formats" +msgstr "" + +#: admin.php:470 +msgid "Convert email fields to email links" +msgstr "" + +#: admin.php:471 +msgid "Convert URLs to links" +msgstr "" + +#: admin.php:472 +#, php-format +msgid "Show more simple links for URLs (strip %shttp://%s, %swww.%s, etc.)" +msgstr "" + +#: admin.php:473 +#, php-format +msgid "%sOpen links in new window?%s (uses %s)" +msgstr "" + +#: admin.php:474 +#, php-format +msgid "%sAdd %snofollow%s to all links%s, including emails" +msgstr "" + +#: admin.php:478 +msgid "Add the formatted address as a column at the end of the table" +msgstr "" + +#: admin.php:479 +msgid "" +"Hide the pieces that make up an address (Street, City, State, ZIP, Country, " +"etc.)" +msgstr "" + +#: admin.php:483 +msgid "Entry Detail" +msgstr "" + +#: admin.php:483 +msgid "Title of entry lightbox window" +msgstr "" + +#: admin.php:484 +msgid "Entry Detail Table Caption" +msgstr "" + +#: admin.php:484 +#, php-format +msgid "" +"The text displayed at the top of the entry details. Use " +"%s%%%%formtitle%%%%%s and %s%%%%leadid%%%%%s as variables that will be " +"replaced." +msgstr "" + +#: admin.php:485 +msgid "View entry details" +msgstr "" + +#: admin.php:485 +msgid "Link text to show full entry" +msgstr "" + +#: admin.php:486 +msgid "More Info" +msgstr "" + +#: admin.php:486 +msgid "Entry ID column title" +msgstr "" + +#: admin.php:487 +msgid "← Back to directory" +msgstr "" + +#: admin.php:487 +msgid "" +"The text of the link to return to the directory view from the single entry " +"view." +msgstr "" + +#: admin.php:488 +msgid "" +"When viewing full entry, show entry only? Otherwise, show entry with " +"directory below" +msgstr "" + +#: admin.php:489 +msgid "" +"When returning to directory view from single entry view, link to specific " +"anchor row?" +msgstr "" + +#: admin.php:493 +msgid "Content Settings" +msgstr "" + +#: admin.php:494 +msgid "Administration of Entries" +msgstr "" + +#: admin.php:495 +msgid "Lightbox Options" +msgstr "" + +#: admin.php:496 +msgid "Formatting Options" +msgstr "" + +#: admin.php:497 +msgid "Link Settings" +msgstr "" + +#: admin.php:498 +msgid "Address Options" +msgstr "" + +#: admin.php:502 +msgid "Show advanced settings" +msgstr "" + +#: admin.php:515 +msgid "Directory View" +msgstr "" + +#: admin.php:516 +msgid "These settings affect how multiple entries are shown at once." +msgstr "" + +#: admin.php:527 +msgid "Additional Settings" +msgstr "" + +#: admin.php:528 +msgid "These settings affect both the directory view and single entry view." +msgstr "" + +#: admin.php:543 admin.php:545 +msgid "Class for the
,
    , or
    " +msgstr "" + +#: admin.php:544 +msgid "inline CSS for the
,
    , or
    " +msgstr "" + +#: admin.php:546 +msgid "Inline CSS for all
's,
  • 's, or
    's" +msgstr "" + +#: admin.php:547 +msgid "Vertical align for table cells" +msgstr "" + +#: admin.php:548 +msgid "Use the input ID ( example: 1.3 or 7 or ip)" +msgstr "" + +#: admin.php:549 +#, php-format +msgid "Sort in ascending order (%sASC%s or descending (%sDESC%s)" +msgstr "" + +#: admin.php:550 +msgid "If you want to show page 8 instead of 1" +msgstr "" + +#: admin.php:551 +#, php-format +msgid "" +"Type of pagination links. %splain%s is just a string with the links " +"separated by a newline character. The other possible values are either " +"%sarray%s or %slist%s." +msgstr "" + +#: admin.php:552 +msgid "Default GF behavior is 'Entries : '" +msgstr "" + +#: admin.php:553 +msgid "Set the 'width' attribute for the
,
    , or
    " +msgstr "" + +#: admin.php:554 +#, php-format +msgid "Use %sstandard PHP date formats%s" +msgstr "" + +#: admin.php:555 +msgid "" +"Give credit to the plugin creator (who has spent over 300 hours on this free" +" plugin!) with a link at the bottom of the directory" +msgstr "" + +#: admin.php:709 +msgid "Add a Gravity Forms Directory" +msgstr "" + +#: admin.php:709 +msgid "Add Directory" +msgstr "" + +#: admin.php:719 +msgid "Directory & Addons" +msgstr "" + +#: admin.php:738 +msgid "Settings saved." +msgstr "" + +#: admin.php:824 admin.php:891 +msgid "Hide Directory Instructions" +msgstr "" + +#: admin.php:826 admin.php:889 +msgid "View Directory Instructions" +msgstr "" + +#: admin.php:842 +msgid "Gravity Forms Directory Add-on" +msgstr "" + +#: admin.php:853 +msgid "Go to the GravityView Website" +msgstr "" + +#: admin.php:854 +msgid "Better, simpler, more powerful." +msgstr "" + +#: admin.php:856 +msgid "A brand-new Directory plugin is here." +msgstr "" + +#: admin.php:861 +#, php-format +msgid "" +"%sGravityView%s is the best way to display Gravity Forms entries on your " +"website." +msgstr "" + +#: admin.php:866 +msgid "Drag & Drop interface" +msgstr "" + +#: admin.php:867 +msgid "Different layout types - display entries as a table or profiles" +msgstr "" + +#: admin.php:868 +msgid "Preset templates make it easy to get started" +msgstr "" + +#: admin.php:869 +msgid "Great support" +msgstr "" + +#: admin.php:874 +#, php-format +msgid "" +"We re-wrote the Directory plugin from the ground up to be more simple and " +"more powerful. If you like the Directory plugin, you’ll %slove%s " +"GravityView." +msgstr "" + +#: admin.php:876 +msgid "Check out GravityView" +msgstr "" + +#: admin.php:887 +msgid "Need help getting started?" +msgstr "" + +#: admin.php:900 +msgid "To integrate a form with Directory:" +msgstr "" + +#: admin.php:902 +msgid "Go to the post or page where you would like to add the directory." +msgstr "" + +#: admin.php:903 +msgid "Click the \"Add Directory\" button above the content area." +msgstr "" + +#: admin.php:904 +msgid "" +"Choose a form from the drop-down menu and configure settings as you would " +"like them." +msgstr "" + +#: admin.php:905 +#, php-format +msgid "" +"Click \"Insert Directory\". A \"shortcode\" should appear in the content " +"editor that looks similar to %s[directory form=\"#\"]%s" +msgstr "" + +#: admin.php:906 +msgid "Save the post or page" +msgstr "" + +#: admin.php:909 +msgid "Configuring Fields & Columns" +msgstr "" + +#: admin.php:911 +msgid "" +"When editing a form, click on a field to expand the field. Next, click the " +"\"Directory\" tab. There, you will find options to:" +msgstr "" + +#: admin.php:914 +msgid "" +"Choose whether you would like the field to be a link to the Single Entry " +"View;" +msgstr "" + +#: admin.php:915 +msgid "Hide the field in Directory View; and" +msgstr "" + +#: admin.php:916 +msgid "Hide the field in Single Entry View" +msgstr "" + +#: admin.php:919 +msgid "Configuring Column Visibility & Order" +msgstr "" + +#: admin.php:921 admin.php:924 +msgid "" +"When editing a form in Gravity Forms, click the link near the top-center of " +"the page named \"Directory Columns\"" +msgstr "" + +#: admin.php:925 +msgid "" +"Drag and drop columns from the right (\"Hidden Columns\") side to the left " +"(\"Visible Columns\") side." +msgstr "" + +#: admin.php:926 +msgid "Click the \"Save\" button" +msgstr "" + +#: admin.php:937 +msgid "Gravity Forms Directory" +msgstr "" + +#: admin.php:939 +msgid "Enable Gravity Forms Directory capabilities" +msgstr "" + +#: admin.php:945 +msgid "Directory Default Settings" +msgstr "" + +#: admin.php:946 +msgid "These defaults can be over-written when inserting a directory." +msgstr "" + +#: admin.php:955 +msgid "Add Referrer Data to Emails" +msgstr "" + +#: admin.php:957 +msgid "" +"Adds referrer data to entries, including the path the user took to get to " +"the form before submitting." +msgstr "" + +#: admin.php:961 +msgid "Modify Gravity Forms Admin" +msgstr "" + +#: admin.php:964 +msgid "Show option to expand Form Editor Field boxes" +msgstr "" + +#: admin.php:966 +msgid "" +"When clicking Form Editor Field boxes, toggle open and closed instead of " +"\"accordion mode\" (closing all except the clicked box)." +msgstr "" + +#: admin.php:968 +#, php-format +msgid "Makes possible direct editing of entries from %sEntries list view%s" +msgstr "" + +#: admin.php:970 +msgid "Adds a link in the Forms list view to view form IDs" +msgstr "" + +#: admin.php:975 +msgid "Save Settings" +msgstr "" + +#: edit-form.php:50 +msgid "Go to Entry" +msgstr "" + +#: edit-form.php:75 +msgid "Approved? (Admin-only)" +msgstr "" + +#: edit-form.php:77 +msgid "Approved?" +msgstr "" + +#: edit-form.php:84 edit-form.php:500 +msgid "Approved" +msgstr "" + +#: edit-form.php:160 +msgid "Ajax error while setting lead approval" +msgstr "" + +#: edit-form.php:201 +msgid "Approve" +msgstr "" + +#: edit-form.php:201 +msgid "Disapprove" +msgstr "" + +#: edit-form.php:203 +msgid "Entry not approved for directory viewing. Click to approve this entry." +msgstr "" + +#: edit-form.php:204 +msgid "Entry approved for directory viewing. Click to disapprove this entry." +msgstr "" + +#: edit-form.php:247 +msgid "Show entry in directory view?" +msgstr "" + +#: edit-form.php:268 +msgid "Use As Link to Single Entry" +msgstr "" + +#: edit-form.php:271 +msgid "Use this field as a link to single entry view" +msgstr "" + +#: edit-form.php:275 +msgid "Single Entry Link Text" +msgstr "" + +#: edit-form.php:276 +msgid "" +"Note: it is a good idea to use required fields for links to single entries " +"so there are no blank links." +msgstr "" + +#: edit-form.php:279 +msgid "Use field values from entry" +msgstr "" + +#: edit-form.php:281 +msgid "Use custom link text." +msgstr "" + +#: edit-form.php:286 +msgid "Hide This Field in Directory View?" +msgstr "" + +#: edit-form.php:289 +msgid "Hide this field in the directory view." +msgstr "" + +#: edit-form.php:292 +msgid "Only visible to logged in users with the following role:" +msgstr "" + +#: edit-form.php:294 +msgid "Any" +msgstr "" + +#: edit-form.php:295 +msgid "Author or higher" +msgstr "" + +#: edit-form.php:296 +msgid "Editor or higher" +msgstr "" + +#: edit-form.php:297 +msgid "Administrator" +msgstr "" + +#: edit-form.php:304 +msgid "Hide This Field in Single Entry View?" +msgstr "" + +#: edit-form.php:307 +msgid "Hide this field in the single entry view." +msgstr "" + +#: edit-form.php:311 +msgid "Directory Search Field" +msgstr "" + +#: edit-form.php:314 +msgid "Use this field as a search filter" +msgstr "" + +#: edit-form.php:325 +msgid "Modify Gravity Forms Directory Columns" +msgstr "" + +#: edit-form.php:325 +msgid "Directory Columns" +msgstr "" + +#: edit-form.php:343 +msgid "Directory" +msgstr "" + +#: edit-form.php:481 +#, php-format +msgid "" +"%sLink to single entry using this field%sIf you would like to link to the " +"single entry view using this link, check the box." +msgstr "" + +#: edit-form.php:482 +#, php-format +msgid "" +"%sHide in Directory View%sIf checked, this field will not be shown in the " +"directory view, even if it is visible in the %sDirectory Columns%s. If this " +"field is Admin Only (set in the Advanced tab), it will be hidden in the " +"directory view unless \"Show Admin-Only columns\" is enabled in the " +"directory. Even if \"Show Admin-Only columns\" is enabled, checking this box" +" will hide the column in the directory view." +msgstr "" + +#: edit-form.php:482 +msgid "Modify Directory Columns" +msgstr "" + +#: edit-form.php:483 +#, php-format +msgid "" +"%sHide in Single Entry View%sIf checked, this field will not be shown in the" +" single entry view of the directory." +msgstr "" + +#: edit-form.php:484 +#, php-format +msgid "" +"%sDirectory Search Field%sIf checked, add search fields to the Directory " +"search form. If this field is a text field, a text search input will be " +"added that will search only this field. Otherwise, the field choices will be" +" used to populate a dropdown menu search input. Example: if the field has " +"choices \"A\", \"B\", and \"C\", the search dropdown will have those items " +"as choices in a dropdown search field." +msgstr "" + +#: edit-form.php:505 +msgid "Entry Link" +msgstr "" + +#: edit-form.php:510 +msgid "User Edit Link" +msgstr "" + +#: field-ids.php:12 +msgid "You don't have adequate permission to preview forms." +msgstr "" + +#: field-ids.php:21 +msgid "Form Preview" +msgstr "" + +#: gravity-forms-addons.php:439 +msgid "Disapproved the lead" +msgstr "" + +#: gravity-forms-addons.php:457 +msgid "Approved the lead" +msgstr "" + +#: gravity-forms-addons.php:488 +#, php-format +msgid "%sYou do not have permission to edit this form.%s" +msgstr "" + +#: gravity-forms-addons.php:515 +#, php-format +msgid "%sThere were errors with the edit you made.%s%s" +msgstr "" + +#: gravity-forms-addons.php:527 +#, php-format +msgid "%sThe entry was successfully updated.%s" +msgstr "" + +#: gravity-forms-addons.php:553 +#, php-format +msgid "You can edit post details from the %1$spost page%2$s." +msgstr "" + +#: gravity-forms-addons.php:575 +msgid "Update Entry" +msgstr "" + +#: gravity-forms-addons.php:582 +#, php-format +msgid "%sThe link to edit this entry is not valid; it may have expired.%s" +msgstr "" + +#: gravity-forms-addons.php:646 +#, php-format +msgid "" +"(Admin-only notice) Field #%d not shown: \"Hide This Field in Single Entry " +"View\" was selected." +msgstr "" + +#: gravity-forms-addons.php:728 +msgid "Order" +msgstr "" + +#: gravity-forms-addons.php:740 +msgid "Product" +msgstr "" + +#: gravity-forms-addons.php:741 +msgid "Qty" +msgstr "" + +#: gravity-forms-addons.php:742 +msgid "Unit Price" +msgstr "" + +#: gravity-forms-addons.php:743 +msgid "Price" +msgstr "" + +#: gravity-forms-addons.php:803 +msgid "Total" +msgstr "" + +#: gravity-forms-addons.php:822 +msgid "Edit Entry" +msgstr "" + +#: gravity-forms-addons.php:824 +msgid "Edit Your Entry" +msgstr "" + +#: gravity-forms-addons.php:1367 +msgid "Search Entries:" +msgstr "" + +#: gravity-forms-addons.php:1375 +msgid "Search" +msgstr "" + +#: gravity-forms-addons.php:1396 gravity-forms-addons.php:1536 +#, php-format +msgid "Displaying %d - %d of %d" +msgstr "" + +#: gravity-forms-addons.php:1831 +msgid "Settings" +msgstr "" + +#: gravity-forms-addons.php:1870 +msgid "You don't have adequate permission to uninstall Directory Add-On." +msgstr "" + +#: gravity-forms-addons.php:2315 +msgid "Map It" +msgstr "" + +#: gravity-forms-addons.php:2700 +msgid "You don't have adequate permission to edit entries." +msgstr "" + +#: gravity-forms-lead-creator.php:80 +#, php-format +msgid "%s (ID #%d)" +msgstr "" + +#: gravity-forms-lead-creator.php:82 gravity-forms-lead-creator.php:124 +msgid "No User" +msgstr "" + +#: gravity-forms-lead-creator.php:94 +#, php-format +msgid "Changed lead creator from %s to %s" +msgstr "" + +#: gravity-forms-lead-creator.php:121 +msgid "Change Entry Creator:" +msgstr "" + +#: select_directory_columns.php:29 +msgid "Oops! We could not locate your form. Please try again." +msgstr "" + +#: select_directory_columns.php:143 +msgid "Ajax error while setting lead property" +msgstr "" + +#: select_directory_columns.php:157 +msgid "Entry Id" +msgstr "" + +#: select_directory_columns.php:158 +msgid "Entry Date" +msgstr "" + +#: select_directory_columns.php:159 +msgid "User IP" +msgstr "" + +#: select_directory_columns.php:160 +msgid "Source Url" +msgstr "" + +#: select_directory_columns.php:161 +msgid "Payment Status" +msgstr "" + +#: select_directory_columns.php:162 +msgid "Transaction Id" +msgstr "" + +#: select_directory_columns.php:163 +msgid "Payment Amount" +msgstr "" + +#: select_directory_columns.php:164 +msgid "Payment Date" +msgstr "" + +#: select_directory_columns.php:165 +msgid "User" +msgstr "" + +#: select_directory_columns.php:170 +msgid "" +"Drag & drop to order and select which columns are displayed in the Gravity " +"Forms Directory." +msgstr "" + +#: select_directory_columns.php:171 +#, php-format +msgid "Embed the Directory on a post or a page using %s " +msgstr "" + +#: select_directory_columns.php:176 +msgid "Visible Columns" +msgstr "" + +#: select_directory_columns.php:191 +msgid "Hidden Columns" +msgstr "" + +#: select_directory_columns.php:230 +msgid "Save" +msgstr "" + +#: template-row.php:265 +msgid "This search returned no results." +msgstr "" + +#: template-row.php:267 +msgid "This form does not have any visible entries." +msgstr "" + +#: template-row.php:269 +msgid "This form does not have any entries yet." +msgstr "" diff --git a/languages/gravity-forms-addons-bn_IN.mo b/languages/gravity-forms-addons-bn_IN.mo new file mode 100644 index 0000000000000000000000000000000000000000..367555b847e77e868ed9a6cb306e9959ba574ee6 GIT binary patch literal 777 zcmZ8d+m6#P5G|LdJo3!LAo0+OIyZ`19E#9(FRFGIDkuo?5_ywpYBsea+ub(%AAA>o zz_&1Ix-DX)k=F5M@|WaK$ou4tjmUpL?sVSL+i(sxGx{fHj!kp+ z4ULsrakwzzPP!V-wOLs>m4*n~)ZXmVoJ|Z0M=W+K9CC=mXuzVFMMH>V9uHVJ3_~Ka z&v+-BZvXQ}5WXSatB}mQ64tS~5z3Z=CUE#6vZXLJTncv&@9sr*`{9fKr z$mS?k98ORbqLk2`s$7a5beGOmJP0` z9o(pN`Z4Hv*VF5><3S=n^d?$4RJ3kgk#2`u7gVK?DuHHYi*EdNe$GZmUbDjj4Lehr z&ZR0ijBcbm$l$P><;}{q5hdH*nuDr#p&iEwv~b*2@L~*6FY&&!3sh*@Q_VEy(m~`8 z{fIJc$WDaCO1LEl-#`9dV!hEOw^!0S4r!XCn52qF{WwXt&6Cm315jH&$ofqVZI%k> z3>6$89^t;ANiE%~+_QGDW$oahZK|}c+L>zG2Cv&WX{riz%}EcO\n" +"Language-Team: Bengali (India) (http://www.transifex.com/projects/p/gravity-forms-directory/language/bn_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.7.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: admin.php:52 +#, php-format +msgid "%d entries" +msgstr "" + +#: admin.php:52 +msgid "1 entry" +msgstr "" + +#: admin.php:60 +#, php-format +msgid "%s approved." +msgstr "" + +#: admin.php:65 +#, php-format +msgid "%s disapproved." +msgstr "" + +#: admin.php:93 +#, php-format +msgid "" +"%sGravity Forms is installed but not active. %sActivate Gravity Forms%s to " +"use the Gravity Forms Directory & Addons plugin.%s" +msgstr "" + +#: admin.php:95 +#, php-format +msgid "" +"%sGravity Forms cannot be found%s\n" +"\n" +"\t\t\t\tThe %sGravity Forms plugin%s must be installed and activated for the Gravity Forms Addons plugin to work.\n" +"\n" +"\t\t\t\tIf you haven't installed the plugin, you can %3$spurchase the plugin here%4$s. If you have, and you believe this notice is in error, %5$sstart a topic on the plugin support forum%4$s.\n" +"\n" +"\t\t\t\t%6$s%7$sBuy Gravity Forms%4$s%8$s\n" +"\t\t\t\t" +msgstr "" + +#: admin.php:119 +#, php-format +msgid "" +"Congratulations - the Gravity Forms Directory & Addons plugin has been " +"installed. %sGo to the settings page%s to read usage instructions and " +"configure the plugin default settings. %sGo to settings page%s" +msgstr "" + +#: admin.php:183 +msgid "Edit this entry" +msgstr "" + +#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:829 +msgid "Edit" +msgstr "" + +#: admin.php:194 +#, php-format +msgid "Fields for Form ID %s" +msgstr "" + +#: admin.php:197 +msgid "IDs" +msgstr "" + +#: admin.php:308 +msgid "Please select a form" +msgstr "" + +#: admin.php:343 +msgid "Insert A Directory" +msgstr "" + +#: admin.php:345 +msgid "Select a form below to add it to your post or page." +msgstr "" + +#: admin.php:350 +msgid "Select a Form" +msgstr "" + +#: admin.php:360 +msgid "This form will be the basis of your directory." +msgstr "" + +#: admin.php:369 select_directory_columns.php:231 +msgid "Cancel" +msgstr "" + +#: admin.php:384 +#, php-format +msgid "Number of entries to show at once. Use %s0%s to show all entries." +msgstr "" + +#: admin.php:386 admin.php:392 +msgid "Table" +msgstr "" + +#: admin.php:387 admin.php:393 +msgid "Unordered List" +msgstr "" + +#: admin.php:388 admin.php:394 +msgid "Definition List" +msgstr "" + +#: admin.php:389 +msgid "Format for directory listings (directory view)" +msgstr "" + +#: admin.php:395 +msgid "Format for single entries (single entry view)" +msgstr "" + +#: admin.php:397 +msgid "Show the search field" +msgstr "" + +#: admin.php:398 +msgid "" +"Automatically convert directory into Approved-only when an Approved field is" +" detected." +msgstr "" + +#: admin.php:399 +#, php-format +msgid "" +"(If Smart Approval above is not enabled) Show only entries that have been " +"Approved (have a field in the form that is an Admin-only checkbox with a " +"value of 'Approved'). %sNote:%s This will hide entries that have not been " +"explicitly approved.%s" +msgstr "" + +#: admin.php:415 +msgid "If there's a displayed Entry ID column, add link to each full entry" +msgstr "" + +#: admin.php:417 +msgid "" +"Calculate image sizes (Warning: this may slow down the directory loading " +"speed!)" +msgstr "" + +#: admin.php:419 +msgid "Show image icon" +msgstr "" + +#: admin.php:420 +msgid "Show full image" +msgstr "" + +#: admin.php:421 +msgid "How do you want images to appear in the directory?" +msgstr "" + +#: admin.php:425 +#, php-format +msgid "Start date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:426 +#, php-format +msgid "End date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:430 +#, php-format +msgid "" +"Show Admin-Only columns %s(in Gravity Forms, Admin-Only fields are defined " +"by clicking the Advanced tab on a field in the Edit Form view, then editing " +"Visibility > Admin Only)%s" +msgstr "" + +#: admin.php:431 +msgid "" +"Allow logged-in users to edit entries they created. Will add an 'Edit Your " +"Entry' field to the Single Entry View." +msgstr "" + +#: admin.php:432 +msgid "" +"Display entries only the the creator of the entry (users will not see other " +"people's entries)." +msgstr "" + +#: admin.php:433 +#, php-format +msgid "" +"Allow %sadministrators%s to edit all entries. Will add an 'Edit Your Entry' " +"field to the Single Entry View." +msgstr "" + +#: admin.php:436 +#, php-format +msgctxt "Lightbox style" +msgid "Style %d" +msgstr "" + +#: admin.php:451 +msgid "Images" +msgstr "" + +#: admin.php:452 +msgid "Entry Links (Open entry details in lightbox)" +msgstr "" + +#: admin.php:453 +msgid "Website Links (non-entry)" +msgstr "" + +#: admin.php:454 +msgid "Set what type of links should be loaded in the lightbox" +msgstr "" + +#: admin.php:459 +msgid "Use the TableSorter jQuery plugin to sort the table?" +msgstr "" + +#: admin.php:460 +msgid "Show a form title?" +msgstr "" + +#: admin.php:460 +msgid "By default, the title will be the form title." +msgstr "" + +#: admin.php:461 +msgid "Do you want to show 'Displaying 1-19 of 19'?" +msgstr "" + +#: admin.php:462 +#, php-format +msgid "Show the top heading row (%s<thead>%s)" +msgstr "" + +#: admin.php:463 +#, php-format +msgid "Show the bottom heading row (%s<tfoot>%s)" +msgstr "" + +#: admin.php:464 +msgid "" +"Show each page number (eg: 1 2 3 4 5 6 7 8) instead of summary (eg: 1 2 3 " +"... 8 »)" +msgstr "" + +#: admin.php:465 +#, php-format +msgid "" +"Use JavaScript for sorting (otherwise, %slinks%s will be used for sorting by" +" column)" +msgstr "" + +#: admin.php:466 +msgid "" +"Override the options from Gravity Forms, and use standard PHP date formats" +msgstr "" + +#: admin.php:470 +msgid "Convert email fields to email links" +msgstr "" + +#: admin.php:471 +msgid "Convert URLs to links" +msgstr "" + +#: admin.php:472 +#, php-format +msgid "Show more simple links for URLs (strip %shttp://%s, %swww.%s, etc.)" +msgstr "" + +#: admin.php:473 +#, php-format +msgid "%sOpen links in new window?%s (uses %s)" +msgstr "" + +#: admin.php:474 +#, php-format +msgid "%sAdd %snofollow%s to all links%s, including emails" +msgstr "" + +#: admin.php:478 +msgid "Add the formatted address as a column at the end of the table" +msgstr "" + +#: admin.php:479 +msgid "" +"Hide the pieces that make up an address (Street, City, State, ZIP, Country, " +"etc.)" +msgstr "" + +#: admin.php:483 +msgid "Entry Detail" +msgstr "" + +#: admin.php:483 +msgid "Title of entry lightbox window" +msgstr "" + +#: admin.php:484 +msgid "Entry Detail Table Caption" +msgstr "" + +#: admin.php:484 +#, php-format +msgid "" +"The text displayed at the top of the entry details. Use " +"%s%%%%formtitle%%%%%s and %s%%%%leadid%%%%%s as variables that will be " +"replaced." +msgstr "" + +#: admin.php:485 +msgid "View entry details" +msgstr "" + +#: admin.php:485 +msgid "Link text to show full entry" +msgstr "" + +#: admin.php:486 +msgid "More Info" +msgstr "" + +#: admin.php:486 +msgid "Entry ID column title" +msgstr "" + +#: admin.php:487 +msgid "← Back to directory" +msgstr "" + +#: admin.php:487 +msgid "" +"The text of the link to return to the directory view from the single entry " +"view." +msgstr "" + +#: admin.php:488 +msgid "" +"When viewing full entry, show entry only? Otherwise, show entry with " +"directory below" +msgstr "" + +#: admin.php:489 +msgid "" +"When returning to directory view from single entry view, link to specific " +"anchor row?" +msgstr "" + +#: admin.php:493 +msgid "Content Settings" +msgstr "" + +#: admin.php:494 +msgid "Administration of Entries" +msgstr "" + +#: admin.php:495 +msgid "Lightbox Options" +msgstr "" + +#: admin.php:496 +msgid "Formatting Options" +msgstr "" + +#: admin.php:497 +msgid "Link Settings" +msgstr "" + +#: admin.php:498 +msgid "Address Options" +msgstr "" + +#: admin.php:502 +msgid "Show advanced settings" +msgstr "" + +#: admin.php:515 +msgid "Directory View" +msgstr "" + +#: admin.php:516 +msgid "These settings affect how multiple entries are shown at once." +msgstr "" + +#: admin.php:527 +msgid "Additional Settings" +msgstr "" + +#: admin.php:528 +msgid "These settings affect both the directory view and single entry view." +msgstr "" + +#: admin.php:543 admin.php:545 +msgid "Class for the
,
    , or
    " +msgstr "" + +#: admin.php:544 +msgid "inline CSS for the
,
    , or
    " +msgstr "" + +#: admin.php:546 +msgid "Inline CSS for all
's,
  • 's, or
    's" +msgstr "" + +#: admin.php:547 +msgid "Vertical align for table cells" +msgstr "" + +#: admin.php:548 +msgid "Use the input ID ( example: 1.3 or 7 or ip)" +msgstr "" + +#: admin.php:549 +#, php-format +msgid "Sort in ascending order (%sASC%s or descending (%sDESC%s)" +msgstr "" + +#: admin.php:550 +msgid "If you want to show page 8 instead of 1" +msgstr "" + +#: admin.php:551 +#, php-format +msgid "" +"Type of pagination links. %splain%s is just a string with the links " +"separated by a newline character. The other possible values are either " +"%sarray%s or %slist%s." +msgstr "" + +#: admin.php:552 +msgid "Default GF behavior is 'Entries : '" +msgstr "" + +#: admin.php:553 +msgid "Set the 'width' attribute for the
,
    , or
    " +msgstr "" + +#: admin.php:554 +#, php-format +msgid "Use %sstandard PHP date formats%s" +msgstr "" + +#: admin.php:555 +msgid "" +"Give credit to the plugin creator (who has spent over 300 hours on this free" +" plugin!) with a link at the bottom of the directory" +msgstr "" + +#: admin.php:709 +msgid "Add a Gravity Forms Directory" +msgstr "" + +#: admin.php:709 +msgid "Add Directory" +msgstr "" + +#: admin.php:719 +msgid "Directory & Addons" +msgstr "" + +#: admin.php:738 +msgid "Settings saved." +msgstr "" + +#: admin.php:824 admin.php:891 +msgid "Hide Directory Instructions" +msgstr "" + +#: admin.php:826 admin.php:889 +msgid "View Directory Instructions" +msgstr "" + +#: admin.php:842 +msgid "Gravity Forms Directory Add-on" +msgstr "" + +#: admin.php:853 +msgid "Go to the GravityView Website" +msgstr "" + +#: admin.php:854 +msgid "Better, simpler, more powerful." +msgstr "" + +#: admin.php:856 +msgid "A brand-new Directory plugin is here." +msgstr "" + +#: admin.php:861 +#, php-format +msgid "" +"%sGravityView%s is the best way to display Gravity Forms entries on your " +"website." +msgstr "" + +#: admin.php:866 +msgid "Drag & Drop interface" +msgstr "" + +#: admin.php:867 +msgid "Different layout types - display entries as a table or profiles" +msgstr "" + +#: admin.php:868 +msgid "Preset templates make it easy to get started" +msgstr "" + +#: admin.php:869 +msgid "Great support" +msgstr "" + +#: admin.php:874 +#, php-format +msgid "" +"We re-wrote the Directory plugin from the ground up to be more simple and " +"more powerful. If you like the Directory plugin, you’ll %slove%s " +"GravityView." +msgstr "" + +#: admin.php:876 +msgid "Check out GravityView" +msgstr "" + +#: admin.php:887 +msgid "Need help getting started?" +msgstr "" + +#: admin.php:900 +msgid "To integrate a form with Directory:" +msgstr "" + +#: admin.php:902 +msgid "Go to the post or page where you would like to add the directory." +msgstr "" + +#: admin.php:903 +msgid "Click the \"Add Directory\" button above the content area." +msgstr "" + +#: admin.php:904 +msgid "" +"Choose a form from the drop-down menu and configure settings as you would " +"like them." +msgstr "" + +#: admin.php:905 +#, php-format +msgid "" +"Click \"Insert Directory\". A \"shortcode\" should appear in the content " +"editor that looks similar to %s[directory form=\"#\"]%s" +msgstr "" + +#: admin.php:906 +msgid "Save the post or page" +msgstr "" + +#: admin.php:909 +msgid "Configuring Fields & Columns" +msgstr "" + +#: admin.php:911 +msgid "" +"When editing a form, click on a field to expand the field. Next, click the " +"\"Directory\" tab. There, you will find options to:" +msgstr "" + +#: admin.php:914 +msgid "" +"Choose whether you would like the field to be a link to the Single Entry " +"View;" +msgstr "" + +#: admin.php:915 +msgid "Hide the field in Directory View; and" +msgstr "" + +#: admin.php:916 +msgid "Hide the field in Single Entry View" +msgstr "" + +#: admin.php:919 +msgid "Configuring Column Visibility & Order" +msgstr "" + +#: admin.php:921 admin.php:924 +msgid "" +"When editing a form in Gravity Forms, click the link near the top-center of " +"the page named \"Directory Columns\"" +msgstr "" + +#: admin.php:925 +msgid "" +"Drag and drop columns from the right (\"Hidden Columns\") side to the left " +"(\"Visible Columns\") side." +msgstr "" + +#: admin.php:926 +msgid "Click the \"Save\" button" +msgstr "" + +#: admin.php:937 +msgid "Gravity Forms Directory" +msgstr "" + +#: admin.php:939 +msgid "Enable Gravity Forms Directory capabilities" +msgstr "" + +#: admin.php:945 +msgid "Directory Default Settings" +msgstr "" + +#: admin.php:946 +msgid "These defaults can be over-written when inserting a directory." +msgstr "" + +#: admin.php:955 +msgid "Add Referrer Data to Emails" +msgstr "" + +#: admin.php:957 +msgid "" +"Adds referrer data to entries, including the path the user took to get to " +"the form before submitting." +msgstr "" + +#: admin.php:961 +msgid "Modify Gravity Forms Admin" +msgstr "" + +#: admin.php:964 +msgid "Show option to expand Form Editor Field boxes" +msgstr "" + +#: admin.php:966 +msgid "" +"When clicking Form Editor Field boxes, toggle open and closed instead of " +"\"accordion mode\" (closing all except the clicked box)." +msgstr "" + +#: admin.php:968 +#, php-format +msgid "Makes possible direct editing of entries from %sEntries list view%s" +msgstr "" + +#: admin.php:970 +msgid "Adds a link in the Forms list view to view form IDs" +msgstr "" + +#: admin.php:975 +msgid "Save Settings" +msgstr "" + +#: edit-form.php:50 +msgid "Go to Entry" +msgstr "" + +#: edit-form.php:75 +msgid "Approved? (Admin-only)" +msgstr "" + +#: edit-form.php:77 +msgid "Approved?" +msgstr "" + +#: edit-form.php:84 edit-form.php:500 +msgid "Approved" +msgstr "" + +#: edit-form.php:160 +msgid "Ajax error while setting lead approval" +msgstr "" + +#: edit-form.php:201 +msgid "Approve" +msgstr "" + +#: edit-form.php:201 +msgid "Disapprove" +msgstr "" + +#: edit-form.php:203 +msgid "Entry not approved for directory viewing. Click to approve this entry." +msgstr "" + +#: edit-form.php:204 +msgid "Entry approved for directory viewing. Click to disapprove this entry." +msgstr "" + +#: edit-form.php:247 +msgid "Show entry in directory view?" +msgstr "" + +#: edit-form.php:268 +msgid "Use As Link to Single Entry" +msgstr "" + +#: edit-form.php:271 +msgid "Use this field as a link to single entry view" +msgstr "" + +#: edit-form.php:275 +msgid "Single Entry Link Text" +msgstr "" + +#: edit-form.php:276 +msgid "" +"Note: it is a good idea to use required fields for links to single entries " +"so there are no blank links." +msgstr "" + +#: edit-form.php:279 +msgid "Use field values from entry" +msgstr "" + +#: edit-form.php:281 +msgid "Use custom link text." +msgstr "" + +#: edit-form.php:286 +msgid "Hide This Field in Directory View?" +msgstr "" + +#: edit-form.php:289 +msgid "Hide this field in the directory view." +msgstr "" + +#: edit-form.php:292 +msgid "Only visible to logged in users with the following role:" +msgstr "" + +#: edit-form.php:294 +msgid "Any" +msgstr "" + +#: edit-form.php:295 +msgid "Author or higher" +msgstr "" + +#: edit-form.php:296 +msgid "Editor or higher" +msgstr "" + +#: edit-form.php:297 +msgid "Administrator" +msgstr "" + +#: edit-form.php:304 +msgid "Hide This Field in Single Entry View?" +msgstr "" + +#: edit-form.php:307 +msgid "Hide this field in the single entry view." +msgstr "" + +#: edit-form.php:311 +msgid "Directory Search Field" +msgstr "" + +#: edit-form.php:314 +msgid "Use this field as a search filter" +msgstr "" + +#: edit-form.php:325 +msgid "Modify Gravity Forms Directory Columns" +msgstr "" + +#: edit-form.php:325 +msgid "Directory Columns" +msgstr "" + +#: edit-form.php:343 +msgid "Directory" +msgstr "" + +#: edit-form.php:481 +#, php-format +msgid "" +"%sLink to single entry using this field%sIf you would like to link to the " +"single entry view using this link, check the box." +msgstr "" + +#: edit-form.php:482 +#, php-format +msgid "" +"%sHide in Directory View%sIf checked, this field will not be shown in the " +"directory view, even if it is visible in the %sDirectory Columns%s. If this " +"field is Admin Only (set in the Advanced tab), it will be hidden in the " +"directory view unless \"Show Admin-Only columns\" is enabled in the " +"directory. Even if \"Show Admin-Only columns\" is enabled, checking this box" +" will hide the column in the directory view." +msgstr "" + +#: edit-form.php:482 +msgid "Modify Directory Columns" +msgstr "" + +#: edit-form.php:483 +#, php-format +msgid "" +"%sHide in Single Entry View%sIf checked, this field will not be shown in the" +" single entry view of the directory." +msgstr "" + +#: edit-form.php:484 +#, php-format +msgid "" +"%sDirectory Search Field%sIf checked, add search fields to the Directory " +"search form. If this field is a text field, a text search input will be " +"added that will search only this field. Otherwise, the field choices will be" +" used to populate a dropdown menu search input. Example: if the field has " +"choices \"A\", \"B\", and \"C\", the search dropdown will have those items " +"as choices in a dropdown search field." +msgstr "" + +#: edit-form.php:505 +msgid "Entry Link" +msgstr "" + +#: edit-form.php:510 +msgid "User Edit Link" +msgstr "" + +#: field-ids.php:12 +msgid "You don't have adequate permission to preview forms." +msgstr "" + +#: field-ids.php:21 +msgid "Form Preview" +msgstr "" + +#: gravity-forms-addons.php:439 +msgid "Disapproved the lead" +msgstr "" + +#: gravity-forms-addons.php:457 +msgid "Approved the lead" +msgstr "" + +#: gravity-forms-addons.php:488 +#, php-format +msgid "%sYou do not have permission to edit this form.%s" +msgstr "" + +#: gravity-forms-addons.php:515 +#, php-format +msgid "%sThere were errors with the edit you made.%s%s" +msgstr "" + +#: gravity-forms-addons.php:527 +#, php-format +msgid "%sThe entry was successfully updated.%s" +msgstr "" + +#: gravity-forms-addons.php:553 +#, php-format +msgid "You can edit post details from the %1$spost page%2$s." +msgstr "" + +#: gravity-forms-addons.php:575 +msgid "Update Entry" +msgstr "" + +#: gravity-forms-addons.php:582 +#, php-format +msgid "%sThe link to edit this entry is not valid; it may have expired.%s" +msgstr "" + +#: gravity-forms-addons.php:646 +#, php-format +msgid "" +"(Admin-only notice) Field #%d not shown: \"Hide This Field in Single Entry " +"View\" was selected." +msgstr "" + +#: gravity-forms-addons.php:728 +msgid "Order" +msgstr "" + +#: gravity-forms-addons.php:740 +msgid "Product" +msgstr "" + +#: gravity-forms-addons.php:741 +msgid "Qty" +msgstr "" + +#: gravity-forms-addons.php:742 +msgid "Unit Price" +msgstr "" + +#: gravity-forms-addons.php:743 +msgid "Price" +msgstr "" + +#: gravity-forms-addons.php:803 +msgid "Total" +msgstr "" + +#: gravity-forms-addons.php:822 +msgid "Edit Entry" +msgstr "" + +#: gravity-forms-addons.php:824 +msgid "Edit Your Entry" +msgstr "" + +#: gravity-forms-addons.php:1367 +msgid "Search Entries:" +msgstr "" + +#: gravity-forms-addons.php:1375 +msgid "Search" +msgstr "" + +#: gravity-forms-addons.php:1396 gravity-forms-addons.php:1536 +#, php-format +msgid "Displaying %d - %d of %d" +msgstr "" + +#: gravity-forms-addons.php:1831 +msgid "Settings" +msgstr "" + +#: gravity-forms-addons.php:1870 +msgid "You don't have adequate permission to uninstall Directory Add-On." +msgstr "" + +#: gravity-forms-addons.php:2315 +msgid "Map It" +msgstr "" + +#: gravity-forms-addons.php:2700 +msgid "You don't have adequate permission to edit entries." +msgstr "" + +#: gravity-forms-lead-creator.php:80 +#, php-format +msgid "%s (ID #%d)" +msgstr "" + +#: gravity-forms-lead-creator.php:82 gravity-forms-lead-creator.php:124 +msgid "No User" +msgstr "" + +#: gravity-forms-lead-creator.php:94 +#, php-format +msgid "Changed lead creator from %s to %s" +msgstr "" + +#: gravity-forms-lead-creator.php:121 +msgid "Change Entry Creator:" +msgstr "" + +#: select_directory_columns.php:29 +msgid "Oops! We could not locate your form. Please try again." +msgstr "" + +#: select_directory_columns.php:143 +msgid "Ajax error while setting lead property" +msgstr "" + +#: select_directory_columns.php:157 +msgid "Entry Id" +msgstr "" + +#: select_directory_columns.php:158 +msgid "Entry Date" +msgstr "" + +#: select_directory_columns.php:159 +msgid "User IP" +msgstr "" + +#: select_directory_columns.php:160 +msgid "Source Url" +msgstr "" + +#: select_directory_columns.php:161 +msgid "Payment Status" +msgstr "" + +#: select_directory_columns.php:162 +msgid "Transaction Id" +msgstr "" + +#: select_directory_columns.php:163 +msgid "Payment Amount" +msgstr "" + +#: select_directory_columns.php:164 +msgid "Payment Date" +msgstr "" + +#: select_directory_columns.php:165 +msgid "User" +msgstr "" + +#: select_directory_columns.php:170 +msgid "" +"Drag & drop to order and select which columns are displayed in the Gravity " +"Forms Directory." +msgstr "" + +#: select_directory_columns.php:171 +#, php-format +msgid "Embed the Directory on a post or a page using %s " +msgstr "" + +#: select_directory_columns.php:176 +msgid "Visible Columns" +msgstr "" + +#: select_directory_columns.php:191 +msgid "Hidden Columns" +msgstr "" + +#: select_directory_columns.php:230 +msgid "Save" +msgstr "" + +#: template-row.php:265 +msgid "This search returned no results." +msgstr "" + +#: template-row.php:267 +msgid "This form does not have any visible entries." +msgstr "" + +#: template-row.php:269 +msgid "This form does not have any entries yet." +msgstr "" diff --git a/languages/gravity-forms-addons-fr.mo b/languages/gravity-forms-addons-fr.mo new file mode 100644 index 0000000000000000000000000000000000000000..6ff5746e95951acbc4a7a14d899bf4ae4ef7bc14 GIT binary patch literal 761 zcmZ8dO>Yx15Dg!vJ#ywS2M(=>_luweFR3chrmEVC2m(S}R>qlRmu~Ep?KDaM2fv4Z z!f#<5w+UjTCqH|hXXeeH7teonD4q~r5?&FW5xN8)1H$j8oz6Qty=EU1qkp1w>~hAw zqOrAB94?HwtKAmH+AJ-c)rJJxY@^A?DH|CSj#TVSIOLG0S&wBo%leS#JnylzpQa>a zpYX2s)&AEFAbm@^*C|DGEv#cxBb03fb>Q$_$V!+kTnTp%@9%}YJ-sCwOMOCOwOEM- zvMGushp|B=D>$m0Yk88a*X!8%O7$E!q+cd&aAuP>Sp-9D?hUcoqoJgED4EPnava@U z-kcwnki}^<(#oNt5w|UQb+~a!+lX2f;K#J+hF_**HaO_~0CP0#TuD8v)q=y|NA32b zbC{cG(yWYV*lxKTRJ*&{VO~I>!y^SJkR2D%H+F#vO<2uDE)5A4e!aW&!Ls2aL&+&J;eik_~28O zTQ(1>9Sy1--Ipzu)@|siHsSIn^eIcVK\n" +"Language-Team: French (http://www.transifex.com/projects/p/gravity-forms-directory/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 1.7.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: admin.php:52 +#, php-format +msgid "%d entries" +msgstr "" + +#: admin.php:52 +msgid "1 entry" +msgstr "" + +#: admin.php:60 +#, php-format +msgid "%s approved." +msgstr "" + +#: admin.php:65 +#, php-format +msgid "%s disapproved." +msgstr "" + +#: admin.php:93 +#, php-format +msgid "" +"%sGravity Forms is installed but not active. %sActivate Gravity Forms%s to " +"use the Gravity Forms Directory & Addons plugin.%s" +msgstr "" + +#: admin.php:95 +#, php-format +msgid "" +"%sGravity Forms cannot be found%s\n" +"\n" +"\t\t\t\tThe %sGravity Forms plugin%s must be installed and activated for the Gravity Forms Addons plugin to work.\n" +"\n" +"\t\t\t\tIf you haven't installed the plugin, you can %3$spurchase the plugin here%4$s. If you have, and you believe this notice is in error, %5$sstart a topic on the plugin support forum%4$s.\n" +"\n" +"\t\t\t\t%6$s%7$sBuy Gravity Forms%4$s%8$s\n" +"\t\t\t\t" +msgstr "" + +#: admin.php:119 +#, php-format +msgid "" +"Congratulations - the Gravity Forms Directory & Addons plugin has been " +"installed. %sGo to the settings page%s to read usage instructions and " +"configure the plugin default settings. %sGo to settings page%s" +msgstr "" + +#: admin.php:183 +msgid "Edit this entry" +msgstr "" + +#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:829 +msgid "Edit" +msgstr "" + +#: admin.php:194 +#, php-format +msgid "Fields for Form ID %s" +msgstr "" + +#: admin.php:197 +msgid "IDs" +msgstr "" + +#: admin.php:308 +msgid "Please select a form" +msgstr "" + +#: admin.php:343 +msgid "Insert A Directory" +msgstr "" + +#: admin.php:345 +msgid "Select a form below to add it to your post or page." +msgstr "" + +#: admin.php:350 +msgid "Select a Form" +msgstr "" + +#: admin.php:360 +msgid "This form will be the basis of your directory." +msgstr "" + +#: admin.php:369 select_directory_columns.php:231 +msgid "Cancel" +msgstr "" + +#: admin.php:384 +#, php-format +msgid "Number of entries to show at once. Use %s0%s to show all entries." +msgstr "" + +#: admin.php:386 admin.php:392 +msgid "Table" +msgstr "" + +#: admin.php:387 admin.php:393 +msgid "Unordered List" +msgstr "" + +#: admin.php:388 admin.php:394 +msgid "Definition List" +msgstr "" + +#: admin.php:389 +msgid "Format for directory listings (directory view)" +msgstr "" + +#: admin.php:395 +msgid "Format for single entries (single entry view)" +msgstr "" + +#: admin.php:397 +msgid "Show the search field" +msgstr "" + +#: admin.php:398 +msgid "" +"Automatically convert directory into Approved-only when an Approved field is" +" detected." +msgstr "" + +#: admin.php:399 +#, php-format +msgid "" +"(If Smart Approval above is not enabled) Show only entries that have been " +"Approved (have a field in the form that is an Admin-only checkbox with a " +"value of 'Approved'). %sNote:%s This will hide entries that have not been " +"explicitly approved.%s" +msgstr "" + +#: admin.php:415 +msgid "If there's a displayed Entry ID column, add link to each full entry" +msgstr "" + +#: admin.php:417 +msgid "" +"Calculate image sizes (Warning: this may slow down the directory loading " +"speed!)" +msgstr "" + +#: admin.php:419 +msgid "Show image icon" +msgstr "" + +#: admin.php:420 +msgid "Show full image" +msgstr "" + +#: admin.php:421 +msgid "How do you want images to appear in the directory?" +msgstr "" + +#: admin.php:425 +#, php-format +msgid "Start date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:426 +#, php-format +msgid "End date (in %sYYYY-MM-DD%s format)" +msgstr "" + +#: admin.php:430 +#, php-format +msgid "" +"Show Admin-Only columns %s(in Gravity Forms, Admin-Only fields are defined " +"by clicking the Advanced tab on a field in the Edit Form view, then editing " +"Visibility > Admin Only)%s" +msgstr "" + +#: admin.php:431 +msgid "" +"Allow logged-in users to edit entries they created. Will add an 'Edit Your " +"Entry' field to the Single Entry View." +msgstr "" + +#: admin.php:432 +msgid "" +"Display entries only the the creator of the entry (users will not see other " +"people's entries)." +msgstr "" + +#: admin.php:433 +#, php-format +msgid "" +"Allow %sadministrators%s to edit all entries. Will add an 'Edit Your Entry' " +"field to the Single Entry View." +msgstr "" + +#: admin.php:436 +#, php-format +msgctxt "Lightbox style" +msgid "Style %d" +msgstr "" + +#: admin.php:451 +msgid "Images" +msgstr "" + +#: admin.php:452 +msgid "Entry Links (Open entry details in lightbox)" +msgstr "" + +#: admin.php:453 +msgid "Website Links (non-entry)" +msgstr "" + +#: admin.php:454 +msgid "Set what type of links should be loaded in the lightbox" +msgstr "" + +#: admin.php:459 +msgid "Use the TableSorter jQuery plugin to sort the table?" +msgstr "" + +#: admin.php:460 +msgid "Show a form title?" +msgstr "" + +#: admin.php:460 +msgid "By default, the title will be the form title." +msgstr "" + +#: admin.php:461 +msgid "Do you want to show 'Displaying 1-19 of 19'?" +msgstr "" + +#: admin.php:462 +#, php-format +msgid "Show the top heading row (%s<thead>%s)" +msgstr "" + +#: admin.php:463 +#, php-format +msgid "Show the bottom heading row (%s<tfoot>%s)" +msgstr "" + +#: admin.php:464 +msgid "" +"Show each page number (eg: 1 2 3 4 5 6 7 8) instead of summary (eg: 1 2 3 " +"... 8 »)" +msgstr "" + +#: admin.php:465 +#, php-format +msgid "" +"Use JavaScript for sorting (otherwise, %slinks%s will be used for sorting by" +" column)" +msgstr "" + +#: admin.php:466 +msgid "" +"Override the options from Gravity Forms, and use standard PHP date formats" +msgstr "" + +#: admin.php:470 +msgid "Convert email fields to email links" +msgstr "" + +#: admin.php:471 +msgid "Convert URLs to links" +msgstr "" + +#: admin.php:472 +#, php-format +msgid "Show more simple links for URLs (strip %shttp://%s, %swww.%s, etc.)" +msgstr "" + +#: admin.php:473 +#, php-format +msgid "%sOpen links in new window?%s (uses %s)" +msgstr "" + +#: admin.php:474 +#, php-format +msgid "%sAdd %snofollow%s to all links%s, including emails" +msgstr "" + +#: admin.php:478 +msgid "Add the formatted address as a column at the end of the table" +msgstr "" + +#: admin.php:479 +msgid "" +"Hide the pieces that make up an address (Street, City, State, ZIP, Country, " +"etc.)" +msgstr "" + +#: admin.php:483 +msgid "Entry Detail" +msgstr "" + +#: admin.php:483 +msgid "Title of entry lightbox window" +msgstr "" + +#: admin.php:484 +msgid "Entry Detail Table Caption" +msgstr "" + +#: admin.php:484 +#, php-format +msgid "" +"The text displayed at the top of the entry details. Use " +"%s%%%%formtitle%%%%%s and %s%%%%leadid%%%%%s as variables that will be " +"replaced." +msgstr "" + +#: admin.php:485 +msgid "View entry details" +msgstr "" + +#: admin.php:485 +msgid "Link text to show full entry" +msgstr "" + +#: admin.php:486 +msgid "More Info" +msgstr "" + +#: admin.php:486 +msgid "Entry ID column title" +msgstr "" + +#: admin.php:487 +msgid "← Back to directory" +msgstr "" + +#: admin.php:487 +msgid "" +"The text of the link to return to the directory view from the single entry " +"view." +msgstr "" + +#: admin.php:488 +msgid "" +"When viewing full entry, show entry only? Otherwise, show entry with " +"directory below" +msgstr "" + +#: admin.php:489 +msgid "" +"When returning to directory view from single entry view, link to specific " +"anchor row?" +msgstr "" + +#: admin.php:493 +msgid "Content Settings" +msgstr "" + +#: admin.php:494 +msgid "Administration of Entries" +msgstr "" + +#: admin.php:495 +msgid "Lightbox Options" +msgstr "" + +#: admin.php:496 +msgid "Formatting Options" +msgstr "" + +#: admin.php:497 +msgid "Link Settings" +msgstr "" + +#: admin.php:498 +msgid "Address Options" +msgstr "" + +#: admin.php:502 +msgid "Show advanced settings" +msgstr "" + +#: admin.php:515 +msgid "Directory View" +msgstr "" + +#: admin.php:516 +msgid "These settings affect how multiple entries are shown at once." +msgstr "" + +#: admin.php:527 +msgid "Additional Settings" +msgstr "" + +#: admin.php:528 +msgid "These settings affect both the directory view and single entry view." +msgstr "" + +#: admin.php:543 admin.php:545 +msgid "Class for the
,
    , or
    " +msgstr "" + +#: admin.php:544 +msgid "inline CSS for the
,
    , or
    " +msgstr "" + +#: admin.php:546 +msgid "Inline CSS for all
's,
  • 's, or
    's" +msgstr "" + +#: admin.php:547 +msgid "Vertical align for table cells" +msgstr "" + +#: admin.php:548 +msgid "Use the input ID ( example: 1.3 or 7 or ip)" +msgstr "" + +#: admin.php:549 +#, php-format +msgid "Sort in ascending order (%sASC%s or descending (%sDESC%s)" +msgstr "" + +#: admin.php:550 +msgid "If you want to show page 8 instead of 1" +msgstr "" + +#: admin.php:551 +#, php-format +msgid "" +"Type of pagination links. %splain%s is just a string with the links " +"separated by a newline character. The other possible values are either " +"%sarray%s or %slist%s." +msgstr "" + +#: admin.php:552 +msgid "Default GF behavior is 'Entries : '" +msgstr "" + +#: admin.php:553 +msgid "Set the 'width' attribute for the
,
    , or
    " +msgstr "" + +#: admin.php:554 +#, php-format +msgid "Use %sstandard PHP date formats%s" +msgstr "" + +#: admin.php:555 +msgid "" +"Give credit to the plugin creator (who has spent over 300 hours on this free" +" plugin!) with a link at the bottom of the directory" +msgstr "" + +#: admin.php:709 +msgid "Add a Gravity Forms Directory" +msgstr "" + +#: admin.php:709 +msgid "Add Directory" +msgstr "" + +#: admin.php:719 +msgid "Directory & Addons" +msgstr "" + +#: admin.php:738 +msgid "Settings saved." +msgstr "" + +#: admin.php:824 admin.php:891 +msgid "Hide Directory Instructions" +msgstr "" + +#: admin.php:826 admin.php:889 +msgid "View Directory Instructions" +msgstr "" + +#: admin.php:842 +msgid "Gravity Forms Directory Add-on" +msgstr "" + +#: admin.php:853 +msgid "Go to the GravityView Website" +msgstr "" + +#: admin.php:854 +msgid "Better, simpler, more powerful." +msgstr "" + +#: admin.php:856 +msgid "A brand-new Directory plugin is here." +msgstr "" + +#: admin.php:861 +#, php-format +msgid "" +"%sGravityView%s is the best way to display Gravity Forms entries on your " +"website." +msgstr "" + +#: admin.php:866 +msgid "Drag & Drop interface" +msgstr "" + +#: admin.php:867 +msgid "Different layout types - display entries as a table or profiles" +msgstr "" + +#: admin.php:868 +msgid "Preset templates make it easy to get started" +msgstr "" + +#: admin.php:869 +msgid "Great support" +msgstr "" + +#: admin.php:874 +#, php-format +msgid "" +"We re-wrote the Directory plugin from the ground up to be more simple and " +"more powerful. If you like the Directory plugin, you’ll %slove%s " +"GravityView." +msgstr "" + +#: admin.php:876 +msgid "Check out GravityView" +msgstr "" + +#: admin.php:887 +msgid "Need help getting started?" +msgstr "" + +#: admin.php:900 +msgid "To integrate a form with Directory:" +msgstr "" + +#: admin.php:902 +msgid "Go to the post or page where you would like to add the directory." +msgstr "" + +#: admin.php:903 +msgid "Click the \"Add Directory\" button above the content area." +msgstr "" + +#: admin.php:904 +msgid "" +"Choose a form from the drop-down menu and configure settings as you would " +"like them." +msgstr "" + +#: admin.php:905 +#, php-format +msgid "" +"Click \"Insert Directory\". A \"shortcode\" should appear in the content " +"editor that looks similar to %s[directory form=\"#\"]%s" +msgstr "" + +#: admin.php:906 +msgid "Save the post or page" +msgstr "" + +#: admin.php:909 +msgid "Configuring Fields & Columns" +msgstr "" + +#: admin.php:911 +msgid "" +"When editing a form, click on a field to expand the field. Next, click the " +"\"Directory\" tab. There, you will find options to:" +msgstr "" + +#: admin.php:914 +msgid "" +"Choose whether you would like the field to be a link to the Single Entry " +"View;" +msgstr "" + +#: admin.php:915 +msgid "Hide the field in Directory View; and" +msgstr "" + +#: admin.php:916 +msgid "Hide the field in Single Entry View" +msgstr "" + +#: admin.php:919 +msgid "Configuring Column Visibility & Order" +msgstr "" + +#: admin.php:921 admin.php:924 +msgid "" +"When editing a form in Gravity Forms, click the link near the top-center of " +"the page named \"Directory Columns\"" +msgstr "" + +#: admin.php:925 +msgid "" +"Drag and drop columns from the right (\"Hidden Columns\") side to the left " +"(\"Visible Columns\") side." +msgstr "" + +#: admin.php:926 +msgid "Click the \"Save\" button" +msgstr "" + +#: admin.php:937 +msgid "Gravity Forms Directory" +msgstr "" + +#: admin.php:939 +msgid "Enable Gravity Forms Directory capabilities" +msgstr "" + +#: admin.php:945 +msgid "Directory Default Settings" +msgstr "" + +#: admin.php:946 +msgid "These defaults can be over-written when inserting a directory." +msgstr "" + +#: admin.php:955 +msgid "Add Referrer Data to Emails" +msgstr "" + +#: admin.php:957 +msgid "" +"Adds referrer data to entries, including the path the user took to get to " +"the form before submitting." +msgstr "" + +#: admin.php:961 +msgid "Modify Gravity Forms Admin" +msgstr "" + +#: admin.php:964 +msgid "Show option to expand Form Editor Field boxes" +msgstr "" + +#: admin.php:966 +msgid "" +"When clicking Form Editor Field boxes, toggle open and closed instead of " +"\"accordion mode\" (closing all except the clicked box)." +msgstr "" + +#: admin.php:968 +#, php-format +msgid "Makes possible direct editing of entries from %sEntries list view%s" +msgstr "" + +#: admin.php:970 +msgid "Adds a link in the Forms list view to view form IDs" +msgstr "" + +#: admin.php:975 +msgid "Save Settings" +msgstr "" + +#: edit-form.php:50 +msgid "Go to Entry" +msgstr "" + +#: edit-form.php:75 +msgid "Approved? (Admin-only)" +msgstr "" + +#: edit-form.php:77 +msgid "Approved?" +msgstr "" + +#: edit-form.php:84 edit-form.php:500 +msgid "Approved" +msgstr "" + +#: edit-form.php:160 +msgid "Ajax error while setting lead approval" +msgstr "" + +#: edit-form.php:201 +msgid "Approve" +msgstr "" + +#: edit-form.php:201 +msgid "Disapprove" +msgstr "" + +#: edit-form.php:203 +msgid "Entry not approved for directory viewing. Click to approve this entry." +msgstr "" + +#: edit-form.php:204 +msgid "Entry approved for directory viewing. Click to disapprove this entry." +msgstr "" + +#: edit-form.php:247 +msgid "Show entry in directory view?" +msgstr "" + +#: edit-form.php:268 +msgid "Use As Link to Single Entry" +msgstr "" + +#: edit-form.php:271 +msgid "Use this field as a link to single entry view" +msgstr "" + +#: edit-form.php:275 +msgid "Single Entry Link Text" +msgstr "" + +#: edit-form.php:276 +msgid "" +"Note: it is a good idea to use required fields for links to single entries " +"so there are no blank links." +msgstr "" + +#: edit-form.php:279 +msgid "Use field values from entry" +msgstr "" + +#: edit-form.php:281 +msgid "Use custom link text." +msgstr "" + +#: edit-form.php:286 +msgid "Hide This Field in Directory View?" +msgstr "" + +#: edit-form.php:289 +msgid "Hide this field in the directory view." +msgstr "" + +#: edit-form.php:292 +msgid "Only visible to logged in users with the following role:" +msgstr "" + +#: edit-form.php:294 +msgid "Any" +msgstr "" + +#: edit-form.php:295 +msgid "Author or higher" +msgstr "" + +#: edit-form.php:296 +msgid "Editor or higher" +msgstr "" + +#: edit-form.php:297 +msgid "Administrator" +msgstr "" + +#: edit-form.php:304 +msgid "Hide This Field in Single Entry View?" +msgstr "" + +#: edit-form.php:307 +msgid "Hide this field in the single entry view." +msgstr "" + +#: edit-form.php:311 +msgid "Directory Search Field" +msgstr "" + +#: edit-form.php:314 +msgid "Use this field as a search filter" +msgstr "" + +#: edit-form.php:325 +msgid "Modify Gravity Forms Directory Columns" +msgstr "" + +#: edit-form.php:325 +msgid "Directory Columns" +msgstr "" + +#: edit-form.php:343 +msgid "Directory" +msgstr "" + +#: edit-form.php:481 +#, php-format +msgid "" +"%sLink to single entry using this field%sIf you would like to link to the " +"single entry view using this link, check the box." +msgstr "" + +#: edit-form.php:482 +#, php-format +msgid "" +"%sHide in Directory View%sIf checked, this field will not be shown in the " +"directory view, even if it is visible in the %sDirectory Columns%s. If this " +"field is Admin Only (set in the Advanced tab), it will be hidden in the " +"directory view unless \"Show Admin-Only columns\" is enabled in the " +"directory. Even if \"Show Admin-Only columns\" is enabled, checking this box" +" will hide the column in the directory view." +msgstr "" + +#: edit-form.php:482 +msgid "Modify Directory Columns" +msgstr "" + +#: edit-form.php:483 +#, php-format +msgid "" +"%sHide in Single Entry View%sIf checked, this field will not be shown in the" +" single entry view of the directory." +msgstr "" + +#: edit-form.php:484 +#, php-format +msgid "" +"%sDirectory Search Field%sIf checked, add search fields to the Directory " +"search form. If this field is a text field, a text search input will be " +"added that will search only this field. Otherwise, the field choices will be" +" used to populate a dropdown menu search input. Example: if the field has " +"choices \"A\", \"B\", and \"C\", the search dropdown will have those items " +"as choices in a dropdown search field." +msgstr "" + +#: edit-form.php:505 +msgid "Entry Link" +msgstr "" + +#: edit-form.php:510 +msgid "User Edit Link" +msgstr "" + +#: field-ids.php:12 +msgid "You don't have adequate permission to preview forms." +msgstr "" + +#: field-ids.php:21 +msgid "Form Preview" +msgstr "" + +#: gravity-forms-addons.php:439 +msgid "Disapproved the lead" +msgstr "" + +#: gravity-forms-addons.php:457 +msgid "Approved the lead" +msgstr "" + +#: gravity-forms-addons.php:488 +#, php-format +msgid "%sYou do not have permission to edit this form.%s" +msgstr "" + +#: gravity-forms-addons.php:515 +#, php-format +msgid "%sThere were errors with the edit you made.%s%s" +msgstr "" + +#: gravity-forms-addons.php:527 +#, php-format +msgid "%sThe entry was successfully updated.%s" +msgstr "" + +#: gravity-forms-addons.php:553 +#, php-format +msgid "You can edit post details from the %1$spost page%2$s." +msgstr "" + +#: gravity-forms-addons.php:575 +msgid "Update Entry" +msgstr "" + +#: gravity-forms-addons.php:582 +#, php-format +msgid "%sThe link to edit this entry is not valid; it may have expired.%s" +msgstr "" + +#: gravity-forms-addons.php:646 +#, php-format +msgid "" +"(Admin-only notice) Field #%d not shown: \"Hide This Field in Single Entry " +"View\" was selected." +msgstr "" + +#: gravity-forms-addons.php:728 +msgid "Order" +msgstr "" + +#: gravity-forms-addons.php:740 +msgid "Product" +msgstr "" + +#: gravity-forms-addons.php:741 +msgid "Qty" +msgstr "" + +#: gravity-forms-addons.php:742 +msgid "Unit Price" +msgstr "" + +#: gravity-forms-addons.php:743 +msgid "Price" +msgstr "" + +#: gravity-forms-addons.php:803 +msgid "Total" +msgstr "" + +#: gravity-forms-addons.php:822 +msgid "Edit Entry" +msgstr "" + +#: gravity-forms-addons.php:824 +msgid "Edit Your Entry" +msgstr "" + +#: gravity-forms-addons.php:1367 +msgid "Search Entries:" +msgstr "" + +#: gravity-forms-addons.php:1375 +msgid "Search" +msgstr "" + +#: gravity-forms-addons.php:1396 gravity-forms-addons.php:1536 +#, php-format +msgid "Displaying %d - %d of %d" +msgstr "" + +#: gravity-forms-addons.php:1831 +msgid "Settings" +msgstr "" + +#: gravity-forms-addons.php:1870 +msgid "You don't have adequate permission to uninstall Directory Add-On." +msgstr "" + +#: gravity-forms-addons.php:2315 +msgid "Map It" +msgstr "" + +#: gravity-forms-addons.php:2700 +msgid "You don't have adequate permission to edit entries." +msgstr "" + +#: gravity-forms-lead-creator.php:80 +#, php-format +msgid "%s (ID #%d)" +msgstr "" + +#: gravity-forms-lead-creator.php:82 gravity-forms-lead-creator.php:124 +msgid "No User" +msgstr "" + +#: gravity-forms-lead-creator.php:94 +#, php-format +msgid "Changed lead creator from %s to %s" +msgstr "" + +#: gravity-forms-lead-creator.php:121 +msgid "Change Entry Creator:" +msgstr "" + +#: select_directory_columns.php:29 +msgid "Oops! We could not locate your form. Please try again." +msgstr "" + +#: select_directory_columns.php:143 +msgid "Ajax error while setting lead property" +msgstr "" + +#: select_directory_columns.php:157 +msgid "Entry Id" +msgstr "" + +#: select_directory_columns.php:158 +msgid "Entry Date" +msgstr "" + +#: select_directory_columns.php:159 +msgid "User IP" +msgstr "" + +#: select_directory_columns.php:160 +msgid "Source Url" +msgstr "" + +#: select_directory_columns.php:161 +msgid "Payment Status" +msgstr "" + +#: select_directory_columns.php:162 +msgid "Transaction Id" +msgstr "" + +#: select_directory_columns.php:163 +msgid "Payment Amount" +msgstr "" + +#: select_directory_columns.php:164 +msgid "Payment Date" +msgstr "" + +#: select_directory_columns.php:165 +msgid "User" +msgstr "" + +#: select_directory_columns.php:170 +msgid "" +"Drag & drop to order and select which columns are displayed in the Gravity " +"Forms Directory." +msgstr "" + +#: select_directory_columns.php:171 +#, php-format +msgid "Embed the Directory on a post or a page using %s " +msgstr "" + +#: select_directory_columns.php:176 +msgid "Visible Columns" +msgstr "" + +#: select_directory_columns.php:191 +msgid "Hidden Columns" +msgstr "" + +#: select_directory_columns.php:230 +msgid "Save" +msgstr "" + +#: template-row.php:265 +msgid "This search returned no results." +msgstr "" + +#: template-row.php:267 +msgid "This form does not have any visible entries." +msgstr "" + +#: template-row.php:269 +msgid "This form does not have any entries yet." +msgstr "" diff --git a/languages/gravity-forms-addons.mo b/languages/gravity-forms-addons.mo index 2fdad95eb416303a2f2d1c81f753adfdc3cf7483..08ff04a979ee871217ff238adff1c8983c4c7c76 100644 GIT binary patch delta 45 qcmaFE`i6Bv8@Hj6uA#Ytk&%^=$;64WDBPXDn9cPJH*aG!V*~&(ObrA8 delta 45 qcmaFE`i6Bv8@GX_u92yNp`n$r!NiHODBPXDn9cMoH*aG!V*~&($PEhs diff --git a/languages/gravity-forms-addons.po b/languages/gravity-forms-addons.po index 07bb7d3..dc0ba0e 100644 --- a/languages/gravity-forms-addons.po +++ b/languages/gravity-forms-addons.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: Gravity Forms Directory & Addons\n" -"POT-Creation-Date: 2014-09-25 11:30-0700\n" -"PO-Revision-Date: 2014-09-25 11:30-0700\n" +"POT-Creation-Date: 2014-12-17 22:24-0700\n" +"PO-Revision-Date: 2014-12-17 22:24-0700\n" "Last-Translator: Katz Web Services, Inc. \n" "Language-Team: Katz Web Services, Inc. \n" "Language: en_US\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.9\n" +"X-Generator: Poedit 1.7.1\n" "X-Poedit-Basepath: ..\n" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;" @@ -72,7 +72,7 @@ msgstr "" msgid "Edit this entry" msgstr "" -#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:880 +#: admin.php:183 edit-form.php:62 gravity-forms-addons.php:829 msgid "Edit" msgstr "" @@ -157,12 +157,6 @@ msgstr "" msgid "If there's a displayed Entry ID column, add link to each full entry" msgstr "" -#: admin.php:416 -#, php-format -msgid "" -"Convert bulk paragraph text to paragraphs (using the WordPress function %s)" -msgstr "" - #: admin.php:417 msgid "" "Calculate image sizes (Warning: this may slow down the directory loading " @@ -181,11 +175,6 @@ msgstr "" msgid "How do you want images to appear in the directory?" msgstr "" -#: admin.php:423 -msgid "" -"Show full content of a textarea or post content field, rather than an excerpt" -msgstr "" - #: admin.php:425 #, php-format msgid "Start date (in %sYYYY-MM-DD%s format)" @@ -906,73 +895,82 @@ msgid "" "View\" was selected." msgstr "" -#: gravity-forms-addons.php:779 +#: gravity-forms-addons.php:728 msgid "Order" msgstr "" -#: gravity-forms-addons.php:791 +#: gravity-forms-addons.php:740 msgid "Product" msgstr "" -#: gravity-forms-addons.php:792 +#: gravity-forms-addons.php:741 msgid "Qty" msgstr "" -#: gravity-forms-addons.php:793 +#: gravity-forms-addons.php:742 msgid "Unit Price" msgstr "" -#: gravity-forms-addons.php:794 +#: gravity-forms-addons.php:743 msgid "Price" msgstr "" -#: gravity-forms-addons.php:854 +#: gravity-forms-addons.php:803 msgid "Total" msgstr "" -#: gravity-forms-addons.php:873 +#: gravity-forms-addons.php:822 msgid "Edit Entry" msgstr "" -#: gravity-forms-addons.php:875 +#: gravity-forms-addons.php:824 msgid "Edit Your Entry" msgstr "" -#: gravity-forms-addons.php:1418 +#: gravity-forms-addons.php:1367 msgid "Search Entries:" msgstr "" -#: gravity-forms-addons.php:1426 +#: gravity-forms-addons.php:1375 msgid "Search" msgstr "" -#: gravity-forms-addons.php:1447 gravity-forms-addons.php:1587 +#: gravity-forms-addons.php:1396 gravity-forms-addons.php:1536 #, php-format msgid "Displaying %d - %d of %d" msgstr "" -#: gravity-forms-addons.php:1796 +#: gravity-forms-addons.php:1831 msgid "Settings" msgstr "" -#: gravity-forms-addons.php:1835 +#: gravity-forms-addons.php:1870 msgid "You don't have adequate permission to uninstall Directory Add-On." msgstr "" -#: gravity-forms-addons.php:2280 +#: gravity-forms-addons.php:2315 msgid "Map It" msgstr "" -#: gravity-forms-addons.php:2665 +#: gravity-forms-addons.php:2700 msgid "You don't have adequate permission to edit entries." msgstr "" -#: gravity-forms-lead-creator.php:60 +#: gravity-forms-lead-creator.php:80 +#, php-format +msgid "%s (ID #%d)" +msgstr "" + +#: gravity-forms-lead-creator.php:82 gravity-forms-lead-creator.php:124 +msgid "No User" +msgstr "" + +#: gravity-forms-lead-creator.php:94 #, php-format msgid "Changed lead creator from %s to %s" msgstr "" -#: gravity-forms-lead-creator.php:83 +#: gravity-forms-lead-creator.php:121 msgid "Change Entry Creator:" msgstr "" @@ -1043,14 +1041,14 @@ msgstr "" msgid "Save" msgstr "" -#: template-row.php:279 +#: template-row.php:265 msgid "This search returned no results." msgstr "" -#: template-row.php:281 +#: template-row.php:267 msgid "This form does not have any visible entries." msgstr "" -#: template-row.php:283 +#: template-row.php:269 msgid "This form does not have any entries yet." msgstr ""