From 1cc6df4b3f52f6534a55692a394cb9ba02dead82 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 11 Mar 2015 12:13:22 -0600 Subject: [PATCH 01/32] Add JSHint to Grunt :pig_nose: --- Gruntfile.js | 15 ++++++++++++--- package.json | 1 + 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index c38b6cc275..5204928e10 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -28,6 +28,14 @@ module.exports = function(grunt) { } }, + jshint: [ + "assets/js/admin-views.js", + "assets/js/admin-post-edit.js", + "assets/js/admin-widgets.js", + "assets/js/admin-entries-list.js", + "assets/js/fe-views.js" + ], + imagemin: { dynamic: { files: [{ @@ -65,9 +73,9 @@ module.exports = function(grunt) { }, watch: { - main: { - files: ['assets/js/*.js','!assets/js/*.min.js','readme.txt'], - tasks: ['uglify:main','wp_readme_to_markdown','newer:jshint:all'] + scripts: { + files: ['assets/js/*.js','!assets/js/*.min.js'], + tasks: ['uglify:main','newer:jshint'] }, extension_js: { files: ['includes/extensions/**/*.js','!includes/extensions/**/*.min.js'], @@ -114,6 +122,7 @@ module.exports = function(grunt) { }); grunt.loadNpmTasks('grunt-sass'); + grunt.loadNpmTasks("grunt-contrib-jshint"); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-wp-readme-to-markdown'); diff --git a/package.json b/package.json index 189906067e..3c14ae355c 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "devDependencies": { "grunt": "^0.4.5", "grunt-contrib-imagemin": "^0.9.3", + "grunt-contrib-jshint": "^0.11.0", "grunt-contrib-uglify": "^0.5.0", "grunt-contrib-watch": "^0.6.1", "grunt-exec": "^0.4.6", From c3269287c1d15502ea82b00fa0e8c70ba5d5ee38 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 11 Mar 2015 12:14:25 -0600 Subject: [PATCH 02/32] Fix JSHint issues --- assets/js/admin-entries-list.js | 2 +- assets/js/admin-post-edit.js | 8 +++++--- assets/js/admin-post-edit.min.js | 2 +- assets/js/admin-widgets.js | 2 +- assets/js/fe-views.js | 4 +++- assets/js/fe-views.min.js | 2 +- 6 files changed, 12 insertions(+), 8 deletions(-) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index 7a9cca2173..4b1fc8344e 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -52,7 +52,7 @@ form_id: gvGlobals.form_id, approved: approved, nonce: gvGlobals.nonce, - } + }; $.post( ajaxurl, data, function( response ) { if( response ) { diff --git a/assets/js/admin-post-edit.js b/assets/js/admin-post-edit.js index 5d0b6f1644..0e6480fcf8 100644 --- a/assets/js/admin-post-edit.js +++ b/assets/js/admin-post-edit.js @@ -41,6 +41,8 @@ jQuery(document).ready( function( $ ) { */ $("#select_gravityview_view_form :input:enabled").each(function() { + var setting_value = ''; + // CHECKBOX or RADIO // Checkboxes and Radio inputs have their own `defaultChecked` property // so we process them separately @@ -57,7 +59,7 @@ jQuery(document).ready( function( $ ) { } // 1 = checked; 0 = not checked - var setting_value = $(this).is(':checked') ? '1' : '0'; + setting_value = $(this).is(':checked') ? '1' : '0'; // Reset to default $(this).prop( 'checked', $(this).prop('defaultChecked') ); @@ -81,7 +83,7 @@ jQuery(document).ready( function( $ ) { } else { // Get the value - var setting_value = $(this).val(); + setting_value = $(this).val(); // Reset to default $(this).val( $(this).prop('defaultValue') ); @@ -94,7 +96,7 @@ jQuery(document).ready( function( $ ) { var setting_attr = $(this).prop('name').replace(/^gravityview_/, ''); // Add to the output - shortcode += ' ' + setting_attr + '="' + setting_value + '"';; + shortcode += ' ' + setting_attr + '="' + setting_value + '"'; }); diff --git a/assets/js/admin-post-edit.min.js b/assets/js/admin-post-edit.min.js index f1f0ce83e0..11e1fbb4d7 100644 --- a/assets/js/admin-post-edit.min.js +++ b/assets/js/admin-post-edit.min.js @@ -1 +1 @@ -jQuery(document).ready(function($){function InsertViewShortcode(){if(""===$("#gravityview_id").val())return alert(gvGlobals.alert_1),$("#gravityview_view_id").focus(),!1;var shortcode="[gravityview";return $("#select_gravityview_view_form :input:enabled").each(function(){if($(this).is(":checkbox")||$(this).is(":radio")){if(!0===$(this).is(":checked")&&!0===$(this).prop("defaultChecked"))return;if(!1===$(this).is(":checked")&&!1===$(this).prop("defaultChecked"))return;var setting_value=$(this).is(":checked")?"1":"0";$(this).prop("checked",$(this).prop("defaultChecked"))}else{if($(this).is("select")&&""===$(this).val())return;if($(this).val()===$(this).prop("defaultValue"))return;var setting_value=$(this).val();$(this).val($(this).prop("defaultValue"))}var setting_attr=$(this).prop("name").replace(/^gravityview_/,"");shortcode+=" "+setting_attr+'="'+setting_value+'"'}),shortcode+="]",window.send_to_editor(shortcode),!1}$("#select_gravityview_view_form").find("select").prop("defaultValue",function(){return $(this).val()}),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1}),$("#gravityview_id").change(function(){if(""===$("#gravityview_id").val())return void $("#select_gravityview_view_form").find(".hide-if-js").fadeOut();$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields",viewid:$(this).val(),nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)}),$("#select_gravityview_view_form").find(".hide-if-js").fadeIn()}),$("#insert_gravityview_view").on("click",function(e){return e.preventDefault(),InsertViewShortcode(),$("#select_gravityview_view_form").find(".hide-if-js").hide(),!1})}); \ No newline at end of file +jQuery(document).ready(function($){function InsertViewShortcode(){if(""===$("#gravityview_id").val())return alert(gvGlobals.alert_1),$("#gravityview_view_id").focus(),!1;var shortcode="[gravityview";return $("#select_gravityview_view_form :input:enabled").each(function(){var setting_value="";if($(this).is(":checkbox")||$(this).is(":radio")){if(!0===$(this).is(":checked")&&!0===$(this).prop("defaultChecked"))return;if(!1===$(this).is(":checked")&&!1===$(this).prop("defaultChecked"))return;setting_value=$(this).is(":checked")?"1":"0",$(this).prop("checked",$(this).prop("defaultChecked"))}else{if($(this).is("select")&&""===$(this).val())return;if($(this).val()===$(this).prop("defaultValue"))return;setting_value=$(this).val(),$(this).val($(this).prop("defaultValue"))}var setting_attr=$(this).prop("name").replace(/^gravityview_/,"");shortcode+=" "+setting_attr+'="'+setting_value+'"'}),shortcode+="]",window.send_to_editor(shortcode),!1}$("#select_gravityview_view_form").find("select").prop("defaultValue",function(){return $(this).val()}),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1}),$("#gravityview_id").change(function(){if(""===$("#gravityview_id").val())return void $("#select_gravityview_view_form").find(".hide-if-js").fadeOut();$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields",viewid:$(this).val(),nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)}),$("#select_gravityview_view_form").find(".hide-if-js").fadeIn()}),$("#insert_gravityview_view").on("click",function(e){return e.preventDefault(),InsertViewShortcode(),$("#select_gravityview_view_form").find(".hide-if-js").hide(),!1})}); \ No newline at end of file diff --git a/assets/js/admin-widgets.js b/assets/js/admin-widgets.js index 25826b3082..8debb29a5f 100644 --- a/assets/js/admin-widgets.js +++ b/assets/js/admin-widgets.js @@ -102,7 +102,7 @@ jQuery( document).ready(function( $ ){ }); } // End refreshMergeTags - } // End gvWidgets + }; // End gvWidgets gvWidgets.init(); diff --git a/assets/js/fe-views.js b/assets/js/fe-views.js index 3fc77a848f..565206ef84 100644 --- a/assets/js/fe-views.js +++ b/assets/js/fe-views.js @@ -8,6 +8,8 @@ * @copyright Copyright 2014, Katz Web Services, Inc. * * @since 1.0.0 + * + * globals jQuery */ @@ -161,7 +163,7 @@ jQuery(document).ready( function( $ ) { // Get the back link cookie and replace the back link href backGetCookie: function() { var viewId = $("#gravityview_back_link").attr('data-viewid'); - if( $.cookie('gravityview_back_link_'+ viewId ) != null ) { + if( $.cookie('gravityview_back_link_'+ viewId ) !== null ) { $("#gravityview_back_link").attr('href', $.cookie('gravityview_back_link_'+ viewId) ); } }, diff --git a/assets/js/fe-views.min.js b/assets/js/fe-views.min.js index 4460fdddff..14be85eb77 100644 --- a/assets/js/fe-views.min.js +++ b/assets/js/fe-views.min.js @@ -1 +1 @@ -jQuery(document).ready(function($){var gvFront={init:function(){this.cookies(),this.datepicker(),$(".gv-widget-search").on("keypress change",this.form_changed),$(".gv-search-clear").on("click",this.clear_search)},form_changed:function(e){"keypress"===e.type&&(0===e.which||e.ctrlKey||e.metaKey||e.altKey)||($(this).attr("data-form-changed",1),$(".gv-search-clear",$(this)).text(gvGlobals.reset).fadeIn(100))},clear_search:function(e){var $form=$(this).parents("form"),changed=$form.attr("data-form-changed").length>0;return $form.hasClass("gv-is-search")&&!changed?!0:changed?(e.preventDefault(),$form.trigger("reset"),$form.attr("data-form-changed",null).find(".gv-search-clear").text(gvGlobals.clear),!1===$form.hasClass("gv-is-search")&&$(".gv-search-clear",$form).hide(100),!1):!0},datepicker:function(){jQuery.fn.datepicker&&$(".gv-datepicker").each(function(){var element=jQuery(this),image="",showOn="focus";if(element.hasClass("datepicker_with_icon")&&(showOn="both",image=jQuery("#gforms_calendar_icon_"+this.id).val()),gvGlobals.datepicker.showOn=showOn,gvGlobals.datepicker.buttonImage=image,gvGlobals.datepicker.buttonImageOnly=!0,!gvGlobals.datepicker.dateFormat){var format="mm/dd/yy";element.hasClass("mdy")?format="mm/dd/yy":element.hasClass("dmy")?format="dd/mm/yy":element.hasClass("dmy_dash")?format="dd-mm-yy":element.hasClass("dmy_dot")?format="dd.mm.yy":element.hasClass("ymd_slash")?format="yy/mm/dd":element.hasClass("ymd_dash")?format="yy-mm-dd":element.hasClass("ymd_dot")&&(format="yy.mm.dd"),gvGlobals.datepicker.dateFormat=format}element.datepicker(gvGlobals.datepicker)})},cookies:function(){$("#gravityview_back_link").length>0?gvFront.backGetCookie():$(".gravityview-view-id").length>0&&$(".gravityview-view-id").each(gvFront.backSetCookie)},backSetCookie:function(){var viewId=$(this).val();$.cookie("gravityview_back_link_"+viewId,window.location.href,{path:gvGlobals.cookiepath})},backGetCookie:function(){var viewId=$("#gravityview_back_link").attr("data-viewid");null!=$.cookie("gravityview_back_link_"+viewId)&&$("#gravityview_back_link").attr("href",$.cookie("gravityview_back_link_"+viewId))}};gvFront.init()}); \ No newline at end of file +jQuery(document).ready(function($){var gvFront={init:function(){this.cookies(),this.datepicker(),$(".gv-widget-search").on("keypress change",this.form_changed),$(".gv-search-clear").on("click",this.clear_search)},form_changed:function(e){"keypress"===e.type&&(0===e.which||e.ctrlKey||e.metaKey||e.altKey)||($(this).attr("data-form-changed",1),$(".gv-search-clear",$(this)).text(gvGlobals.reset).fadeIn(100))},clear_search:function(e){var $form=$(this).parents("form"),changed=$form.attr("data-form-changed").length>0;return $form.hasClass("gv-is-search")&&!changed?!0:changed?(e.preventDefault(),$form.trigger("reset"),$form.attr("data-form-changed",null).find(".gv-search-clear").text(gvGlobals.clear),!1===$form.hasClass("gv-is-search")&&$(".gv-search-clear",$form).hide(100),!1):!0},datepicker:function(){jQuery.fn.datepicker&&$(".gv-datepicker").each(function(){var element=jQuery(this),image="",showOn="focus";if(element.hasClass("datepicker_with_icon")&&(showOn="both",image=jQuery("#gforms_calendar_icon_"+this.id).val()),gvGlobals.datepicker.showOn=showOn,gvGlobals.datepicker.buttonImage=image,gvGlobals.datepicker.buttonImageOnly=!0,!gvGlobals.datepicker.dateFormat){var format="mm/dd/yy";element.hasClass("mdy")?format="mm/dd/yy":element.hasClass("dmy")?format="dd/mm/yy":element.hasClass("dmy_dash")?format="dd-mm-yy":element.hasClass("dmy_dot")?format="dd.mm.yy":element.hasClass("ymd_slash")?format="yy/mm/dd":element.hasClass("ymd_dash")?format="yy-mm-dd":element.hasClass("ymd_dot")&&(format="yy.mm.dd"),gvGlobals.datepicker.dateFormat=format}element.datepicker(gvGlobals.datepicker)})},cookies:function(){$("#gravityview_back_link").length>0?gvFront.backGetCookie():$(".gravityview-view-id").length>0&&$(".gravityview-view-id").each(gvFront.backSetCookie)},backSetCookie:function(){var viewId=$(this).val();$.cookie("gravityview_back_link_"+viewId,window.location.href,{path:gvGlobals.cookiepath})},backGetCookie:function(){var viewId=$("#gravityview_back_link").attr("data-viewid");null!==$.cookie("gravityview_back_link_"+viewId)&&$("#gravityview_back_link").attr("href",$.cookie("gravityview_back_link_"+viewId))}};gvFront.init()}); \ No newline at end of file From 7bc8b4ece277eef79403cfb9a8867f1a4b8dec01 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 11 Mar 2015 12:57:03 -0600 Subject: [PATCH 03/32] Code style changes ONLY. Updated phpStorm code styles to better match WP JS code styles. Not perfect, but better. --- assets/js/admin-entries-list.js | 76 +- assets/js/admin-post-edit.js | 90 +- assets/js/admin-post-edit.min.js | 2 +- assets/js/admin-views.js | 2362 +++++++++++++++--------------- assets/js/admin-widgets.js | 150 +- assets/js/fe-views.js | 146 +- 6 files changed, 1405 insertions(+), 1421 deletions(-) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index 4b1fc8344e..584b59e4ae 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -13,38 +13,39 @@ (function( $ ) { - function displayMessage( message, messageClass, container) { + function displayMessage( message, messageClass, container ) { hideMessage( container, true ); - var messageBox = $(''); - $(messageBox).prependTo( container ).slideDown(); + var messageBox = $( '' ); + $( messageBox ).prependTo( container ).slideDown(); - if( messageClass == 'updated' ) { - messageTimeout = setTimeout( function(){ hideMessage( container, false ); }, 10000); + if ( messageClass == 'updated' ) { + messageTimeout = setTimeout( function () { + hideMessage( container, false ); + }, 10000 ); } } - function hideMessage( container, messageQueued ){ + function hideMessage( container, messageQueued ) { - var messageBox = $( container ).find('.message'); + var messageBox = $( container ).find( '.message' ); - if( messageQueued ) { + if ( messageQueued ) { $( messageBox ).remove(); } else { - $( messageBox ).slideUp( function() { - $(this).remove(); - }); + $( messageBox ).slideUp( function () { + $( this ).remove(); + } ); } } - // Request entry approve (ajax) - function updateApproved( entryid, approved, $target) { + function updateApproved( entryid, approved, $target ) { var data = { action: 'gv_update_approved', @@ -54,59 +55,58 @@ nonce: gvGlobals.nonce, }; - $.post( ajaxurl, data, function( response ) { - if( response ) { + $.post( ajaxurl, data, function ( response ) { + if ( response ) { // If there was a successful AJAX request, toggle the checkbox - $target.removeClass('loading').toggleClass('entry_approved', (approved === 'Approved') ); + $target.removeClass( 'loading' ).toggleClass( 'entry_approved', ( + approved === 'Approved' + ) ); } - }); + } ); return true; } - - - $(document).ready( function() { + $( document ).ready( function () { // add actions to bulk select box - $("#bulk_action, #bulk_action2").append(''); + $( "#bulk_action, #bulk_action2" ).append( '' ); // display update message if any - if( gvGlobals.bulk_message.length > 0 ) { - displayMessage( gvGlobals.bulk_message, 'updated', '#lead_form'); + if ( gvGlobals.bulk_message.length > 0 ) { + displayMessage( gvGlobals.bulk_message, 'updated', '#lead_form' ); } // inject approve/disapprove buttons into the first column of table - $('thead th.check-column:eq(1), tfoot th.check-column:eq(1)').after(''); - - $('td:has(img[src*="star"])').after(''); + $( 'thead th.check-column:eq(1), tfoot th.check-column:eq(1)' ).after( '' ); - $('tr:has(input.entry_approved)').find('a.toggleApproved').addClass('entry_approved').prop('title', gvGlobals.unapprove_title ); + $( 'td:has(img[src*="star"])' ).after( '' ); + $( 'tr:has(input.entry_approved)' ).find( 'a.toggleApproved' ).addClass( 'entry_approved' ).prop( 'title', gvGlobals.unapprove_title ); - $('.toggleApproved').click( function(e) { + $( '.toggleApproved' ).click( function ( e ) { e.preventDefault(); - var entryID = $(this).parent().parent().find( 'th input[type="checkbox"]' ).val(); + var entryID = $( this ).parent().parent().find( 'th input[type="checkbox"]' ).val(); - $(this).addClass('loading'); + $( this ).addClass( 'loading' ); - if( $(this).hasClass('entry_approved') ) { - $(this).prop('title', gvGlobals.approve_title ); - updateApproved( entryID, 0, $(this)); + if ( $( this ).hasClass( 'entry_approved' ) ) { + $( this ).prop( 'title', gvGlobals.approve_title ); + updateApproved( entryID, 0, $( this ) ); } else { - $(this).prop('title', gvGlobals.unapprove_title ); - updateApproved( entryID, 'Approved', $(this)); + $( this ).prop( 'title', gvGlobals.unapprove_title ); + updateApproved( entryID, 'Approved', $( this ) ); } return false; - }); + } ); - }); + } ); -}(jQuery)); +} (jQuery) ); diff --git a/assets/js/admin-post-edit.js b/assets/js/admin-post-edit.js index 0e6480fcf8..8882524207 100644 --- a/assets/js/admin-post-edit.js +++ b/assets/js/admin-post-edit.js @@ -8,29 +8,29 @@ * @copyright Copyright 2014, Katz Web Services, Inc. * * @since 1.0.0 + * + * globals jQuery, gvGlobals */ -jQuery(document).ready( function( $ ) { +jQuery( document ).ready( function( $ ) { /** - * Set the defaultValue property for select inputs, since they're not set by the DOM. This allows us to check whether they've been changed in InsertViewShortcode() + * Set the defaultValue property for select inputs, since they're not set by the DOM. This allows us to check whether they've been changed in insertViewShortcode() * @return {string} Value */ - $('#select_gravityview_view_form') - .find('select') - .prop( 'defaultValue', function() { - return $(this).val(); - }); + $( '#select_gravityview_view_form' ).find( 'select' ).prop( 'defaultValue', function () { + return $( this ).val(); + } ); /** * Generate the shortcode to insert, and reset the form to default state. */ - function InsertViewShortcode(){ + function insertViewShortcode() { - if( $("#gravityview_id").val() === '' ) { + if ( $( "#gravityview_id" ).val() === '' ) { alert( gvGlobals.alert_1 ); - $("#gravityview_view_id").focus(); + $( "#gravityview_view_id" ).focus(); return false; } @@ -39,30 +39,38 @@ jQuery(document).ready( function( $ ) { /** * Run through each input and generate shortcode attributes based on their `name`s. */ - $("#select_gravityview_view_form :input:enabled").each(function() { + $( "#select_gravityview_view_form").find(":input:enabled" ).each( function () { var setting_value = ''; // CHECKBOX or RADIO // Checkboxes and Radio inputs have their own `defaultChecked` property // so we process them separately - if( $(this).is(':checkbox') || $(this).is(':radio') ) { + if ( $( this ).is( ':checkbox' ) || $( this ).is( ':radio' ) ) { // If it's not checked and it's not checked by default, don't add the attribute - if( ( true === $(this).is(':checked') ) && ( true === $(this).prop('defaultChecked') ) ) { + if ( ( + true === $( this ).is( ':checked' ) + ) && ( + true === $( this ).prop( 'defaultChecked' ) + ) ) { return; } // If it's not checked and it's not checked by default, don't add the attribute - if( ( false === $(this).is(':checked') ) && (false === $(this).prop('defaultChecked') ) ) { + if ( ( + false === $( this ).is( ':checked' ) + ) && ( + false === $( this ).prop( 'defaultChecked' ) + ) ) { return; } // 1 = checked; 0 = not checked - setting_value = $(this).is(':checked') ? '1' : '0'; + setting_value = $( this ).is( ':checked' ) ? '1' : '0'; // Reset to default - $(this).prop( 'checked', $(this).prop('defaultChecked') ); + $( this ).prop( 'checked', $( this ).prop( 'defaultChecked' ) ); } // NOT A CHECKBOX @@ -71,34 +79,34 @@ jQuery(document).ready( function( $ ) { else { // It's a drop-down and the value is empty - likely the "Sort by Field" select - if( $(this).is('select') && $(this).val() === '' ) { + if ( $( this ).is( 'select' ) && $( this ).val() === '' ) { return; } // If the value is the default value, don't add attribute - if( $(this).val() === $(this).prop('defaultValue') ) { + if ( $( this ).val() === $( this ).prop( 'defaultValue' ) ) { return; } else { // Get the value - setting_value = $(this).val(); + setting_value = $( this ).val(); // Reset to default - $(this).val( $(this).prop('defaultValue') ); + $( this ).val( $( this ).prop( 'defaultValue' ) ); } } // The shortcode attribute is the input name, without `gravityview_` in front - var setting_attr = $(this).prop('name').replace(/^gravityview_/, ''); + var setting_attr = $( this ).prop( 'name' ).replace( /^gravityview_/, '' ); // Add to the output shortcode += ' ' + setting_attr + '="' + setting_value + '"'; - }); + } ); // Close the shortcode tag shortcode += ']'; @@ -109,46 +117,48 @@ jQuery(document).ready( function( $ ) { } //datepicker - $('.gv-datepicker').datepicker({ + $( '.gv-datepicker' ).datepicker( { dateFormat: "yy-mm-dd", // Allow users to type in values like "-1 year" or "now" constrainInput: false - }); + } ); // Select view id -> populate sort fields - $("#gravityview_id").change( function() { + $( "#gravityview_id" ).change( function () { + + var hide_if_js = $( '#select_gravityview_view_form' ).find( '.hide-if-js' ); - if( $("#gravityview_id").val() === '' ) { - $('#select_gravityview_view_form').find('.hide-if-js').fadeOut(); + if ( $( "#gravityview_id" ).val() === '' ) { + hide_if_js.fadeOut(); return; } // While it's loading, disable the field, remove previous options, and add loading message. - $("#gravityview_sort_field").prop('disabled', 'disabled').empty().append(''); + $( "#gravityview_sort_field" ).prop( 'disabled', 'disabled' ).empty().append( '' ); var data = { action: 'gv_sortable_fields', - viewid: $(this).val(), - nonce: gvGlobals.nonce, + viewid: $( this ).val(), + nonce: gvGlobals.nonce }; - $.post( ajaxurl, data, function( response ) { - if( response ) { - $("#gravityview_sort_field").empty().append( response ).prop('disabled', null ); + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + $( "#gravityview_sort_field" ).empty().append( response ).prop( 'disabled', null ); } - }); + } ); - $('#select_gravityview_view_form').find('.hide-if-js').fadeIn(); - }); + hide_if_js.fadeIn(); + } ); // capture form submit -> add shortcode to editor - $('#insert_gravityview_view').on( 'click', function(e) { + $( '#insert_gravityview_view' ).on( 'click', function ( e ) { e.preventDefault(); - InsertViewShortcode(); - $('#select_gravityview_view_form').find('.hide-if-js').hide(); + insertViewShortcode(); + $( '#select_gravityview_view_form' ).find( '.hide-if-js' ).hide(); return false; - }); + } ); }); diff --git a/assets/js/admin-post-edit.min.js b/assets/js/admin-post-edit.min.js index 11e1fbb4d7..600adc303a 100644 --- a/assets/js/admin-post-edit.min.js +++ b/assets/js/admin-post-edit.min.js @@ -1 +1 @@ -jQuery(document).ready(function($){function InsertViewShortcode(){if(""===$("#gravityview_id").val())return alert(gvGlobals.alert_1),$("#gravityview_view_id").focus(),!1;var shortcode="[gravityview";return $("#select_gravityview_view_form :input:enabled").each(function(){var setting_value="";if($(this).is(":checkbox")||$(this).is(":radio")){if(!0===$(this).is(":checked")&&!0===$(this).prop("defaultChecked"))return;if(!1===$(this).is(":checked")&&!1===$(this).prop("defaultChecked"))return;setting_value=$(this).is(":checked")?"1":"0",$(this).prop("checked",$(this).prop("defaultChecked"))}else{if($(this).is("select")&&""===$(this).val())return;if($(this).val()===$(this).prop("defaultValue"))return;setting_value=$(this).val(),$(this).val($(this).prop("defaultValue"))}var setting_attr=$(this).prop("name").replace(/^gravityview_/,"");shortcode+=" "+setting_attr+'="'+setting_value+'"'}),shortcode+="]",window.send_to_editor(shortcode),!1}$("#select_gravityview_view_form").find("select").prop("defaultValue",function(){return $(this).val()}),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1}),$("#gravityview_id").change(function(){if(""===$("#gravityview_id").val())return void $("#select_gravityview_view_form").find(".hide-if-js").fadeOut();$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields",viewid:$(this).val(),nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)}),$("#select_gravityview_view_form").find(".hide-if-js").fadeIn()}),$("#insert_gravityview_view").on("click",function(e){return e.preventDefault(),InsertViewShortcode(),$("#select_gravityview_view_form").find(".hide-if-js").hide(),!1})}); \ No newline at end of file +jQuery(document).ready(function($){function insertViewShortcode(){if(""===$("#gravityview_id").val())return alert(gvGlobals.alert_1),$("#gravityview_view_id").focus(),!1;var shortcode="[gravityview";return $("#select_gravityview_view_form").find(":input:enabled").each(function(){var setting_value="";if($(this).is(":checkbox")||$(this).is(":radio")){if(!0===$(this).is(":checked")&&!0===$(this).prop("defaultChecked"))return;if(!1===$(this).is(":checked")&&!1===$(this).prop("defaultChecked"))return;setting_value=$(this).is(":checked")?"1":"0",$(this).prop("checked",$(this).prop("defaultChecked"))}else{if($(this).is("select")&&""===$(this).val())return;if($(this).val()===$(this).prop("defaultValue"))return;setting_value=$(this).val(),$(this).val($(this).prop("defaultValue"))}var setting_attr=$(this).prop("name").replace(/^gravityview_/,"");shortcode+=" "+setting_attr+'="'+setting_value+'"'}),shortcode+="]",window.send_to_editor(shortcode),!1}$("#select_gravityview_view_form").find("select").prop("defaultValue",function(){return $(this).val()}),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1}),$("#gravityview_id").change(function(){var hide_if_js=$("#select_gravityview_view_form").find(".hide-if-js");if(""===$("#gravityview_id").val())return void hide_if_js.fadeOut();$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields",viewid:$(this).val(),nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)}),hide_if_js.fadeIn()}),$("#insert_gravityview_view").on("click",function(e){return e.preventDefault(),insertViewShortcode(),$("#select_gravityview_view_form").find(".hide-if-js").hide(),!1})}); \ No newline at end of file diff --git a/assets/js/admin-views.js b/assets/js/admin-views.js index 6c0350edad..9826166eb2 100644 --- a/assets/js/admin-views.js +++ b/assets/js/admin-views.js @@ -14,1402 +14,1384 @@ (function( $ ) { - var viewConfiguration, viewGeneralSettings; + var viewConfiguration, viewGeneralSettings; - viewConfiguration = { + viewConfiguration = { - // Checks if the execution is on a Start Fresh context - startFreshStatus: false, + // Checks if the execution is on a Start Fresh context + startFreshStatus: false, - init: function () { + init: function () { - // short tag - var vcfg = viewConfiguration; + // short tag + var vcfg = viewConfiguration; - //select form dropdown - vcfg.gvSelectForm = $('#gravityview_form_id'); + //select form dropdown + vcfg.gvSelectForm = $( '#gravityview_form_id' ); - //current form selection - vcfg.currentFormId = vcfg.gvSelectForm.val(); + //current form selection + vcfg.currentFormId = vcfg.gvSelectForm.val(); - // Start by showing/hiding on load - vcfg.toggleInitialVisibility(vcfg); + // Start by showing/hiding on load + vcfg.toggleInitialVisibility( vcfg ); - // Start bind to $('body') - $('body') + // Start bind to $('body') + $( 'body' ) - // select form - .on('change', '#gravityview_form_id', vcfg.formChange ) + // select form + .on( 'change', '#gravityview_form_id', vcfg.formChange ) - // start fresh button - .on('click', 'a[href="#gv_start_fresh"]', vcfg.startFresh) + // start fresh button + .on( 'click', 'a[href="#gv_start_fresh"]', vcfg.startFresh ) - // when saving the View, try to create form before proceeding - .on('submit', '#post', vcfg.processFormSubmit) + // when saving the View, try to create form before proceeding + .on( 'submit', '#post', vcfg.processFormSubmit ) - // Hover overlay show/hide - .on('click', ".gv-view-types-hover", vcfg.selectTemplateHover) + // Hover overlay show/hide + .on( 'click', ".gv-view-types-hover", vcfg.selectTemplateHover ) - // Convert rel="external" to target="_blank" for accessibility - .on('click', 'a[rel*=external]', vcfg.openExternalLinks) + // Convert rel="external" to target="_blank" for accessibility + .on( 'click', 'a[rel*=external]', vcfg.openExternalLinks ) - // close all tooltips if user clicks outside the tooltip - .on('click mouseup keyup', vcfg.closeTooltips) + // close all tooltips if user clicks outside the tooltip + .on( 'click mouseup keyup', vcfg.closeTooltips ) - // switch View (for existing forms) - .on('click', 'a[href="#gv_switch_view"]', vcfg.switchView) + // switch View (for existing forms) + .on( 'click', 'a[href="#gv_switch_view"]', vcfg.switchView ) - // select template - .on('click', 'a[href="#gv_select_template"]', vcfg.selectTemplate) + // select template + .on( 'click', 'a[href="#gv_select_template"]', vcfg.selectTemplate ) - // bind Add Field fields to the addField method - .on('click', '.ui-tooltip-content .gv-fields', vcfg.startAddField) + // bind Add Field fields to the addField method + .on( 'click', '.ui-tooltip-content .gv-fields', vcfg.startAddField ) - // When user clicks into the shortcode example field, select the example. - .on('click', ".gv-shortcode input", vcfg.selectText) + // When user clicks into the shortcode example field, select the example. + .on( 'click', ".gv-shortcode input", vcfg.selectText ) - // When changing forms, update the form info helper links - .on('gravityview_form_change', vcfg.updateFormLinks) + // When changing forms, update the form info helper links + .on( 'gravityview_form_change', vcfg.updateFormLinks ) - // Show fields that are being used as links to single entry - .on('change', ".gv-dialog-options input[name*=show_as_link]", vcfg.toggleShowAsEntry) + // Show fields that are being used as links to single entry + .on( 'change', ".gv-dialog-options input[name*=show_as_link]", vcfg.toggleShowAsEntry ) - // show field buttons: Settings & Remove - .on('click', ".gv-field-controls a[href='#remove']", vcfg.removeField) + // show field buttons: Settings & Remove + .on( 'click', ".gv-field-controls a[href='#remove']", vcfg.removeField ) - // Clicking a settings link opens settings - .on('click', ".gv-field-controls a[href='#settings']", vcfg.openFieldSettings) + // Clicking a settings link opens settings + .on( 'click', ".gv-field-controls a[href='#settings']", vcfg.openFieldSettings ) - // Double-clicking a field/widget label opens settings - .on('dblclick', ".gv-fields", vcfg.openFieldSettings ); + // Double-clicking a field/widget label opens settings + .on( 'dblclick', ".gv-fields", vcfg.openFieldSettings ); - // End bind to $('body') + // End bind to $('body') - }, + }, - /** - * Close all tooltips if user clicks outside the tooltip or presses escape key - * @param {[type]} e [description] - * @return {[type]} [description] - */ - closeTooltips: function (e) { + /** + * Close all tooltips if user clicks outside the tooltip or presses escape key + * @param {[type]} e [description] + * @return {[type]} [description] + */ + closeTooltips: function ( e ) { - var activeTooltips = $("[data-tooltip='active']"); + var activeTooltips = $( "[data-tooltip='active']" ); - var close = false; - var return_false = false; + var close = false; + var return_false = false; - switch (e.type) { + switch ( e.type ) { - case 'keyup': + case 'keyup': - // Escape key was pressed - if (e.keyCode === 27) { - close = true; - } + // Escape key was pressed + if ( e.keyCode === 27 ) { + close = true; + } - break; + break; - case 'mouseup': + case 'mouseup': - if ( - // If clicking inside the dialog or tooltip - $(e.target).parents('.ui-dialog,.ui-tooltip').length || + if ( // If clicking inside the dialog or tooltip + $( e.target ).parents( '.ui-dialog,.ui-tooltip' ).length || - // Or on the dialog or tooltip itself - $(e.target).is('.ui-dialog,.ui-tooltip') - ) { - close = false; - } + // Or on the dialog or tooltip itself + $( e.target ).is( '.ui-dialog,.ui-tooltip' ) ) { + close = false; + } - // For tooltips, clicking on anything outside of the tooltip - // should close it. Not for dialogs. - else if ( activeTooltips.length > 0 ) { - close = true; - } + // For tooltips, clicking on anything outside of the tooltip + // should close it. Not for dialogs. + else if ( activeTooltips.length > 0 ) { + close = true; + } - // The click was on the close link - if ($(e.target).parents('.close').length) { - close = true; - } + // The click was on the close link + if ( $( e.target ).parents( '.close' ).length ) { + close = true; + } - break; // End mouseup switch + break; // End mouseup switch - // Run on click instead of mouseup so that when selecting a form using the - // select, it doesn't close the dialog right away - case 'click': + // Run on click instead of mouseup so that when selecting a form using the + // select, it doesn't close the dialog right away + case 'click': - // They clicked the overlay - if ( $(e.target).is('.gv-overlay') ) { - close = true; - return_false = true; + // They clicked the overlay + if ( $( e.target ).is( '.gv-overlay' ) ) { + close = true; + return_false = true; - // Always remove the overlay - $(e.target).remove(); - } + // Always remove the overlay + $( e.target ).remove(); + } - break; + break; - } + } - if (close) { + if ( close ) { - // Close all open tooltips - activeTooltips.tooltip("close"); + // Close all open tooltips + activeTooltips.tooltip( "close" ); - // Close all open dialogs - $(".ui-dialog:visible").find('.ui-dialog-content').dialog("close"); + // Close all open dialogs + $( ".ui-dialog:visible" ).find( '.ui-dialog-content' ).dialog( "close" ); - // Prevent scrolling window on click close - if( return_false ) { + // Prevent scrolling window on click close + if ( return_false ) { return false; } - } - }, + } + }, + + /** + * Toggle the dashicon link representing whether the field is being used as a link to the single entry + * @param {object} e jQuery event object + * @return {void} + */ + toggleShowAsEntry: function ( e ) { + + var parent = $( e.target ).parents( '.gv-fields' ); + + var icon = parent.find( '.gv-field-controls .dashicons-admin-links' ); + + icon.toggleClass( 'hide-if-js', $( e.target ).not( ':checked' ) ); + + }, + + /** + * Select the text of an input field on click + * @filter default text + * @action default text + * @param {[type]} e [description] + * @return {[type]} [description] + */ + selectText: function ( e ) { + e.preventDefault(); + + $( this ).focus().select(); + + return false; + }, + + toggleInitialVisibility: function ( vcfg ) { + + // There are no Gravity Forms forms + if ( vcfg.gvSelectForm.length === 0 ) { + return; + } + + // check if there's a form selected + if ( '' === vcfg.currentFormId ) { + // if no form is selected, hide all the configs + vcfg.hideView(); + + } else { + // if both form and template were selected, show View Layout config + if ( $( "#gravityview_directory_template" ).val().length > 0 ) { + $( "#gravityview_select_template" ).slideUp( 150 ); + vcfg.showViewConfig(); + } else { + // else show the template picker + vcfg.templateFilter( 'custom' ); + vcfg.showViewTypeMetabox(); + } + } + + }, + + // hides template picker metabox and view config metabox + hideView: function () { + var vcfg = viewConfiguration; + + vcfg.currentFormId = ''; + $( "#gravityview_view_config, #gravityview_select_template, #gravityview_sort_filter, .gv-form-links" ).hide(); + + }, + + /** + * Update the Data Source links to the selected form + * @return {void} + */ + updateFormLinks: function () { + var vcfg = viewConfiguration; + + $( '.gv-form-links a' ).each( function () { + + var new_url = $( this ).attr( 'href' ).replace( /id=([0-9]+)/gm, 'id=' + vcfg.gvSelectForm.val() ); + + $( this ).attr( 'href', new_url ); + + } ); + }, + + /** + * Show/Hide + * @return {[type]} [description] + */ + toggleViewTypeMetabox: function () { + var $templates = $( "#gravityview_select_template" ); + + if ( $templates.is( ':visible' ) ) { + + $( 'a[href=#gv_switch_view]' ).text( function () { + return $( this ).attr( 'data-text-backup' ); + } ); + + $templates.slideUp( 150 ); + + } else { + + $( 'a[href=#gv_switch_view]' ).attr( 'data-text-backup', function () { + return $( this ).text(); + } ).text( gvGlobals.label_cancel ); + + $templates.slideDown( 150 ); + } + }, + + showViewTypeMetabox: function () { + $( "#gravityview_select_template" ).slideDown( 150 ); + }, + + startFresh: function ( e ) { + e.preventDefault(); + var vcfg = viewConfiguration; + + //todo: what to do if you start fresh and then select another form!? + // + vcfg.startFreshStatus = true; + + // If the form has been chosen and there are GF forms to choose from + if ( vcfg.currentFormId !== '' && vcfg.gvSelectForm.length > 0 ) { + vcfg.showDialog( '#gravityview_form_id_dialog' ); + } else { + vcfg.startFreshContinue(); + } + }, + + startFreshContinue: function () { + var vcfg = viewConfiguration; + + // start fresh on save trigger + $( '#gravityview_form_id_start_fresh' ).val( '1' ); + + // Reset the selected form value + $( '#gravityview_form_id' ).val( '' ); + $( 'a[href=#gv_switch_view]' ).hide(); + + // show templates + vcfg.templateFilter( 'preset' ); + vcfg.showViewTypeMetabox(); + + // hide config metabox + vcfg.hideViewConfig(); + }, + + /** + * The Data Source dropdown has been changed. Show alert dialog or process. + * @return void + */ + formChange: function ( e ) { + e.preventDefault(); + var vcfg = viewConfiguration; + + vcfg.startFreshStatus = false; + + if ( vcfg.currentFormId !== '' && vcfg.currentFormId !== $( this ).val() ) { + vcfg.showDialog( '#gravityview_form_id_dialog' ); + } else { + vcfg.formChangeContinue(); + } + }, + + formChangeContinue: function () { + var vcfg = viewConfiguration; + + if ( '' === vcfg.gvSelectForm.val() ) { + vcfg.hideView(); + } else { + + // Let merge tags know not to initialize + $( 'body' ).trigger( 'gravityview_form_change' ).addClass( 'gv-form-changed' ); + + vcfg.templateFilter( 'custom' ); + vcfg.showViewTypeMetabox(); + vcfg.getAvailableFields(); + vcfg.getSortableFields(); + $( 'a[href=#gv_switch_view]' ).fadeOut( 150 ); + } + }, + + showDialog: function ( dialogSelector, buttons ) { + + var vcfg = viewConfiguration; + + var thisDialog = $( dialogSelector ); + + var cancel_button = { + text: gvGlobals.label_cancel, + click: function () { + if ( thisDialog.is( '#gravityview_form_id_dialog' ) ) { + vcfg.startFreshStatus = false; + vcfg.gvSelectForm.val( vcfg.currentFormId ); + } + // "Changing the View Type will reset your field configuration. Changes will be permanent once you save the View." + else if ( thisDialog.is( '#gravityview_switch_template_dialog' ) ) { + vcfg.toggleViewTypeMetabox(); + vcfg.showViewConfig(); + } + thisDialog.dialog( 'close' ); + } + }; + + var continue_button = { + text: gvGlobals.label_continue, + click: function () { + if ( thisDialog.is( '#gravityview_form_id_dialog' ) ) { + if ( vcfg.startFreshStatus ) { + vcfg.startFreshContinue(); + } else { + vcfg.formChangeContinue(); + } + } + // "Changing the View Type will reset your field configuration. Changes will be permanent once you save the View." + else if ( thisDialog.is( '#gravityview_switch_template_dialog' ) ) { + vcfg.selectTemplateContinue(); + vcfg.toggleViewTypeMetabox(); + } + + thisDialog.dialog( 'close' ); + } + }; - /** - * Toggle the dashicon link representing whether the field is being used as a link to the single entry - * @param {object} e jQuery event object - * @return {void} - */ - toggleShowAsEntry: function (e) { + var default_buttons = [ cancel_button, continue_button ]; - var parent = $(e.target).parents('.gv-fields'); + // If the buttons var isn't passed, use the defaults instead. + buttons = buttons || default_buttons; - var icon = parent.find('.gv-field-controls .dashicons-admin-links'); + thisDialog.dialog( { + dialogClass: 'wp-dialog gv-dialog', + appendTo: thisDialog.parent(), + draggable: false, + resizable: false, + width: function () { - icon.toggleClass('hide-if-js', $(e.target).not(':checked')); + // If the window is wider than 550px, use 550 + if ( $( window ).width() > 550 ) { + return 550; + } - }, + // Otherwise, return the window width, less 10px + return $( window ).width() - 10; + }, + open: function () { + $( '
' ).prependTo( '#wpwrap' ); + return true; + }, + close: function ( e ) { + e.preventDefault(); - /** - * Select the text of an input field on click - * @filter default text - * @action default text - * @param {[type]} e [description] - * @return {[type]} [description] - */ - selectText: function (e) { - e.preventDefault(); + vcfg.setCustomLabel( thisDialog ); - $(this).focus().select(); + $( '#wpwrap > .gv-overlay' ).fadeOut( 'fast', function () { + $( this ).remove(); + } ); + }, + closeOnEscape: true, + buttons: buttons + } ); - return false; - }, + }, - toggleInitialVisibility: function (vcfg) { + /** + * Update the field display to show the custom label while editing + * @param {jQuery DOM} dialog The dialog object + */ + setCustomLabel: function ( dialog ) { - // There are no Gravity Forms forms - if (vcfg.gvSelectForm.length === 0) { - return; - } + // Does the field have a custom label? + var $custom_label = $( '[name*=custom_label]', dialog ); - // check if there's a form selected - if ('' === vcfg.currentFormId) { - // if no form is selected, hide all the configs - vcfg.hideView(); + var show_label = $( '[name*=show_label]', dialog ).is( ':checked' ); - } else { - // if both form and template were selected, show View Layout config - if ($("#gravityview_directory_template").val().length > 0) { - $("#gravityview_select_template").slideUp(150); - vcfg.showViewConfig(); - } else { - // else show the template picker - vcfg.templateFilter('custom'); - vcfg.showViewTypeMetabox(); - } - } + var $label = dialog.parents( '.gv-fields' ).find( '.gv-field-label' ); - }, + // If there's a custom title, use it for the label. + if ( $custom_label.length && $custom_label.val().trim().length && show_label ) { - // hides template picker metabox and view config metabox - hideView: function () { - var vcfg = viewConfiguration; + $label.text( $custom_label.val().trim() ); - vcfg.currentFormId = ''; - $("#gravityview_view_config, #gravityview_select_template, #gravityview_sort_filter, .gv-form-links").hide(); + } else { - }, + // If there's no custom title, then use the original + // @see GravityView_Admin_View_Item::getOutput() + $label.html( $label.attr( 'data-original-title' ) ); - /** - * Update the Data Source links to the selected form - * @return {void} - */ - updateFormLinks: function () { - var vcfg = viewConfiguration; + } - $('.gv-form-links a').each(function () { + }, - var new_url = $(this).attr('href').replace(/id=([0-9]+)/gm, 'id=' + vcfg.gvSelectForm.val()); + /** + * @todo Combine with the embed shortcode dropdown + * @param {[type]} context [description] + * @param {[type]} id [description] + * @return {[type]} [description] + */ + getSortableFields: function ( context, id ) { - $(this).attr('href', new_url); - - }); - }, + var vcfg = viewConfiguration; - /** - * Show/Hide - * @return {[type]} [description] - */ - toggleViewTypeMetabox: function () { - var $templates = $("#gravityview_select_template"); + // While it's loading, disable the field, remove previous options, and add loading message. + $( "#gravityview_sort_field" ).prop( 'disabled', 'disabled' ).empty().append( '' ); - if ($templates.is(':visible')) { + var data = { + action: 'gv_sortable_fields_form', + nonce: gvGlobals.nonce + }; - $('a[href=#gv_switch_view]').text(function () { - return $(this).attr('data-text-backup'); - }); - - $templates.slideUp(150); - - } else { - - $('a[href=#gv_switch_view]').attr('data-text-backup', function () { - return $(this).text(); - }).text(gvGlobals.label_cancel); - - $templates.slideDown(150); - } - }, - - showViewTypeMetabox: function () { - $("#gravityview_select_template").slideDown(150); - }, - - startFresh: function (e) { - e.preventDefault(); - var vcfg = viewConfiguration; - - //todo: what to do if you start fresh and then select another form!? - // - vcfg.startFreshStatus = true; - - // If the form has been chosen and there are GF forms to choose from - if ( vcfg.currentFormId !== '' && vcfg.gvSelectForm.length > 0) { - vcfg.showDialog('#gravityview_form_id_dialog'); - } else { - vcfg.startFreshContinue(); - } - }, - - startFreshContinue: function () { - var vcfg = viewConfiguration; - - // start fresh on save trigger - $('#gravityview_form_id_start_fresh').val('1'); - - // Reset the selected form value - $('#gravityview_form_id').val(''); - $('a[href=#gv_switch_view]').hide(); - - // show templates - vcfg.templateFilter('preset'); - vcfg.showViewTypeMetabox(); - - // hide config metabox - vcfg.hideViewConfig(); - }, - - /** - * The Data Source dropdown has been changed. Show alert dialog or process. - * @return void - */ - formChange: function (e) { - e.preventDefault(); - var vcfg = viewConfiguration; - - vcfg.startFreshStatus = false; - - if (vcfg.currentFormId !== '' && vcfg.currentFormId !== $(this).val()) { - vcfg.showDialog('#gravityview_form_id_dialog'); - } else { - vcfg.formChangeContinue(); - } - }, - - formChangeContinue: function () { - var vcfg = viewConfiguration; - - if ('' === vcfg.gvSelectForm.val() ) { - vcfg.hideView(); - } else { - - // Let merge tags know not to initialize - $('body').trigger('gravityview_form_change').addClass('gv-form-changed'); - - vcfg.templateFilter('custom'); - vcfg.showViewTypeMetabox(); - vcfg.getAvailableFields(); - vcfg.getSortableFields(); - $('a[href=#gv_switch_view]').fadeOut(150); - } - }, - - showDialog: function (dialogSelector, buttons) { - - var vcfg = viewConfiguration; - - var thisDialog = $(dialogSelector); - - var cancel_button = { - text: gvGlobals.label_cancel, - click: function () { - if (thisDialog.is('#gravityview_form_id_dialog')) { - vcfg.startFreshStatus = false; - vcfg.gvSelectForm.val(vcfg.currentFormId); - } - // "Changing the View Type will reset your field configuration. Changes will be permanent once you save the View." - else if (thisDialog.is('#gravityview_switch_template_dialog')) { - vcfg.toggleViewTypeMetabox(); - vcfg.showViewConfig(); - } - thisDialog.dialog('close'); - } - }; - - var continue_button = { - text: gvGlobals.label_continue, - click: function () { - if (thisDialog.is('#gravityview_form_id_dialog')) { - if (vcfg.startFreshStatus) { - vcfg.startFreshContinue(); - } else { - vcfg.formChangeContinue(); - } - } - // "Changing the View Type will reset your field configuration. Changes will be permanent once you save the View." - else if (thisDialog.is('#gravityview_switch_template_dialog')) { - vcfg.selectTemplateContinue(); - vcfg.toggleViewTypeMetabox(); - } - - thisDialog.dialog('close'); - } - }; - - var default_buttons = [cancel_button, continue_button]; - - // If the buttons var isn't passed, use the defaults instead. - buttons = buttons || default_buttons; - - thisDialog.dialog({ - dialogClass: 'wp-dialog gv-dialog', - appendTo: thisDialog.parent(), - draggable: false, - resizable: false, - width: function () { - - // If the window is wider than 550px, use 550 - if ($(window).width() > 550) { - return 550; - } - - // Otherwise, return the window width, less 10px - return $(window).width() - 10; - }, - open: function () { - $('
').prependTo('#wpwrap'); - return true; - }, - close: function (e) { - e.preventDefault(); - - vcfg.setCustomLabel(thisDialog); - - $('#wpwrap > .gv-overlay').fadeOut('fast', function () { - $(this).remove(); - }); - }, - closeOnEscape: true, - buttons: buttons - }); - - }, - - /** - * Update the field display to show the custom label while editing - * @param {jQuery DOM} dialog The dialog object - */ - setCustomLabel: function (dialog) { - - // Does the field have a custom label? - var $custom_label = $('[name*=custom_label]', dialog); - - var show_label = $('[name*=show_label]', dialog).is(':checked'); - - var $label = dialog.parents('.gv-fields').find('.gv-field-label'); - - // If there's a custom title, use it for the label. - if ($custom_label.length && $custom_label.val().trim().length && show_label) { - - $label.text($custom_label.val().trim()); - - } else { - - // If there's no custom title, then use the original - // @see GravityView_Admin_View_Item::getOutput() - $label.html($label.attr('data-original-title')); - - } - - }, - - /** - * @todo Combine with the embed shortcode dropdown - * @param {[type]} context [description] - * @param {[type]} id [description] - * @return {[type]} [description] - */ - getSortableFields: function (context, id) { - - var vcfg = viewConfiguration; - - // While it's loading, disable the field, remove previous options, and add loading message. - $("#gravityview_sort_field") - .prop('disabled', 'disabled') - .empty() - .append(''); - - var data = { - action: 'gv_sortable_fields_form', - nonce: gvGlobals.nonce - }; - - if (context !== undefined && 'preset' === context) { - data.template_id = id; - } else { - data.form_id = vcfg.gvSelectForm.val(); - } + if ( context !== undefined && 'preset' === context ) { + data.template_id = id; + } else { + data.form_id = vcfg.gvSelectForm.val(); + } - $.post(ajaxurl, data, function (response) { - if (response !== 'false' && response !== '0') { - $("#gravityview_sort_field").empty().append(response).prop('disabled', null); - } - }); - - }, - - - switchView: function (e) { - e.preventDefault(); - e.stopImmediatePropagation(); - - var vcfg = viewConfiguration; - - vcfg.templateFilter('custom'); - vcfg.toggleViewTypeMetabox(); - }, - - /** - * Change which filters to show, depending on whether the form is Start Fresh or pre-existing forms - * @param {string} templateType Checks against the `data-filter` attribute of the HTML - * @return {[type]} [description] - */ - templateFilter: function (templateType) { - $(".gv-view-types-module").each(function () { - if ($(this).attr('data-filter') === templateType) { - $(this).parent().show(); - } else { - $(this).parent().hide(); - } - }); - }, - - selectTemplate: function (e) { - var vcfg = viewConfiguration; - - e.preventDefault(); - e.stopImmediatePropagation(); - - // get selected template - vcfg.wantedTemplate = $(this); - var currTemplateId = $("#gravityview_directory_template").val(); - var selectedTemplateId = vcfg.wantedTemplate.attr("data-templateid"); - - // check if template is being changed - if (currTemplateId === '') { - $("#gravityview_select_template").slideUp(150); - vcfg.selectTemplateContinue(); - } else if (currTemplateId !== selectedTemplateId) { - vcfg.showDialog('#gravityview_switch_template_dialog'); - } else { - // show the same situation as before clicking in Start Fresh. - vcfg.toggleViewTypeMetabox(); - vcfg.showViewConfig(); - } - }, - - - selectTemplateContinue: function () { - - var vcfg = viewConfiguration, - selectedTemplateId = vcfg.wantedTemplate.attr("data-templateid"); - - // update template name - $("#gravityview_directory_template").val(selectedTemplateId).change(); - - //add Selected class - var $parent = vcfg.wantedTemplate.parents(".gv-view-types-module"); - $parent.parents(".gv-grid").find(".gv-view-types-module").removeClass('gv-selected'); - $parent.addClass('gv-selected'); - - $('#wpcontent,.gv-fields').addClass('gv-wait'); - - // check for start fresh context - if (vcfg.startFreshStatus) { - - //fetch the available fields of the preset-form - vcfg.getAvailableFields('preset', selectedTemplateId); - - //fetch the fields template config of the preset view - vcfg.getPresetFields(selectedTemplateId); - - //fetch Sortable fields - vcfg.getSortableFields('preset', selectedTemplateId); - - } else { - //change view configuration active areas - vcfg.updateActiveAreas(selectedTemplateId); - - $('a[href=#gv_switch_view]').fadeIn(150); - vcfg.toggleViewTypeMetabox(); - - } - - }, - - /** - * When clicking the hover overlay, select the template by clicking the #gv_select_template button - * @param object e jQuery event object - * @return void - */ - selectTemplateHover: function (e) { - e.preventDefault(); - e.stopImmediatePropagation(); - $(this).find('a[href="#gv_select_template"]').trigger('click'); - }, - - openExternalLinks: function () { - window.open(this.href); - return false; - }, - - /** - * Display a screenshot of the current template. Not currently in use. - * - * @todo REMOVE ? - * @param object e jQuery event object - * @return void - */ - previewTemplate: function (e) { - e.preventDefault(); - e.stopImmediatePropagation(); - var parent = $(event.currentTarget).parents(".gv-view-types-module"); - parent.find(".gv-template-preview").dialog({ - dialogClass: 'wp-dialog gv-dialog', - appendTo: $("#gravityview_select_template"), - width: 550, - open: function () { - $('
').prependTo('#wpwrap'); - }, - close: function () { - $(this).dialog("option", "appendTo", parent); - $('#wpwrap > .gv-overlay').fadeOut('fast', function () { - $(this).remove(); - }); - }, - closeOnEscape: true, - buttons: [{ - text: gvGlobals.label_close, - click: function () { - $(this).dialog('close'); - } - }] - }); - - }, - - updateActiveAreas: function (template) { - var vcfg = viewConfiguration; - - $("#directory-active-fields, #single-active-fields").children().remove(); - - var data = { - action: 'gv_get_active_areas', - template_id: template, - nonce: gvGlobals.nonce - }; - - $.post(ajaxurl, data, function (response) { - if (response) { - var content = $.parseJSON(response); - $('#directory-header-widgets').html(content.header); - $('#directory-footer-widgets').html(content.footer); - $('#directory-active-fields').append(content.directory); - $('#single-active-fields').append(content.single); - $('#wpcontent,.gv-fields').removeClass('gv-wait'); - vcfg.showViewConfig(); - } - }); - - }, - - getPresetFields: function (template) { - var vcfg = viewConfiguration; - - $("#directory-active-fields, #single-active-fields").children().remove(); - - var data = { - action: 'gv_get_preset_fields', - template_id: template, - nonce: gvGlobals.nonce - }; - - $.post(ajaxurl, data, function (response) { - if (response) { - var content = $.parseJSON(response); - $('#directory-header-widgets').html(content.header); - $('#directory-footer-widgets').html(content.footer); - $('#directory-active-fields').append(content.directory); - $('#single-active-fields').append(content.single); - $('#wpcontent,.gv-fields').removeClass('gv-wait'); - vcfg.showViewConfig(); - } - }); - - - }, - - /** - * Hide metaboxes related to view configuration. - * @return {void} - */ - hideViewConfig: function () { - $("#gravityview_view_config,#gravityview_sort_filter").slideUp(150); - - $(document).trigger('gv_admin_views_hideViewConfig'); - }, - - showViewConfig: function () { - - $("#gravityview_view_config, #gravityview_sort_filter").slideDown(150); - - viewConfiguration.toggleDropMessage(); - viewConfiguration.init_droppables(); - viewConfiguration.init_tooltips(); - - $(document).trigger('gv_admin_views_showViewConfig'); - }, - - - // tooltips - - init_tooltips: function () { - - $(".gv-add-field") - .tooltip({ - content: function () { - - // Is the field picker in single or directory mode? - // var context = ( $(this).parents('#single-view').length ) ? 'single' : 'directory'; - var context = $(this).attr('data-context'); - - switch ($(this).attr('data-objecttype')) { - case 'field': - // If in Single context, show fields available in single - // If it Directory, same for directory - return $("#"+ context + "-available-fields").html(); - case 'widget': - return $("#directory-available-widgets").html(); - } - }, - close: function () { - $(this).attr('data-tooltip', null ); - }, - open: function () { - - $(this) - .attr('data-tooltip', 'active') - .attr('data-tooltip-id', $(this).attr('aria-describedby')); - - }, - closeOnEscape: true, - disabled: true, // Don't open on hover - position: { - my: "center bottom", - at: "center top-12" - }, - tooltipClass: 'top' - }) - // add title attribute so the tooltip can continue to work (jquery ui bug?) - .attr("title", "") - .on('mouseout focusout', function (e) { - e.stopImmediatePropagation(); - }) - .click(function (e) { - - // add title attribute so the tooltip can continue to work (jquery ui bug?) - $(this).attr("title", ""); - - e.preventDefault(); - //e.stopImmediatePropagation(); - - $(this).tooltip("open"); - - }); - - }, - - /** - * Refresh Gravity Forms tooltips (the real help tooltips) - */ - refreshGFtooltips: function() { - $( ".gf_tooltip" ).tooltip( { - show: 500, - hide: 1000, - content: function () { - return $(this).prop('title'); - } - }); - }, - - - /** - * Fetch the Available Fields for a given Form ID or Preset Template ID - * @param null|string preset - * @param string templateid The "slug" of the View template - * @return void - */ - getAvailableFields: function (preset, templateid) { - - var vcfg = viewConfiguration; - - $("#directory-available-fields, #single-available-fields, #edit-available-fields").find(".gv-fields").remove(); - $("#directory-active-fields, #single-active-fields, #edit-active-fields").find(".gv-fields").remove(); - - vcfg.toggleDropMessage(); - - var data = { - action: 'gv_available_fields', - nonce: gvGlobals.nonce, - context: 'directory' - }; - - if (preset !== undefined && 'preset' === preset) { - data.template_id = templateid; - } else { - data.form_id = vcfg.gvSelectForm.val(); - } - - - // Get the fields for the directory context - $.post(ajaxurl, data, function (response) { - if (response) { - $("#directory-available-fields").append(response); - } - }); - - - // Now get the fields for the single context - data.context = 'single'; - - $.post(ajaxurl, data, function (response) { - if (response) { - $("#single-available-fields").append(response); - } - }); - - // Now get the fields for the edit context - data.context = 'edit'; - - $.post(ajaxurl, data, function (response) { - if (response) { - $("#edit-available-fields").append(response); - } - }); - - }, - - /** - * When a field is clicked in the field picker, add the field or add all fields - * @param {[type]} e [description] - * @return {void} - */ - startAddField: function (e) { - - // If the clicked field div contains the all fields label, - // we're dealing with an all fields click! - if ($(this).has('.field-id-all-fields').length) { - viewConfiguration.addAllFields($(this)); - } else { - // Add a single field. - viewConfiguration.addField($(this), e); - } - }, - - /** - * Add all the fields available at once. Bam! - * @param object clicked jQuery object of the clicked "+ Add All Fields" link - */ - addAllFields: function (clicked) { - - clicked.siblings('.gv-fields').each(function () { - $(this).trigger('click'); - }); - - // We just added all the fields. No reason to show the tooltip. - $("a.gv-add-field[data-tooltip='active']").tooltip("close"); - - }, - - /** - * Drop selected field in the active area - * @param object e jQuery Event object - */ - addField: function (clicked, e) { - e.preventDefault(); - - var vcfg = viewConfiguration; - - var newField = clicked.clone().hide(); - var areaId = clicked.parents('.ui-tooltip').attr('id'); - var templateId = $("#gravityview_directory_template").val(); - var tooltipId = clicked.parents('.ui-tooltip').attr('id'); - var addButton = $('a.gv-add-field[data-tooltip-id="' + tooltipId + '"]'); - - var data = { - action: 'gv_field_options', - template: templateId, - area: addButton.attr('data-areaid'), - context: addButton.attr('data-context'), - field_id: newField.attr('data-fieldid'), - field_label: newField.find('.gv-field-label').attr('data-original-title'), - field_type: addButton.attr('data-objecttype'), - input_type: newField.attr('data-inputtype'), - nonce: gvGlobals.nonce, - }; - - // Get the HTML for the Options
- // - If there are no options, response will NULL - // - If response is false, it means the request was invalid. - $.ajax({ - type: "POST", - url: ajaxurl, - data: data, - async: true, - beforeSend: function () { - // Don't allow saving until this is done. - vcfg.disable_publish(); - }, - complete: function () { - // Enable saving after it's done - vcfg.enable_publish(); - } - }) - .done(function (response) { - - // Add in the Options
- newField.append(response); - - // If there are field options, show the settings gear. - if ($('.gv-dialog-options', newField).length > 0) { - $('.dashicons-admin-generic', newField).removeClass('hide-if-js'); - } - - // append the new field to the active drop - $('a[data-tooltip-id="' + areaId + '"]') - .parents('.gv-droppable-area') - .find('.active-drop') - .append(newField) - .end() - .attr('data-tooltip-id', ''); - - // Show the new field - newField.fadeIn(100, function() { - - // Remove existing merge tags, since otherwise GF will add another - $('.all-merge-tags').remove(); - - // Only init merge tags if the View has been saved and the form hasn't been changed. - if ( typeof( form ) !== 'undefined' && $('body').not('.gv-form-changed')) { - - // Re-init merge tag dropdowns - window.gfMergeTags = new gfMergeTagsObj(form); - - } - - }); - - // refresh the little help tooltips - vcfg.refreshGFtooltips(); - - }) - .fail(function (jqXHR) { - - // Enable publish on error - vcfg.enable_publish(); - - // Something went wrong - alert(gvGlobals.field_loaderror); - - console.log(jqXHR); - - }) - .always(function () { - - vcfg.toggleDropMessage(); - - }); - - }, - - /** - * Enable the publish input; enable saving a View - * @return {void} - */ - enable_publish: function () { - // Restore saving after settings are generated - $('#publishing-action #publish').prop('disabled', null).removeClass('button-primary-disabled'); - }, - - /** - * Disable the publish input; prevent saving a View - * @return {void} - */ - disable_publish: function () { - $('#publishing-action #publish').prop('disabled', 'disabled').addClass('button-primary-disabled'); - }, - - // Sortables and droppables - init_droppables: function () { - - var vcfg = viewConfiguration; - - // widgets - $('#directory-fields, #single-fields').find(".active-drop-widget").sortable({ - placeholder: "fields-placeholder", - items: '> .gv-fields', - distance: 2, - revert: 75, - connectWith: ".active-drop-widget", - receive: function (event, ui) { - // Check if field comes from another active area and if so, update name attributes. + $.post( ajaxurl, data, function ( response ) { + if ( response !== 'false' && response !== '0' ) { + $( "#gravityview_sort_field" ).empty().append( response ).prop( 'disabled', null ); + } + } ); - var sender_area = ui.sender.attr('data-areaid'), - receiver_area = $(this).attr('data-areaid'); + }, - ui.item.find('[name^="widgets[' + sender_area + ']"]').each(function () { - var name = $(this).attr('name'); - $(this).attr('name', name.replace(sender_area, receiver_area)); - }); - vcfg.toggleDropMessage(); + switchView: function ( e ) { + e.preventDefault(); + e.stopImmediatePropagation(); - } - }); + var vcfg = viewConfiguration; - //fields - $('#directory-fields, #single-fields, #edit-fields').find(".active-drop-field").sortable({ - placeholder: "fields-placeholder", - items: '> .gv-fields', - distance: 2, - revert: 75, - connectWith: ".active-drop-field", - receive: function (event, ui) { - // Check if field comes from another active area and if so, update name attributes. - if (ui.item.find(".gv-dialog-options").length > 0) { + vcfg.templateFilter( 'custom' ); + vcfg.toggleViewTypeMetabox(); + }, - var sender_area = ui.sender.attr('data-areaid'), - receiver_area = $(this).attr('data-areaid'); + /** + * Change which filters to show, depending on whether the form is Start Fresh or pre-existing forms + * @param {string} templateType Checks against the `data-filter` attribute of the HTML + * @return {[type]} [description] + */ + templateFilter: function ( templateType ) { + $( ".gv-view-types-module" ).each( function () { + if ( $( this ).attr( 'data-filter' ) === templateType ) { + $( this ).parent().show(); + } else { + $( this ).parent().hide(); + } + } ); + }, + + selectTemplate: function ( e ) { + var vcfg = viewConfiguration; + + e.preventDefault(); + e.stopImmediatePropagation(); + + // get selected template + vcfg.wantedTemplate = $( this ); + var currTemplateId = $( "#gravityview_directory_template" ).val(); + var selectedTemplateId = vcfg.wantedTemplate.attr( "data-templateid" ); + + // check if template is being changed + if ( currTemplateId === '' ) { + $( "#gravityview_select_template" ).slideUp( 150 ); + vcfg.selectTemplateContinue(); + } else if ( currTemplateId !== selectedTemplateId ) { + vcfg.showDialog( '#gravityview_switch_template_dialog' ); + } else { + // show the same situation as before clicking in Start Fresh. + vcfg.toggleViewTypeMetabox(); + vcfg.showViewConfig(); + } + }, - ui.item.find('[name^="fields[' + sender_area + ']"]').each(function () { - var name = $(this).attr('name'); - $(this).attr('name', name.replace(sender_area, receiver_area)); - }); - } + selectTemplateContinue: function () { - vcfg.toggleDropMessage(); + var vcfg = viewConfiguration, selectedTemplateId = vcfg.wantedTemplate.attr( "data-templateid" ); - } - }); - }, + // update template name + $( "#gravityview_directory_template" ).val( selectedTemplateId ).change(); - toggleDropMessage: function () { + //add Selected class + var $parent = vcfg.wantedTemplate.parents( ".gv-view-types-module" ); + $parent.parents( ".gv-grid" ).find( ".gv-view-types-module" ).removeClass( 'gv-selected' ); + $parent.addClass( 'gv-selected' ); - $('.active-drop').each(function () { - if ($(this).find(".gv-fields").length > 0) { - $(this).find(".drop-message").hide(); - } else { - $(this).find(".drop-message").fadeIn(100); - } - }); + $( '#wpcontent,.gv-fields' ).addClass( 'gv-wait' ); - }, + // check for start fresh context + if ( vcfg.startFreshStatus ) { - // Event handler to remove Fields from active areas - removeField: function (e) { + //fetch the available fields of the preset-form + vcfg.getAvailableFields( 'preset', selectedTemplateId ); - e.preventDefault(); + //fetch the fields template config of the preset view + vcfg.getPresetFields( selectedTemplateId ); - var vcfg = viewConfiguration; - var area = $(e.currentTarget).parents(".active-drop"); + //fetch Sortable fields + vcfg.getSortableFields( 'preset', selectedTemplateId ); - // Nice little easter egg: when holding down control, get rid of all fields in the zone at once. - if (e.altKey && $(area).find('.gv-fields').length > 1) { + } else { + //change view configuration active areas + vcfg.updateActiveAreas( selectedTemplateId ); - // Show a confirm dialog - var remove_all = window.confirm(gvGlobals.remove_all_fields); + $( 'a[href=#gv_switch_view]' ).fadeIn( 150 ); + vcfg.toggleViewTypeMetabox(); - // If yes, remove all, otherwise don't do anything - if (remove_all) { - $(area).find('.gv-fields').remove(); - vcfg.toggleDropMessage(); - } + } - return; - } + }, + + /** + * When clicking the hover overlay, select the template by clicking the #gv_select_template button + * @param object e jQuery event object + * @return void + */ + selectTemplateHover: function ( e ) { + e.preventDefault(); + e.stopImmediatePropagation(); + $( this ).find( 'a[href="#gv_select_template"]' ).trigger( 'click' ); + }, + + openExternalLinks: function () { + window.open( this.href ); + return false; + }, + + /** + * Display a screenshot of the current template. Not currently in use. + * + * @todo REMOVE ? + * @param object e jQuery event object + * @return void + */ + previewTemplate: function ( e ) { + e.preventDefault(); + e.stopImmediatePropagation(); + var parent = $( event.currentTarget ).parents( ".gv-view-types-module" ); + parent.find( ".gv-template-preview" ).dialog( { + dialogClass: 'wp-dialog gv-dialog', + appendTo: $( "#gravityview_select_template" ), + width: 550, + open: function () { + $( '
' ).prependTo( '#wpwrap' ); + }, + close: function () { + $( this ).dialog( "option", "appendTo", parent ); + $( '#wpwrap > .gv-overlay' ).fadeOut( 'fast', function () { + $( this ).remove(); + } ); + }, + closeOnEscape: true, + buttons: [ + { + text: gvGlobals.label_close, + click: function () { + $( this ).dialog( 'close' ); + } + } + ] + } ); + + }, + + updateActiveAreas: function ( template ) { + var vcfg = viewConfiguration; + + $( "#directory-active-fields, #single-active-fields" ).children().remove(); + + var data = { + action: 'gv_get_active_areas', + template_id: template, + nonce: gvGlobals.nonce + }; + + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + var content = $.parseJSON( response ); + $( '#directory-header-widgets' ).html( content.header ); + $( '#directory-footer-widgets' ).html( content.footer ); + $( '#directory-active-fields' ).append( content.directory ); + $( '#single-active-fields' ).append( content.single ); + $( '#wpcontent,.gv-fields' ).removeClass( 'gv-wait' ); + vcfg.showViewConfig(); + } + } ); + + }, + + getPresetFields: function ( template ) { + var vcfg = viewConfiguration; + + $( "#directory-active-fields, #single-active-fields" ).children().remove(); + + var data = { + action: 'gv_get_preset_fields', + template_id: template, + nonce: gvGlobals.nonce + }; + + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + var content = $.parseJSON( response ); + $( '#directory-header-widgets' ).html( content.header ); + $( '#directory-footer-widgets' ).html( content.footer ); + $( '#directory-active-fields' ).append( content.directory ); + $( '#single-active-fields' ).append( content.single ); + $( '#wpcontent,.gv-fields' ).removeClass( 'gv-wait' ); + vcfg.showViewConfig(); + } + } ); - $(e.currentTarget).parents('.gv-fields').fadeOut('normal', function () { - $(this).remove(); - vcfg.toggleDropMessage(); - }); - }, + }, - // Event handler to open dialog with Field Settings - openFieldSettings: function (e) { - e.preventDefault(); + /** + * Hide metaboxes related to view configuration. + * @return {void} + */ + hideViewConfig: function () { + $( "#gravityview_view_config,#gravityview_sort_filter" ).slideUp( 150 ); - var parent, vcfg = viewConfiguration; + $( document ).trigger( 'gv_admin_views_hideViewConfig' ); + }, - if ($(e.currentTarget).is('.gv-fields')) { - parent = $(e.currentTarget); - } else { - parent = $(e.currentTarget).parents('.gv-fields'); - } + showViewConfig: function () { - vcfg.updateVisibilitySettings(e, true); + $( "#gravityview_view_config, #gravityview_sort_filter" ).slideDown( 150 ); - // Toggle checkbox when changing field visibility - $('body').on('change', '.gv-fields input:checkbox', vcfg.updateVisibilitySettings); + viewConfiguration.toggleDropMessage(); + viewConfiguration.init_droppables(); + viewConfiguration.init_tooltips(); - var buttons = [{ - text: gvGlobals.label_close, - click: function () { - $(this).dialog('close'); - } - }]; + $( document ).trigger( 'gv_admin_views_showViewConfig' ); + }, - vcfg.showDialog(parent.find(".gv-dialog-options"), buttons); - }, + // tooltips - // Check the "only visible to..." checkbox if the capability isn't public - updateVisibilitySettings: function (e, first_run) { + init_tooltips: function () { - var vcfg = viewConfiguration; + $( ".gv-add-field" ).tooltip( { + content: function () { - // Is this coming from the window opening? - first_run = first_run || false; + // Is the field picker in single or directory mode? + // var context = ( $(this).parents('#single-view').length ) ? 'single' : 'directory'; + var context = $( this ).attr( 'data-context' ); - // If coming from the openFieldSettings method, we need a different parent - var $parent = $(e.currentTarget).is('.gv-fields') ? $(e.currentTarget) : $(e.currentTarget).parents('.gv-fields'); + switch ( $( this ).attr( 'data-objecttype' ) ) { + case 'field': + // If in Single context, show fields available in single + // If it Directory, same for directory + return $( "#" + context + "-available-fields" ).html(); + case 'widget': + return $( "#directory-available-widgets" ).html(); + } + }, + close: function () { + $( this ).attr( 'data-tooltip', null ); + }, + open: function () { - // Custom Label should show only when "Show Label" checkbox is checked - vcfg.toggleVisibility( $('input:checkbox[name*=show_label]', $parent), $('[name*=custom_label]', $parent), first_run); + $( this ).attr( 'data-tooltip', 'active' ).attr( 'data-tooltip-id', $( this ).attr( 'aria-describedby' ) ); - // Toggle Email fields - vcfg.toggleVisibility($('input:checkbox[name*=emailmailto]', $parent), $('[name*=emailsubject],[name*=emailbody]', $parent), first_run); + }, + closeOnEscape: true, + disabled: true, // Don't open on hover + position: { + my: "center bottom", + at: "center top-12" + }, + tooltipClass: 'top' + } )// add title attribute so the tooltip can continue to work (jquery ui bug?) + .attr( "title", "" ).on( 'mouseout focusout', function ( e ) { + e.stopImmediatePropagation(); + } ).click( function ( e ) { - // Toggle Source URL fields - vcfg.toggleVisibility($('input:checkbox[name*=link_to_source]', $parent), $('[name*=source_link_text]', $parent), first_run); + // add title attribute so the tooltip can continue to work (jquery ui bug?) + $( this ).attr( "title", "" ); + e.preventDefault(); + //e.stopImmediatePropagation(); - $('input:checkbox', $parent).attr('disabled', null); + $( this ).tooltip( "open" ); - // Link to Post should be disabled when Single Entry is checked - if ($('input:checkbox[name*=show_as_link]', $parent).is(':checked')) { - $('input:checkbox[name*=link_to_]', $parent).attr('disabled', true); - } + } ); - // Link to Post should hide when Single Entry is checked - if ($('input:checkbox[name*=link_to_]:checked', $parent).length > 0) { - $('input:checkbox[name*=show_as_link]', $parent).attr('disabled', true); - } + }, + + /** + * Refresh Gravity Forms tooltips (the real help tooltips) + */ + refreshGFtooltips: function () { + $( ".gf_tooltip" ).tooltip( { + show: 500, + hide: 1000, + content: function () { + return $( this ).prop( 'title' ); + } + } ); + }, + + + /** + * Fetch the Available Fields for a given Form ID or Preset Template ID + * @param null|string preset + * @param string templateid The "slug" of the View template + * @return void + */ + getAvailableFields: function ( preset, templateid ) { + + var vcfg = viewConfiguration; + + $( "#directory-available-fields, #single-available-fields, #edit-available-fields" ).find( ".gv-fields" ).remove(); + $( "#directory-active-fields, #single-active-fields, #edit-active-fields" ).find( ".gv-fields" ).remove(); + + vcfg.toggleDropMessage(); + + var data = { + action: 'gv_available_fields', + nonce: gvGlobals.nonce, + context: 'directory' + }; + + if ( preset !== undefined && 'preset' === preset ) { + data.template_id = templateid; + } else { + data.form_id = vcfg.gvSelectForm.val(); + } - // Logged in capability selector should only show when Logged In checkbox is checked - vcfg.toggleVisibility($('input:checkbox[name*=only_loggedin]', $parent), $('[name*=only_loggedin_cap]', $parent), first_run); - }, + // Get the fields for the directory context + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + $( "#directory-available-fields" ).append( response ); + } + } ); + + + // Now get the fields for the single context + data.context = 'single'; + + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + $( "#single-available-fields" ).append( response ); + } + } ); - /** - * Show/Hide Visibility of an input's container list item based on the value of a checkbox - * - * @param {jQuery DOM Object} $checkbox The checkbox to use when determining show/hide. Checked: show; unchecked: hide - * @param {jQuery DOM Object} $toggled The field whose container to show/hide - * @param {boolean} first_run Is this the first run (on load)? If so, show/hide immediately - * @return {void} - */ - toggleVisibility: function ($checkbox, $toggled, first_run) { + // Now get the fields for the edit context + data.context = 'edit'; - var speed = first_run ? 0 : 'fast'; + $.post( ajaxurl, data, function ( response ) { + if ( response ) { + $( "#edit-available-fields" ).append( response ); + } + } ); + + }, + + /** + * When a field is clicked in the field picker, add the field or add all fields + * @param {[type]} e [description] + * @return {void} + */ + startAddField: function ( e ) { + + // If the clicked field div contains the all fields label, + // we're dealing with an all fields click! + if ( $( this ).has( '.field-id-all-fields' ).length ) { + viewConfiguration.addAllFields( $( this ) ); + } else { + // Add a single field. + viewConfiguration.addField( $( this ), e ); + } + }, + + /** + * Add all the fields available at once. Bam! + * @param object clicked jQuery object of the clicked "+ Add All Fields" link + */ + addAllFields: function ( clicked ) { + + clicked.siblings( '.gv-fields' ).each( function () { + $( this ).trigger( 'click' ); + } ); + + // We just added all the fields. No reason to show the tooltip. + $( "a.gv-add-field[data-tooltip='active']" ).tooltip( "close" ); + + }, + + /** + * Drop selected field in the active area + * @param object e jQuery Event object + */ + addField: function ( clicked, e ) { + e.preventDefault(); + + var vcfg = viewConfiguration; + + var newField = clicked.clone().hide(); + var areaId = clicked.parents( '.ui-tooltip' ).attr( 'id' ); + var templateId = $( "#gravityview_directory_template" ).val(); + var tooltipId = clicked.parents( '.ui-tooltip' ).attr( 'id' ); + var addButton = $( 'a.gv-add-field[data-tooltip-id="' + tooltipId + '"]' ); + + var data = { + action: 'gv_field_options', + template: templateId, + area: addButton.attr( 'data-areaid' ), + context: addButton.attr( 'data-context' ), + field_id: newField.attr( 'data-fieldid' ), + field_label: newField.find( '.gv-field-label' ).attr( 'data-original-title' ), + field_type: addButton.attr( 'data-objecttype' ), + input_type: newField.attr( 'data-inputtype' ), + nonce: gvGlobals.nonce, + }; + + // Get the HTML for the Options
+ // - If there are no options, response will NULL + // - If response is false, it means the request was invalid. + $.ajax( { + type: "POST", + url: ajaxurl, + data: data, + async: true, + beforeSend: function () { + // Don't allow saving until this is done. + vcfg.disable_publish(); + }, + complete: function () { + // Enable saving after it's done + vcfg.enable_publish(); + } + } ).done( function ( response ) { - if ($checkbox.is(':checked')) { - $toggled.parents('.gv-setting-container').fadeIn(speed); - } else { - $toggled.parents('.gv-setting-container').fadeOut(speed); - } + // Add in the Options
+ newField.append( response ); + + // If there are field options, show the settings gear. + if ( $( '.gv-dialog-options', newField ).length > 0 ) { + $( '.dashicons-admin-generic', newField ).removeClass( 'hide-if-js' ); + } - }, + // append the new field to the active drop + $( 'a[data-tooltip-id="' + areaId + '"]' ).parents( '.gv-droppable-area' ).find( '.active-drop' ).append( newField ).end().attr( 'data-tooltip-id', '' ); - /** - * When the Publish/Update form is submitted - * - * - Make sure there is a GF Form selected. If doing Start Fresh, calls `createPresetForm()` to create the GF form for the template ID. - * - Serializes the field data so that the request isn't too large - * - * @param {[type]} e [description] - * @return {boolean} True: success; False: stuff didn't work out. - */ - processFormSubmit: function( e ) { - var vcfg = viewConfiguration; - var templateId = $("#gravityview_directory_template").val(); + // Show the new field + newField.fadeIn( 100, function () { + + // Remove existing merge tags, since otherwise GF will add another + $( '.all-merge-tags' ).remove(); + + // Only init merge tags if the View has been saved and the form hasn't been changed. + if ( typeof( + form + ) !== 'undefined' && $( 'body' ).not( '.gv-form-changed' ) ) { + + // Re-init merge tag dropdowns + window.gfMergeTags = new gfMergeTagsObj( form ); + + } + + } ); + + // refresh the little help tooltips + vcfg.refreshGFtooltips(); + + } ).fail( function ( jqXHR ) { + + // Enable publish on error + vcfg.enable_publish(); + + // Something went wrong + alert( gvGlobals.field_loaderror ); + + console.log( jqXHR ); + + } ).always( function () { + + vcfg.toggleDropMessage(); + + } ); + + }, + + /** + * Enable the publish input; enable saving a View + * @return {void} + */ + enable_publish: function () { + // Restore saving after settings are generated + $( '#publishing-action #publish' ).prop( 'disabled', null ).removeClass( 'button-primary-disabled' ); + }, + + /** + * Disable the publish input; prevent saving a View + * @return {void} + */ + disable_publish: function () { + $( '#publishing-action #publish' ).prop( 'disabled', 'disabled' ).addClass( 'button-primary-disabled' ); + }, + + // Sortables and droppables + init_droppables: function () { + + var vcfg = viewConfiguration; + + // widgets + $( '#directory-fields, #single-fields' ).find( ".active-drop-widget" ).sortable( { + placeholder: "fields-placeholder", + items: '> .gv-fields', + distance: 2, + revert: 75, + connectWith: ".active-drop-widget", + receive: function ( event, ui ) { + // Check if field comes from another active area and if so, update name attributes. + + var sender_area = ui.sender.attr( 'data-areaid' ), receiver_area = $( this ).attr( 'data-areaid' ); + + ui.item.find( '[name^="widgets[' + sender_area + ']"]' ).each( function () { + var name = $( this ).attr( 'name' ); + $( this ).attr( 'name', name.replace( sender_area, receiver_area ) ); + } ); + + vcfg.toggleDropMessage(); + + } + } ); + + //fields + $( '#directory-fields, #single-fields, #edit-fields' ).find( ".active-drop-field" ).sortable( { + placeholder: "fields-placeholder", + items: '> .gv-fields', + distance: 2, + revert: 75, + connectWith: ".active-drop-field", + receive: function ( event, ui ) { + // Check if field comes from another active area and if so, update name attributes. + if ( ui.item.find( ".gv-dialog-options" ).length > 0 ) { + + var sender_area = ui.sender.attr( 'data-areaid' ), receiver_area = $( this ).attr( 'data-areaid' ); + + ui.item.find( '[name^="fields[' + sender_area + ']"]' ).each( function () { + var name = $( this ).attr( 'name' ); + $( this ).attr( 'name', name.replace( sender_area, receiver_area ) ); + } ); + + } + + vcfg.toggleDropMessage(); + + } + } ); + }, + + toggleDropMessage: function () { + + $( '.active-drop' ).each( function () { + if ( $( this ).find( ".gv-fields" ).length > 0 ) { + $( this ).find( ".drop-message" ).hide(); + } else { + $( this ).find( ".drop-message" ).fadeIn( 100 ); + } + } ); + + }, + + // Event handler to remove Fields from active areas + removeField: function ( e ) { + + e.preventDefault(); + + var vcfg = viewConfiguration; + var area = $( e.currentTarget ).parents( ".active-drop" ); + + // Nice little easter egg: when holding down control, get rid of all fields in the zone at once. + if ( e.altKey && $( area ).find( '.gv-fields' ).length > 1 ) { + + // Show a confirm dialog + var remove_all = window.confirm( gvGlobals.remove_all_fields ); + + // If yes, remove all, otherwise don't do anything + if ( remove_all ) { + $( area ).find( '.gv-fields' ).remove(); + vcfg.toggleDropMessage(); + } + + return; + } + + $( e.currentTarget ).parents( '.gv-fields' ).fadeOut( 'normal', function () { + $( this ).remove(); + vcfg.toggleDropMessage(); + } ); + + }, + + // Event handler to open dialog with Field Settings + openFieldSettings: function ( e ) { + e.preventDefault(); + + var parent, vcfg = viewConfiguration; + + if ( $( e.currentTarget ).is( '.gv-fields' ) ) { + parent = $( e.currentTarget ); + } else { + parent = $( e.currentTarget ).parents( '.gv-fields' ); + } + + vcfg.updateVisibilitySettings( e, true ); + + // Toggle checkbox when changing field visibility + $( 'body' ).on( 'change', '.gv-fields input:checkbox', vcfg.updateVisibilitySettings ); + + var buttons = [ + { + text: gvGlobals.label_close, + click: function () { + $( this ).dialog( 'close' ); + } + } + ]; + + vcfg.showDialog( parent.find( ".gv-dialog-options" ), buttons ); + + }, + + // Check the "only visible to..." checkbox if the capability isn't public + updateVisibilitySettings: function ( e, first_run ) { + + var vcfg = viewConfiguration; + + // Is this coming from the window opening? + first_run = first_run || false; + + // If coming from the openFieldSettings method, we need a different parent + var $parent = $( e.currentTarget ).is( '.gv-fields' ) ? $( e.currentTarget ) : $( e.currentTarget ).parents( '.gv-fields' ); + + // Custom Label should show only when "Show Label" checkbox is checked + vcfg.toggleVisibility( $( 'input:checkbox[name*=show_label]', $parent ), $( '[name*=custom_label]', $parent ), first_run ); + + // Toggle Email fields + vcfg.toggleVisibility( $( 'input:checkbox[name*=emailmailto]', $parent ), $( '[name*=emailsubject],[name*=emailbody]', $parent ), first_run ); + + // Toggle Source URL fields + vcfg.toggleVisibility( $( 'input:checkbox[name*=link_to_source]', $parent ), $( '[name*=source_link_text]', $parent ), first_run ); + + + $( 'input:checkbox', $parent ).attr( 'disabled', null ); + + // Link to Post should be disabled when Single Entry is checked + if ( $( 'input:checkbox[name*=show_as_link]', $parent ).is( ':checked' ) ) { + $( 'input:checkbox[name*=link_to_]', $parent ).attr( 'disabled', true ); + } + + // Link to Post should hide when Single Entry is checked + if ( $( 'input:checkbox[name*=link_to_]:checked', $parent ).length > 0 ) { + $( 'input:checkbox[name*=show_as_link]', $parent ).attr( 'disabled', true ); + } + + // Logged in capability selector should only show when Logged In checkbox is checked + vcfg.toggleVisibility( $( 'input:checkbox[name*=only_loggedin]', $parent ), $( '[name*=only_loggedin_cap]', $parent ), first_run ); + + }, + + /** + * Show/Hide Visibility of an input's container list item based on the value of a checkbox + * + * @param {jQuery DOM Object} $checkbox The checkbox to use when determining show/hide. Checked: show; unchecked: hide + * @param {jQuery DOM Object} $toggled The field whose container to show/hide + * @param {boolean} first_run Is this the first run (on load)? If so, show/hide immediately + * @return {void} + */ + toggleVisibility: function ( $checkbox, $toggled, first_run ) { + + var speed = first_run ? 0 : 'fast'; + + if ( $checkbox.is( ':checked' ) ) { + $toggled.parents( '.gv-setting-container' ).fadeIn( speed ); + } else { + $toggled.parents( '.gv-setting-container' ).fadeOut( speed ); + } + + }, + + /** + * When the Publish/Update form is submitted + * + * - Make sure there is a GF Form selected. If doing Start Fresh, calls `createPresetForm()` to create the GF form for the template ID. + * - Serializes the field data so that the request isn't too large + * + * @param {[type]} e [description] + * @return {boolean} True: success; False: stuff didn't work out. + */ + processFormSubmit: function ( e ) { + var vcfg = viewConfiguration; + var templateId = $( "#gravityview_directory_template" ).val(); // Create the form if we're starting fresh. // On success, this also sets the vcfg.startFreshStatus to false. - if( vcfg.startFreshStatus ) { + if ( vcfg.startFreshStatus ) { vcfg.createPresetForm( e, templateId ); - return false; + return false; } - // If the View isn't a Start Fresh view, we just return true - // so that the click on the Publish button can process. - if ( !vcfg.startFreshStatus || templateId === '' ) { + // If the View isn't a Start Fresh view, we just return true + // so that the click on the Publish button can process. + if ( !vcfg.startFreshStatus || templateId === '' ) { - // Serialize the inputs so that `max_input_vars` - return vcfg.serializeForm( e ); + // Serialize the inputs so that `max_input_vars` + return vcfg.serializeForm( e ); - } + } - return false; + return false; - }, + }, - /** - * Serialize all GV field data and submit it all as one field value - * - * To fix issues where there are too many array items, causing PHP max_input_vars threshold to be met - * - * @param {[type]} e [description] - * @return {[type]} [description] - */ - serializeForm: function( e ) { + /** + * Serialize all GV field data and submit it all as one field value + * + * To fix issues where there are too many array items, causing PHP max_input_vars threshold to be met + * + * @param {[type]} e [description] + * @return {[type]} [description] + */ + serializeForm: function ( e ) { - if( $( e.target ).data('gv-valid') ) { - return true; - } + if ( $( e.target ).data( 'gv-valid' ) ) { + return true; + } - e.stopImmediatePropagation(); + e.stopImmediatePropagation(); - $( e.target ).data('gv-valid', false ); + $( e.target ).data( 'gv-valid', false ); - /** - * Add slashes to date fields so stripslashes doesn't strip all of them - * {@link http://phpjs.org/functions/addslashes/} - */ - $('#post input[name*=date_display]').val(function() { - return $(this).val().replace(/[\\"']/g, '\\$&').replace(/\u0000/g, '\\0'); - }); + /** + * Add slashes to date fields so stripslashes doesn't strip all of them + * {@link http://phpjs.org/functions/addslashes/} + */ + $( '#post input[name*=date_display]' ).val( function () { + return $( this ).val().replace( /[\\"']/g, '\\$&' ).replace( /\u0000/g, '\\0' ); + } ); - // Get all the fields where the `name` attribute start with `fields` - var $fields = $('#post :input[name^=fields]'); + // Get all the fields where the `name` attribute start with `fields` + var $fields = $( '#post :input[name^=fields]' ); - // Serialize the data - var serialized_data = $fields.serialize(); + // Serialize the data + var serialized_data = $fields.serialize(); - // Remove the fields from the $_POSTed data - $fields.remove(); + // Remove the fields from the $_POSTed data + $fields.remove(); - // Add a field to the form that contains all the data. - $('#post').append( $('', { - 'name' : 'fields', - 'value': serialized_data, - 'type': 'hidden' - })); + // Add a field to the form that contains all the data. + $( '#post' ).append( $( '', { + 'name': 'fields', + 'value': serialized_data, + 'type': 'hidden' + } ) ); - // make sure the "slow" browsers did append all the serialized data to the form - setTimeout( function() { + // make sure the "slow" browsers did append all the serialized data to the form + setTimeout( function () { - $( e.target ).data( 'gv-valid', true ).submit(); + $( e.target ).data( 'gv-valid', true ).submit(); - }, 101 ); + }, 101 ); - return false; + return false; - }, + }, - /** - * Create a Gravity Forms form using a preset defined by the View Template selected during Start Fresh - * - * This is done just before the Publish click is registered. - * - * @see GravityView_Admin_Views::create_preset_form() - * @return boolean|void - */ - createPresetForm: function ( e, templateId ) { - var vcfg = viewConfiguration; + /** + * Create a Gravity Forms form using a preset defined by the View Template selected during Start Fresh + * + * This is done just before the Publish click is registered. + * + * @see GravityView_Admin_Views::create_preset_form() + * @return boolean|void + */ + createPresetForm: function ( e, templateId ) { + var vcfg = viewConfiguration; - e.stopPropagation(); + e.stopPropagation(); - // Try to create preset form in Gravity Forms. On success assign it to post before saving - var data = { - action: 'gv_set_preset_form', - template_id: templateId, - nonce: gvGlobals.nonce - }; + // Try to create preset form in Gravity Forms. On success assign it to post before saving + var data = { + action: 'gv_set_preset_form', + template_id: templateId, + nonce: gvGlobals.nonce + }; - $.ajax({ - type: "POST", - url: ajaxurl, - data: data, - async: false, // Allows returning the value. Important! + $.ajax( { + type: "POST", + url: ajaxurl, + data: data, + async: false, // Allows returning the value. Important! - success: function( response ) { + success: function ( response ) { - if (response !== 'false' && response !== '0') { + if ( response !== 'false' && response !== '0' ) { - vcfg.startFreshStatus = false; + vcfg.startFreshStatus = false; - //set the form id - vcfg.gvSelectForm - .find("option:selected").removeAttr("selected").end() - .append(response); + //set the form id + vcfg.gvSelectForm.find( "option:selected" ).removeAttr( "selected" ).end().append( response ); - // Continue submitting the form, since we preventDefault() above - $(e.target).submit(); + // Continue submitting the form, since we preventDefault() above + $( e.target ).submit(); - } else { + } else { - $("#post").before('

' + gvGlobals.label_publisherror + '

'); + $( "#post" ).before( '

' + gvGlobals.label_publisherror + '

' ); - } + } - } - }); + } + } ); - return false; - } + return false; + } - }; // end viewConfiguration object + }; // end viewConfiguration object - /** - * Manages the General View Settings - * - * @since 1.7 - * - * @type {{templateId: null, init: Function, updateSettingsDisplay: Function, toggleSetting: Function}} - */ - viewGeneralSettings = { + /** + * Manages the General View Settings + * + * @since 1.7 + * + * @type {{templateId: null, init: Function, updateSettingsDisplay: Function, toggleSetting: Function}} + */ + viewGeneralSettings = { - /** - * Holds the current view type id (template) - */ - templateId: null, + /** + * Holds the current view type id (template) + */ + templateId: null, - /** - * Init method - */ - init: function() { + /** + * Init method + */ + init: function () { - // Conditional display general settings & trigger display settings if template changes - $('#gravityview_directory_template').change( viewGeneralSettings.updateSettingsDisplay ).trigger('change'); + // Conditional display general settings & trigger display settings if template changes + $( '#gravityview_directory_template' ).change( viewGeneralSettings.updateSettingsDisplay ).trigger( 'change' ); - }, + }, - /** - * Callback method to show/hide settings if template changes and settings have a specific template attribute - */ - updateSettingsDisplay: function() { + /** + * Callback method to show/hide settings if template changes and settings have a specific template attribute + */ + updateSettingsDisplay: function () { - viewGeneralSettings.templateId = $(this).val(); + viewGeneralSettings.templateId = $( this ).val(); - $('tr[data-show-if]').each( viewGeneralSettings.toggleSetting ); + $( 'tr[data-show-if]' ).each( viewGeneralSettings.toggleSetting ); - }, + }, - /** - * Show/Hides setting based on the template - */ - toggleSetting: function() { - var row = $(this), - templates = row.attr( 'data-show-if' ); + /** + * Show/Hides setting based on the template + */ + toggleSetting: function () { + var row = $( this ), templates = row.attr( 'data-show-if' ); - // if setting field attribute is empty, leave.. - if( templates.length < 1 ) { - return; - } + // if setting field attribute is empty, leave.. + if ( templates.length < 1 ) { + return; + } - if( viewGeneralSettings.templateId.length > 0 && templates.indexOf( viewGeneralSettings.templateId ) > -1 ) { - row.show(); - } else { - row.find('select, input').val('').prop('checked', false ); - row.hide(); - } + if ( viewGeneralSettings.templateId.length > 0 && templates.indexOf( viewGeneralSettings.templateId ) > -1 ) { + row.show(); + } else { + row.find( 'select, input' ).val( '' ).prop( 'checked', false ); + row.hide(); + } - } + } - }; // end viewGeneralSettings object + }; // end viewGeneralSettings object - - jQuery(document).ready( function( $ ) { + jQuery( document ).ready( function ( $ ) { // title placeholder - $('#title-prompt-text').text( gvGlobals.label_viewname ); + $( '#title-prompt-text' ).text( gvGlobals.label_viewname ); - // start the general view settings magic - viewGeneralSettings.init(); + // start the general view settings magic + viewGeneralSettings.init(); // start the View Configuration magic viewConfiguration.init(); //datepicker - $('.gv-datepicker').datepicker({ + $( '.gv-datepicker' ).datepicker( { dateFormat: "yy-mm-dd", constrainInput: false // Allow strtotime() configurations - }); + } ); // Save the state on a per-post basis - var cookie_key = 'gv-active-tab-'+$('#post_ID').val(); + var cookie_key = 'gv-active-tab-' + $( '#post_ID' ).val(); // The default tab is the first (0) - var activate_tab = $.cookie(cookie_key); - if(activate_tab === 'undefined') { activate_tab = 0; } + var activate_tab = $.cookie( cookie_key ); + if ( activate_tab === 'undefined' ) { + activate_tab = 0; + } // View Configuration - Tabs (persisten after refresh) - $("#gv-view-configuration-tabs").tabs({ + $( "#gv-view-configuration-tabs" ).tabs( { active: activate_tab, - activate: function( event, ui ) { + activate: function ( event, ui ) { // When the tab is activated, set a new cookie - $.cookie(cookie_key, ui.newTab.index(), { path: gvGlobals.cookiepath }); + $.cookie( cookie_key, ui.newTab.index(), { path: gvGlobals.cookiepath } ); } - }); + } ); // Make zebra table rows - $('#gravityview_template_settings .form-table tr:even, #gravityview_sort_filter .form-table tr:even').addClass('alternate'); + $( '#gravityview_template_settings .form-table tr:even, #gravityview_sort_filter .form-table tr:even' ).addClass( 'alternate' ); // Force the sort metabox to be directly under the view configuration. // Damn 3rd party metaboxes! - $('#gravityview_sort_filter').insertAfter($('#gravityview_view_config')); + $( '#gravityview_sort_filter' ).insertAfter( $( '#gravityview_view_config' ) ); - }); + } ); }(jQuery)); diff --git a/assets/js/admin-widgets.js b/assets/js/admin-widgets.js index 8debb29a5f..89e9ed3c65 100644 --- a/assets/js/admin-widgets.js +++ b/assets/js/admin-widgets.js @@ -3,107 +3,105 @@ * * @package GravityView */ -jQuery( document).ready(function( $ ){ +jQuery( document).ready(function( $ ) { - gvWidgets = { + gvWidgets = { - /** - * Register the jQuery triggers - */ - init: function() { + /** + * Register the jQuery triggers + */ + init: function () { - $( document ) - .on( 'widget-added widget-updated widget-toggled', gvWidgets.modified ) - .on('change refresh', '#widgets-right .gv-recent-entries-select-view', gvWidgets.refreshMergeTags ); + $( document ).on( 'widget-added widget-updated widget-toggled', gvWidgets.modified ).on( 'change refresh', '#widgets-right .gv-recent-entries-select-view', gvWidgets.refreshMergeTags ); - $(document.body).on('click.widgets-toggle', gvWidgets.toggle ); + $( document.body ).on( 'click.widgets-toggle', gvWidgets.toggle ); - }, + }, - /** - * When a widget is toggled, trigger `widget-toggled` on it - */ - toggle: function( e ) { - var target = $(e.target); - if ( target.parents('.widget-top').length && ! target.parents('#available-widgets').length ) { + /** + * When a widget is toggled, trigger `widget-toggled` on it + */ + toggle: function ( e ) { + var target = $( e.target ); + if ( target.parents( '.widget-top' ).length && !target.parents( '#available-widgets' ).length ) { - var widget = target.closest('div.widget'); + var widget = target.closest( 'div.widget' ); - // The slideDown function is set to "fast" which is 100ms. - // This will only work after the slideDown is completed. - window.setTimeout( function() { - widget.trigger('widget-toggled', widget ); - }, 110 ); - } - }, + // The slideDown function is set to "fast" which is 100ms. + // This will only work after the slideDown is completed. + window.setTimeout( function () { + widget.trigger( 'widget-toggled', widget ); + }, 110 ); + } + }, - /** - * When a widget is added or updated, trigger merge tags loading - */ - modified: function( e, widget ) { + /** + * When a widget is added or updated, trigger merge tags loading + */ + modified: function ( e, widget ) { - // Recent Entries widget - if( $(widget).has('.gv-recent-entries-select-view') ) { - $(widget).find('.gv-recent-entries-select-view').trigger('refresh'); - } - }, + // Recent Entries widget + if ( $( widget ).has( '.gv-recent-entries-select-view' ) ) { + $( widget ).find( '.gv-recent-entries-select-view' ).trigger( 'refresh' ); + } + }, - /** - * Refresh the merge tags for the widget - * @param e - */ - refreshMergeTags: function( e ) { - var view_id = $(this).val(); + /** + * Refresh the merge tags for the widget + * @param e + */ + refreshMergeTags: function ( e ) { + var view_id = $( this ).val(); - // No View defined - if( view_id.length === 0 ) { + // No View defined + if ( view_id.length === 0 ) { - // No View? No merge tags make sense. - $('.all-merge-tags').remove(); + // No View? No merge tags make sense. + $( '.all-merge-tags' ).remove(); - return; - } + return; + } - var data = { - action: 'gv_get_view_merge_tag_data', - view_id: view_id, - nonce: GVWidgets.nonce - }; + var data = { + action: 'gv_get_view_merge_tag_data', + view_id: view_id, + nonce: GVWidgets.nonce + }; - /** - * @see GravityView_Recent_Entries_Widget::ajax_get_view_merge_tag_data() in widgets.php - */ - $.post(ajaxurl, data, function (response) { - if (response) { + /** + * @see GravityView_Recent_Entries_Widget::ajax_get_view_merge_tag_data() in widgets.php + */ + $.post( ajaxurl, data, function ( response ) { + if ( response ) { - var parsed = $.parseJSON( response ); + var parsed = $.parseJSON( response ); - // Set the merge tags for this form - gf_vars.mergeTags = parsed.mergeTags; + // Set the merge tags for this form + gf_vars.mergeTags = parsed.mergeTags; - // Update the form with the new settings to be passed to gfMergeTagsObj() - window.form = new Form(); - window.form.id = parsed.form.id; - window.form.fields = parsed.form.fields; - window.form.title = parsed.form.title; + // Update the form with the new settings to be passed to gfMergeTagsObj() + window.form = new Form(); + window.form.id = parsed.form.id; + window.form.fields = parsed.form.fields; + window.form.title = parsed.form.title; - // Remove existing merge tags, since otherwise GF will add another - $('.all-merge-tags').remove(); + // Remove existing merge tags, since otherwise GF will add another + $( '.all-merge-tags' ).remove(); - // Only init merge tags if the View has been saved and the form hasn't been changed. - if ( typeof( form ) !== 'undefined' && $('body').not('.gv-form-changed')) { + // Only init merge tags if the View has been saved and the form hasn't been changed. + if ( typeof( form ) !== 'undefined' && $( 'body' ).not( '.gv-form-changed' ) ) { - // Re-init merge tag dropdowns - window.gfMergeTags = new gfMergeTagsObj(form); + // Re-init merge tag dropdowns + window.gfMergeTags = new gfMergeTagsObj( form ); - } + } - } - }); - } // End refreshMergeTags + } + } ); + } // End refreshMergeTags - }; // End gvWidgets + }; // End gvWidgets - gvWidgets.init(); + gvWidgets.init(); }); \ No newline at end of file diff --git a/assets/js/fe-views.js b/assets/js/fe-views.js index 565206ef84..077fc32d39 100644 --- a/assets/js/fe-views.js +++ b/assets/js/fe-views.js @@ -17,14 +17,14 @@ jQuery(document).ready( function( $ ) { var gvFront = { - init: function() { + init: function () { this.cookies(); this.datepicker(); - $('.gv-widget-search').on('keypress change', this.form_changed); + $( '.gv-widget-search' ).on( 'keypress change', this.form_changed ); - $('.gv-search-clear').on('click', this.clear_search ); + $( '.gv-search-clear' ).on( 'click', this.clear_search ); }, @@ -35,56 +35,58 @@ jQuery(document).ready( function( $ ) { * * @param e jQuery Event */ - form_changed: function( e ) { + form_changed: function ( e ) { // Only trigger change on characters, not Shift or Command/Alt - if( e.type === 'keypress' && ( e.which === 0 || e.ctrlKey || e.metaKey || e.altKey ) ) { + if ( e.type === 'keypress' && ( + e.which === 0 || e.ctrlKey || e.metaKey || e.altKey + ) ) { return; } - $(this).attr('data-form-changed', 1 ); + $( this ).attr( 'data-form-changed', 1 ); - $('.gv-search-clear', $(this) ).text( gvGlobals.reset ).fadeIn(100); + $( '.gv-search-clear', $( this ) ).text( gvGlobals.reset ).fadeIn( 100 ); }, /** * - If the form has been changed, the Clear button becomes Reset and reverts the state to form on load * - If the form has not been changed: - * - If there is no existing search result, hide the button - * - If there is a search result, refresh page without $_GET parameters + * - If there is no existing search result, hide the button + * - If there is a search result, refresh page without $_GET parameters * * @param e jQuery Event * @returns {boolean} */ - clear_search: function( e ) { + clear_search: function ( e ) { - var $form = $( this ).parents('form'); - var changed = ( $form.attr('data-form-changed').length > 0 ); + var $form = $( this ).parents( 'form' ); + var changed = ( + $form.attr( 'data-form-changed' ).length > 0 + ); // Handle an existing search - if( $form.hasClass('gv-is-search') ) { + if ( $form.hasClass( 'gv-is-search' ) ) { // If there are no changes, submit the form - if( !changed ) { + if ( !changed ) { return true; } } // If the form has been changed, just reset the data - if( changed ) { + if ( changed ) { e.preventDefault(); $form.trigger( 'reset' ); - $form - .attr('data-form-changed', null) // Clear the changed status - .find('.gv-search-clear') - .text( gvGlobals.clear ); // Update the text of the button + $form.attr( 'data-form-changed', null ) // Clear the changed status + .find( '.gv-search-clear' ).text( gvGlobals.clear ); // Update the text of the button // If there's now no form field text, hide the reset button - if( false === $form.hasClass('gv-is-search') ) { - $('.gv-search-clear', $form ).hide(100); + if ( false === $form.hasClass( 'gv-is-search' ) ) { + $( '.gv-search-clear', $form ).hide( 100 ); } return false; @@ -96,75 +98,67 @@ jQuery(document).ready( function( $ ) { /** * Generate the datepicker for GV date fields */ - datepicker: function() { + datepicker: function () { // If datepicker is loaded - if( jQuery.fn.datepicker ) { - - $('.gv-datepicker').each( - function (){ - var element = jQuery(this); - var image = ""; - var showOn = "focus"; - - if(element.hasClass("datepicker_with_icon")){ - showOn = "both"; - image = jQuery('#gforms_calendar_icon_' + this.id).val(); - } - - gvGlobals.datepicker.showOn = showOn; - gvGlobals.datepicker.buttonImage = image; - gvGlobals.datepicker.buttonImageOnly = true; - - // Process custom date formats - if( !gvGlobals.datepicker.dateFormat ) { - - var format = "mm/dd/yy"; - - if(element.hasClass("mdy")) - format = "mm/dd/yy"; - else if(element.hasClass("dmy")) - format = "dd/mm/yy"; - else if(element.hasClass("dmy_dash")) - format = "dd-mm-yy"; - else if(element.hasClass("dmy_dot")) - format = "dd.mm.yy"; - else if(element.hasClass("ymd_slash")) - format = "yy/mm/dd"; - else if(element.hasClass("ymd_dash")) - format = "yy-mm-dd"; - else if(element.hasClass("ymd_dot")) - format = "yy.mm.dd"; - - gvGlobals.datepicker.dateFormat = format; - } - - element.datepicker( gvGlobals.datepicker ); - } - ); + if ( jQuery.fn.datepicker ) { + + $( '.gv-datepicker' ).each( function () { + var element = jQuery( this ); + var image = ""; + var showOn = "focus"; + + if ( element.hasClass( "datepicker_with_icon" ) ) { + showOn = "both"; + image = jQuery( '#gforms_calendar_icon_' + this.id ).val(); + } + + gvGlobals.datepicker.showOn = showOn; + gvGlobals.datepicker.buttonImage = image; + gvGlobals.datepicker.buttonImageOnly = true; + + // Process custom date formats + if ( !gvGlobals.datepicker.dateFormat ) { + + var format = "mm/dd/yy"; + + if ( element.hasClass( "mdy" ) ) + format = "mm/dd/yy"; else if ( element.hasClass( "dmy" ) ) + format = "dd/mm/yy"; else if ( element.hasClass( "dmy_dash" ) ) + format = "dd-mm-yy"; else if ( element.hasClass( "dmy_dot" ) ) + format = "dd.mm.yy"; else if ( element.hasClass( "ymd_slash" ) ) + format = "yy/mm/dd"; else if ( element.hasClass( "ymd_dash" ) ) + format = "yy-mm-dd"; else if ( element.hasClass( "ymd_dot" ) ) + format = "yy.mm.dd"; + + gvGlobals.datepicker.dateFormat = format; + } + + element.datepicker( gvGlobals.datepicker ); + } ); } }, - cookies: function() { - if( $("#gravityview_back_link").length > 0 ) { + cookies: function () { + if ( $( "#gravityview_back_link" ).length > 0 ) { gvFront.backGetCookie(); - } else if( $(".gravityview-view-id").length > 0 ) { - $(".gravityview-view-id").each( gvFront.backSetCookie ); + } else if ( $( ".gravityview-view-id" ).length > 0 ) { + $( ".gravityview-view-id" ).each( gvFront.backSetCookie ); } }, // Set the back link cookie - backSetCookie: function() { - var viewId = $(this).val(); - $.cookie('gravityview_back_link_'+ viewId, window.location.href, { path: gvGlobals.cookiepath } ); + backSetCookie: function () { + var viewId = $( this ).val(); + $.cookie( 'gravityview_back_link_' + viewId, window.location.href, { path: gvGlobals.cookiepath } ); }, // Get the back link cookie and replace the back link href - backGetCookie: function() { - var viewId = $("#gravityview_back_link").attr('data-viewid'); - if( $.cookie('gravityview_back_link_'+ viewId ) !== null ) { - $("#gravityview_back_link").attr('href', $.cookie('gravityview_back_link_'+ viewId) ); + backGetCookie: function () { + var viewId = $( "#gravityview_back_link" ).attr( 'data-viewid' ); + if ( $.cookie( 'gravityview_back_link_' + viewId ) !== null ) { + $( "#gravityview_back_link" ).attr( 'href', $.cookie( 'gravityview_back_link_' + viewId ) ); } }, From 966356d8470e7a68498233fb599401229cf3410c Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 11 Mar 2015 12:57:22 -0600 Subject: [PATCH 04/32] Docblocks --- includes/class-admin-approve-entries.php | 11 ++++++++++- includes/class-admin-views.php | 4 +++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/includes/class-admin-approve-entries.php b/includes/class-admin-approve-entries.php index 46e617df4c..7ba31dd93f 100644 --- a/includes/class-admin-approve-entries.php +++ b/includes/class-admin-approve-entries.php @@ -49,6 +49,13 @@ function __construct() { } + /** + * Add the GravityView Fields group tooltip + * + * @param $tooltips + * + * @return array Tooltips array with GravityView fields tooltip + */ function tooltips( $tooltips ) { $tooltips['form_gravityview_fields'] = array( @@ -65,7 +72,7 @@ function tooltips( $tooltips ) { * * @access public * @param mixed $field_groups - * @return void + * @return array Array of fields */ function add_field_buttons( $field_groups ) { @@ -98,6 +105,7 @@ function add_field_buttons( $field_groups ) { /** * At edit form page, set the field Approve defaults * + * @todo Convert to a partial include file * @access public * @return void */ @@ -397,6 +405,7 @@ static public function add_entry_approved_hidden_input( $form_id, $field_id, $v if( empty( $entry['id'] ) ) { return; } + if( gform_get_meta( $entry['id'], 'is_approved' ) ) { echo ''; } diff --git a/includes/class-admin-views.php b/includes/class-admin-views.php index b02f431fbf..73d1348933 100644 --- a/includes/class-admin-views.php +++ b/includes/class-admin-views.php @@ -130,7 +130,7 @@ static function gform_toolbar_menu( $menu_items = array(), $id = NULL ) { * @param array $array Existing field types to add to a blacklist * @param string|null $context Context for the blacklist. Default: NULL. * @access public - * @return void + * @return array Default blacklist fields merged with existing blacklist fields */ function default_field_blacklist( $array = array(), $context = NULL ) { @@ -206,6 +206,8 @@ public function tooltips( $tooltips = array() ) { * * @param null $column_name * @param $post_id + * + * @return void */ static public function add_connected_form_column_content( $column_name = NULL, $post_id ) { From eab8dec86418dab06de679d8cc578cbc3f107b20 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 11 Mar 2015 13:55:19 -0600 Subject: [PATCH 05/32] Add phpStorm settings @luistinygod please let me know if this causes any problems. Back up your .idea folder before you sync, just in case. --- .gitignore | 51 +++++++++- .idea/codeStyleSettings.xml | 99 +++++++++++++++++++ .../inspectionProfiles/profiles_settings.xml | 7 ++ .idea/jsLibraryMappings.xml | 6 ++ .idea/modules.xml | 9 ++ .idea/php.xml | 14 +++ .idea/scopes/scope_settings.xml | 5 + .idea/vcs.xml | 7 ++ .idea/watcherTasks.xml | 4 + .idea/webResources.xml | 14 +++ 10 files changed, 213 insertions(+), 3 deletions(-) create mode 100644 .idea/codeStyleSettings.xml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/php.xml create mode 100644 .idea/scopes/scope_settings.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/watcherTasks.xml create mode 100644 .idea/webResources.xml diff --git a/.gitignore b/.gitignore index 4d03b95541..a7ab34b829 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,62 @@ +# Help from https://www.gitignore.io -*.sublime-project +### Mac ### +.DS_Store +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +### SublimeText ### +*.sublime-project *.sublime-workspace +### Composer ### composer.lock +### Libraries ### vendor/.git vendor/*/.git +### Grunt ### node_modules/* + +### CodeKit #### .sass-cache *.codekit + +### Transifex #### .tx -.idea languages/gravityview-pt.mo -languages/gravityview-pt.po \ No newline at end of file +languages/gravityview-pt.po + +### PhpStorm ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm + +*.iml + +# User-specific stuff: +.idea/workspace.xml +.idea/tasks.xml +.idea/dictionaries + +# Sensitive or high-churn files: +.idea/dataSources.ids +.idea/dataSources.xml +.idea/sqlDataSources.xml +.idea/dynamic.xml +.idea/uiDesigner.xml + +## File-based project format: +*.ipr +*.iws + +## Plugin-specific files: + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml new file mode 100644 index 0000000000..6e067c0ce1 --- /dev/null +++ b/.idea/codeStyleSettings.xml @@ -0,0 +1,99 @@ + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000000..3b312839bf --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 0000000000..78f508e060 --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000..2be4c1fed5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000000..9cc11cc486 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml new file mode 100644 index 0000000000..922003b843 --- /dev/null +++ b/.idea/scopes/scope_settings.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000..c80f2198b5 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml new file mode 100644 index 0000000000..fb0d65a4bb --- /dev/null +++ b/.idea/watcherTasks.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/webResources.xml b/.idea/webResources.xml new file mode 100644 index 0000000000..717d9d6656 --- /dev/null +++ b/.idea/webResources.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file From 7c454ef65569b9293e7f5a13d5102cd5739731a7 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 13:21:47 -0600 Subject: [PATCH 06/32] Make sure Singleton only has one instance Make constructor private, force everything through getInstance() --- includes/class-data.php | 9 ++++++--- includes/class-frontend-views.php | 14 ++++++-------- includes/class-oembed.php | 10 ++++++---- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/includes/class-data.php b/includes/class-data.php index b7a107ed64..0bb2c6534e 100644 --- a/includes/class-data.php +++ b/includes/class-data.php @@ -11,7 +11,11 @@ class GravityView_View_Data { protected $views = array(); - function __construct( $passed_post = NULL ) { + /** + * + * @param null $passed_post + */ + private function __construct( $passed_post = NULL ) { if( !empty( $passed_post ) ) { @@ -22,7 +26,6 @@ function __construct( $passed_post = NULL ) { } } - self::$instance = &$this; } /** @@ -104,7 +107,7 @@ static public function maybe_get_view_id( $passed_post ) { return ( sizeof( $ids ) === 1 ) ? $ids[0] : $ids; } - static function getInstance( $passed_post = NULL ) { + public static function getInstance( $passed_post = NULL ) { if( empty( self::$instance ) ) { self::$instance = new GravityView_View_Data( $passed_post ); diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index 90e3112fe0..d917f4801a 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -67,7 +67,7 @@ class GravityView_frontend { /** * Class constructor */ - function __construct() { + private function __construct() {} add_action( 'wp', array( $this, 'parse_content'), 11 ); @@ -86,15 +86,13 @@ function __construct() { add_action('add_admin_bar_menus', array( $this, 'admin_bar_remove_links'), 80 ); add_action('admin_bar_menu', array( $this, 'admin_bar_add_links'), 85 ); - - self::$instance = &$this; } /** * Get the one true instantiated self * @return GravityView_frontend */ - static function getInstance() { + public static function getInstance() { if( empty( self::$instance ) ) { self::$instance = new GravityView_frontend; @@ -225,7 +223,7 @@ function parse_content( $wp = array() ) { if( is_admin() && !$doing_ajax ) { return; } - $this->setGvOutputData( new GravityView_View_Data( $post ) ); + $this->setGvOutputData( GravityView_View_Data::getInstance( $post ) ); $this->setSingleEntry( self::is_single_entry() ); $this->setIsGravityviewPostType( get_post_type( $post ) === 'gravityview' ); @@ -1183,7 +1181,7 @@ public function is_field_sortable( $field_id = '' , $form ) { } -new GravityView_frontend; +GravityView_frontend::getInstance(); /** @@ -1198,8 +1196,8 @@ function get_gravityview( $view_id = '', $atts = array() ) { if( !empty( $view_id ) ) { $atts['id'] = $view_id; $args = wp_parse_args( $atts, GravityView_View_Data::get_default_args() ); - $GravityView_frontend = new GravityView_frontend; - $GravityView_frontend->setGvOutputData( new GravityView_View_Data( $view_id ) ); + $GravityView_frontend = GravityView_frontend::getInstance(); + $GravityView_frontend->setGvOutputData( GravityView_View_Data::getInstance( $view_id ) ); return $GravityView_frontend->render_view( $args ); } return ''; diff --git a/includes/class-oembed.php b/includes/class-oembed.php index 0e3c4bc4b2..429d538941 100644 --- a/includes/class-oembed.php +++ b/includes/class-oembed.php @@ -28,11 +28,11 @@ class GravityView_oEmbed { static $instance = NULL; - function __construct() { + private function __construct() {} - add_action( 'init', array( $this, 'register_handler' ) ); + private function initialize() { - self::$instance = &$this; + add_action( 'init', array( $this, 'register_handler' ) ); } @@ -44,6 +44,8 @@ static function getInstance() { if( empty( self::$instance ) ) { self::$instance = new self; + + self::$instance->initialize(); } return self::$instance; @@ -342,4 +344,4 @@ private function render_frontend( $matches, $attr, $url, $rawattr ) { } -new GravityView_oEmbed; \ No newline at end of file +GravityView_oEmbed::getInstance(); \ No newline at end of file From 19454296a8b2860d39930f8c4aff96414ed728c8 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 13:22:36 -0600 Subject: [PATCH 07/32] Move hooks to separate method --- includes/class-admin-approve-entries.php | 7 ++-- includes/class-data.php | 41 ++++++++++++------------ includes/class-frontend-views.php | 4 ++- 3 files changed, 29 insertions(+), 23 deletions(-) diff --git a/includes/class-admin-approve-entries.php b/includes/class-admin-approve-entries.php index 7ba31dd93f..61c839699a 100644 --- a/includes/class-admin-approve-entries.php +++ b/includes/class-admin-approve-entries.php @@ -20,6 +20,11 @@ class GravityView_Admin_ApproveEntries { function __construct() { + $this->add_hooks(); + + } + + private function add_hooks() { /** Edit Gravity Form page */ // Add button to left menu @@ -46,7 +51,6 @@ function __construct() { // bypass Gravity Forms no-conflict mode add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); - } /** @@ -162,7 +166,6 @@ function set_defaults() { - /** * Capture bulk actions - gf_entries table * diff --git a/includes/class-data.php b/includes/class-data.php index 0bb2c6534e..9df60bb9c7 100644 --- a/includes/class-data.php +++ b/includes/class-data.php @@ -54,9 +54,11 @@ public function has_multiple_views() { */ static public function maybe_get_view_id( $passed_post ) { + $self = self::getInstance(); + $ids = array(); - if( !empty( $passed_post ) ) { + if( ! empty( $passed_post ) ) { if( is_numeric( $passed_post ) ) { $passed_post = get_post( $passed_post ); @@ -75,7 +77,7 @@ static public function maybe_get_view_id( $passed_post ) { $ids[] = $post->ID; } else{ - $id = self::getInstance()->parse_post_content( $post->post_content ); + $id = $self->parse_post_content( $post->post_content ); $ids = array_merge( $ids, (array)$id ); } @@ -86,11 +88,11 @@ static public function maybe_get_view_id( $passed_post ) { if ( is_string( $passed_post ) ) { - $id = self::getInstance()->parse_post_content( $passed_post ); + $id = $self->parse_post_content( $passed_post ); $ids = array_merge( $ids, (array)$id ); } else { - $id = self::getInstance()->get_id_from_atts( $passed_post ); + $id = $self->get_id_from_atts( $passed_post ); $ids[] = intval( $id ); } @@ -122,13 +124,13 @@ function get_views() { function get_view( $view_id, $atts = NULL ) { - if( !is_numeric( $view_id) ) { + if( ! is_numeric( $view_id) ) { do_action('gravityview_log_error', sprintf('GravityView_View_Data[get_view] $view_id passed is not numeric.', $view_id) ); return false; } // Backup: the view hasn't been fetched yet. Doing it now. - if ( !isset( $this->views[ $view_id ] ) ) { + if ( ! isset( $this->views[ $view_id ] ) ) { do_action('gravityview_log_debug', sprintf('GravityView_View_Data[get_view] View #%s not set yet.', $view_id) ); return $this->add_view( $view_id, $atts ); } @@ -159,12 +161,11 @@ function view_exists( $view_id ) { * Add a view to the views array * * @param int|array $view_id View ID or array of View IDs - * @param type $atts Combine other attributes (eg. from shortcode) with the view settings (optional) + * @param array|string $atts Combine other attributes (eg. from shortcode) with the view settings (optional) * @return type */ function add_view( $view_id, $atts = NULL ) { - // Handle array of IDs if( is_array( $view_id ) ) { foreach( $view_id as $id ) { @@ -176,13 +177,13 @@ function add_view( $view_id, $atts = NULL ) { } // The view has been set already; returning stored view. - if ( !empty( $this->views[ $view_id ] ) ) { + if ( ! empty( $this->views[ $view_id ] ) ) { do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; View #%s already exists.', $view_id) ); return $this->views[ $view_id ]; } - if( !$this->view_exists( $view_id ) ) { + if( ! $this->view_exists( $view_id ) ) { do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; View #%s does not exist.', $view_id) ); return false; } @@ -206,7 +207,7 @@ function add_view( $view_id, $atts = NULL ) { do_action('gravityview_log_debug', 'GravityView_View_Data[add_view] View Defaults after merging View Settings with the default args.', $view_defaults ); - if( !empty( $atts ) && is_array( $atts ) ) { + if( ! empty( $atts ) && is_array( $atts ) ) { do_action('gravityview_log_debug', 'GravityView_View_Data[add_view] $atts before merging with the $view_defaults', $atts ); @@ -266,7 +267,7 @@ function get_fields( $view_id ) { * * @access public * @param array $dir_fields - * @return void + * @return array */ private function filter_fields( $dir_fields ) { @@ -295,12 +296,12 @@ private function filter_fields( $dir_fields ) { * * @access public * @param array $properties - * @return true (field should be hidden) or false (field should be presented) + * @return void|boolean (field should be hidden) or false (field should be presented) */ private function hide_field_check_conditions( $properties ) { // logged-in visibility - if( !empty( $properties['only_loggedin'] ) && !current_user_can( $properties['only_loggedin_cap'] ) ) { + if( ! empty( $properties['only_loggedin'] ) && ! current_user_can( $properties['only_loggedin_cap'] ) ) { return true; } @@ -314,7 +315,7 @@ function get_id_from_atts( $atts ) { // Get the settings from the shortcode and merge them with defaults. $atts = wp_parse_args( $atts, self::get_default_args() ); - $view_id = !empty( $atts['view_id'] ) ? (int)$atts['view_id'] : NULL; + $view_id = ! empty( $atts['view_id'] ) ? (int)$atts['view_id'] : NULL; if( empty( $view_id ) && !empty( $atts['id'] ) ) { $view_id = (int)$atts['id']; @@ -343,7 +344,7 @@ function parse_post_content( $content ) { * @hack This is so that the shortcode is registered for the oEmbed preview in the Admin * @since 1.6 */ - if( !shortcode_exists('gravityview') ) { + if( ! shortcode_exists('gravityview') ) { add_shortcode( 'gravityview', array( GravityView_frontend::getInstance(), 'shortcode' ) ); } @@ -410,7 +411,7 @@ public static function is_valid_embed_id( $post_id = '', $view_id = '', $empty_i $message = esc_html__( 'The ID is required.', 'gravityview' ); } - if( !$message ) { + if( ! $message ) { $status = get_post_status( $post_id ); // Nothing exists with that post ID. @@ -422,7 +423,7 @@ public static function is_valid_embed_id( $post_id = '', $view_id = '', $empty_i } } - if( !$message ) { + if( ! $message ) { // Nothing exists with that post ID. if ( empty( $status ) || in_array( $status, array( 'revision', 'attachment' ) ) ) { @@ -431,7 +432,7 @@ public static function is_valid_embed_id( $post_id = '', $view_id = '', $empty_i } - if( !$message ) { + if( ! $message ) { $view_ids_in_post = GravityView_View_Data::maybe_get_view_id( $post_id ); // The post or page specified does not contain the shortcode. @@ -440,7 +441,7 @@ public static function is_valid_embed_id( $post_id = '', $view_id = '', $empty_i } } - if( !$message ) { + if( ! $message ) { // It's a View if( 'gravityview' === get_post_type( $post_id ) ) { diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index d917f4801a..f3dd08dede 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -69,6 +69,7 @@ class GravityView_frontend { */ private function __construct() {} + private function initialize() { add_action( 'wp', array( $this, 'parse_content'), 11 ); // Shortcode to render view (directory) @@ -95,7 +96,8 @@ private function __construct() {} public static function getInstance() { if( empty( self::$instance ) ) { - self::$instance = new GravityView_frontend; + self::$instance = new self; + self::$instance->initialize(); } return self::$instance; From 595422f4502e0ddac385aaafa94018649a73a1e3 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 13:22:51 -0600 Subject: [PATCH 08/32] Docblock & code tweaks --- includes/class-frontend-views.php | 13 ++++++++++--- includes/class-template.php | 30 ++++++++++++++++++++++-------- 2 files changed, 32 insertions(+), 11 deletions(-) diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index f3dd08dede..466ca237f7 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -33,7 +33,8 @@ class GravityView_frontend { var $post_id = NULL; /** - * Are we currently viewing a single entry? If so, the int value of the entry ID. Otherwise, false. + * Are we currently viewing a single entry? + * If so, the int value of the entry ID. Otherwise, false. * @var int|boolean */ var $single_entry = false; @@ -65,7 +66,7 @@ class GravityView_frontend { static $instance; /** - * Class constructor + * Class constructor, enforce Singleton pattern */ private function __construct() {} @@ -222,7 +223,9 @@ function parse_content( $wp = array() ) { $doing_ajax = ( defined( 'DOING_AJAX' ) && DOING_AJAX ); // If in admin and NOT AJAX request, get outta here. - if( is_admin() && !$doing_ajax ) { return; } + if( is_admin() && ! $doing_ajax ) { + return; + } $this->setGvOutputData( GravityView_View_Data::getInstance( $post ) ); @@ -366,6 +369,7 @@ public function single_entry_title( $title, $passed_post_id = NULL ) { } // get view data + // todo: refactor if( 'gravityview' === get_post_type( $post ) ) { // In case View post is called directly $view_meta = $this->getGvOutputData()->get_view( $passed_post_id ); @@ -1189,6 +1193,7 @@ public function is_field_sortable( $field_id = '' , $form ) { /** * Theme function to get a GravityView view * + * @todo Move to functions file * @access public * @param string $view_id (default: '') * @param array $atts (default: array()) @@ -1208,6 +1213,7 @@ function get_gravityview( $view_id = '', $atts = array() ) { /** * Theme function to render a GravityView view * + * @todo Move to functions file * @access public * @param string $view_id (default: '') * @param array $atts (default: array()) @@ -1221,6 +1227,7 @@ function the_gravityview( $view_id = '', $atts = array() ) { /** * Theme function to identify if it is a Single Entry View * + * @todo Move to functions file * @since 1.5.4 * @return bool|string False if not, single entry slug if true */ diff --git a/includes/class-template.php b/includes/class-template.php index 2ce7acf741..f19f1b1fd2 100644 --- a/includes/class-template.php +++ b/includes/class-template.php @@ -19,13 +19,22 @@ class GravityView_View extends Gamajo_Template_Loader { - // Prefix for filter names. + /** + * Prefix for filter names. + * @var string + */ protected $filter_prefix = 'gravityview'; - // Directory name where custom templates for this plugin should be found in the theme. + /** + * Directory name where custom templates for this plugin should be found in the theme. + * @var string + */ protected $theme_template_directory = 'gravityview'; - // Reference to the root directory path of this plugin. + /** + * Reference to the root directory path of this plugin. + * @var string + */ protected $plugin_directory = GRAVITYVIEW_DIR; /** @@ -658,6 +667,10 @@ public function render( $slug, $name, $require_once = true ) { } } + /** + * + * @param $view_id + */ public function render_widget_hooks( $view_id ) { if( empty( $view_id ) || 'single' == gravityview_get_context() ) { @@ -666,6 +679,7 @@ public function render_widget_hooks( $view_id ) { $view_data = gravityview_get_current_view_data( $view_id ); + // TODO: Move to sep. method, use an action instead wp_enqueue_style( 'gravityview_default_style'); // get View widget configuration @@ -685,12 +699,12 @@ public function render_widget_hooks( $view_id ) { // Prevent being called twice if( did_action( $zone.'_'.$view_id.'_widgets' ) ) { return; } + // TODO Convert to partials ?> -
$areas ) : + foreach( $rows as $row ) { + foreach( $row as $col => $areas ) { $column = ($col == '2-2') ? '1-2 gv-right' : $col.' gv-left'; ?>
@@ -705,8 +719,8 @@ public function render_widget_hooks( $view_id ) { } } ?>
- - + +
Date: Thu, 12 Mar 2015 14:56:33 -0600 Subject: [PATCH 09/32] Add method to show/hide approve/reject column Includes two new filters. Passes the boolean value to the `gvGlobals` object, which is then handled by the JS. If false, the JS doesn't do its thing. --- assets/js/admin-entries-list.js | 4 +++ includes/class-admin-approve-entries.php | 43 ++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index 584b59e4ae..f56f5c951c 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -106,6 +106,10 @@ } ); + // Only support approve/reject if the column is visible + if( gvGlobals.show_column * 1 === 1 ) { + $( self.init ); + } } ); diff --git a/includes/class-admin-approve-entries.php b/includes/class-admin-approve-entries.php index 61c839699a..20510827aa 100644 --- a/includes/class-admin-approve-entries.php +++ b/includes/class-admin-approve-entries.php @@ -453,6 +453,7 @@ function add_scripts_and_styles( $hook ) { wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( 'nonce' => wp_create_nonce( 'gravityview_ajaxgfentries'), 'form_id' => $form_id, + 'show_column' => $this->show_approve_entry_column( $form_id ), 'label_approve' => __( 'Approve', 'gravityview' ) , 'label_disapprove' => __( 'Disapprove', 'gravityview' ), 'bulk_message' => $this->bulk_update_message, @@ -466,6 +467,48 @@ function add_scripts_and_styles( $hook ) { } + /** + * Should the Approve/Reject Entry column be shown in the GF Entries page? + * + * @filter gravityview/approve_entries/hide-if-no-connections + * @filter gravityview/approve_entries/show-column + * + * @since 1.7.2 + * + * @param int $form_id The ID of the Gravity Forms form for which entries are being shown + * + * @return bool True: Show column; False: hide column + */ + private function show_approve_entry_column( $form_id ) { + + $show_approve_column = true; + + /** + * Return true to hide reject/approve if there are no connected Views + * @since 1.7.2 + * @param boolean $hide_if_no_connections + */ + $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); + + if( $hide_if_no_connections ) { + + $connected_views = gravityview_get_connected_views( $form_id ); + + if( empty( $connected_views ) ) { + $show_approve_column = false; + } + } + + /** + * Override whether the column is shown + * @param boolean $show_approve_column Whether the column will be shown + * @param int $form_id The ID of the Gravity Forms form for which entries are being shown + */ + $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); + + return $show_approve_column; + } + function register_gform_noconflict_script( $scripts ) { $scripts[] = 'gravityview_gf_entries_scripts'; return $scripts; From 2cd55a511787e7e7b9efe9578ae47a8c888f5bc7 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 14:57:06 -0600 Subject: [PATCH 10/32] Rewrite the JS to be cleaner --- assets/js/admin-entries-list.js | 157 +++++++++++++++++++--------- assets/js/admin-entries-list.min.js | 2 +- 2 files changed, 111 insertions(+), 48 deletions(-) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index f56f5c951c..dba5c0d299 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -8,14 +8,109 @@ * @copyright Copyright 2014, Katz Web Services, Inc. * * @since 1.0.0 + * + * global gvGlobals */ (function( $ ) { - function displayMessage( message, messageClass, container ) { + "use strict"; + + var self = {}; + + /** + * Enable Approve/Reject functionality on the Gravity Forms Entries page + */ + self.init = function() { + + self.maybeDisplayMessages(); + + self.addApprovedColumn(); + + self.addBulkAction(); + + self.setInitialApprovedEntries(); + + $( '.toggleApproved' ).click( self.toggleApproved ); + }; + + /** + * If there are messages, display them + */ + self.maybeDisplayMessages = function() { + // display update message if any + if ( gvGlobals.bulk_message.length > 0 ) { + self.displayMessage( gvGlobals.bulk_message, 'updated', '#lead_form' ); + } + }; + + /** + * Mark the entries that are approved as approved on load + */ + self.setInitialApprovedEntries = function() { + $( 'tr:has(input.entry_approved)' ).find( 'a.toggleApproved' ).addClass( 'entry_approved' ).prop( 'title', gvGlobals.unapprove_title ); + }; + + /** + * Add approve/reject options to bulk edit dropdown + */ + self.addBulkAction = function() { + $( "#bulk_action, #bulk_action2" ).append( '' ); + }; + + /** + * Add an Approved column and header in the entries table + */ + self.addApprovedColumn = function() { + + /** + * inject approve/disapprove buttons into the first column of table + */ + $( 'thead th.check-column:eq(1), tfoot th.check-column:eq(1)' ).after( '' ); + + /** + * Add column for each entry + */ + $( 'td:has(img[src*="star"])' ).after( '' ); + + }; + + /** + * Toggle a specific entry + * + * @param e The clicked entry event object + * @returns {false} + */ + self.toggleApproved = function ( e ) { + e.preventDefault(); + + var entryID = $( this ).parent().parent().find( 'th input[type="checkbox"]' ).val(); + + $( this ).addClass( 'loading' ); + + if ( $( this ).hasClass( 'entry_approved' ) ) { + $( this ).prop( 'title', gvGlobals.approve_title ); + self.updateApproved( entryID, 0, $( this ) ); + } else { + $( this ).prop( 'title', gvGlobals.unapprove_title ); + self.updateApproved( entryID, 'Approved', $( this ) ); + } + + return false; - hideMessage( container, true ); + }; + + /** + * Generate a message and prepend it to the container + * + * @param message Text to display + * @param messageClass (default: updated) + * @param container Where to prepend the message (default: #lead_form) + */ + self.displayMessage = function ( message, messageClass, container ) { + + self.hideMessage( container, true ); var messageBox = $( '' ); $( messageBox ).prependTo( container ).slideDown(); @@ -27,9 +122,14 @@ } - } + }; - function hideMessage( container, messageQueued ) { + /** + * Hide a displayed message + * @param container + * @param messageQueued + */ + self.hideMessage = function ( container, messageQueued ) { var messageBox = $( container ).find( '.message' ); @@ -41,11 +141,13 @@ } ); } - } + }; - // Request entry approve (ajax) - function updateApproved( entryid, approved, $target ) { + /** + * Update an entry status via AJAX + */ + self.updateApproved = function ( entryid, approved, $target ) { var data = { action: 'gv_update_approved', @@ -66,51 +168,12 @@ return true; - } - - - $( document ).ready( function () { - - // add actions to bulk select box - $( "#bulk_action, #bulk_action2" ).append( '' ); - - // display update message if any - if ( gvGlobals.bulk_message.length > 0 ) { - displayMessage( gvGlobals.bulk_message, 'updated', '#lead_form' ); - } - - // inject approve/disapprove buttons into the first column of table - $( 'thead th.check-column:eq(1), tfoot th.check-column:eq(1)' ).after( '' ); - - $( 'td:has(img[src*="star"])' ).after( '' ); - - $( 'tr:has(input.entry_approved)' ).find( 'a.toggleApproved' ).addClass( 'entry_approved' ).prop( 'title', gvGlobals.unapprove_title ); - - - $( '.toggleApproved' ).click( function ( e ) { - e.preventDefault(); - - var entryID = $( this ).parent().parent().find( 'th input[type="checkbox"]' ).val(); - - $( this ).addClass( 'loading' ); - - if ( $( this ).hasClass( 'entry_approved' ) ) { - $( this ).prop( 'title', gvGlobals.approve_title ); - updateApproved( entryID, 0, $( this ) ); - } else { - $( this ).prop( 'title', gvGlobals.unapprove_title ); - updateApproved( entryID, 'Approved', $( this ) ); - } - - return false; - - } ); + }; // Only support approve/reject if the column is visible if( gvGlobals.show_column * 1 === 1 ) { $( self.init ); } - } ); } (jQuery) ); diff --git a/assets/js/admin-entries-list.min.js b/assets/js/admin-entries-list.min.js index 9ecc25454d..49412b0240 100644 --- a/assets/js/admin-entries-list.min.js +++ b/assets/js/admin-entries-list.min.js @@ -1 +1 @@ -!function($){function displayMessage(message,messageClass,container){hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"==messageClass&&(messageTimeout=setTimeout(function(){hideMessage(container,!1)},1e4))}function hideMessage(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})}function updateApproved(entryid,approved,$target){var data={action:"gv_update_approved",entry_id:entryid,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0}$(document).ready(function(){$("#bulk_action, #bulk_action2").append('"),gvGlobals.bulk_message.length>0&&displayMessage(gvGlobals.bulk_message,"updated","#lead_form"),$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after(''),$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title),$(".toggleApproved").click(function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),updateApproved(entryID,"Approved",$(this))),!1})})}(jQuery); \ No newline at end of file +!function($){"use strict";var self={};self.init=function(){self.maybeDisplayMessages(),self.addApprovedColumn(),self.addBulkAction(),self.setInitialApprovedEntries(),$(".toggleApproved").click(self.toggleApproved)},self.maybeDisplayMessages=function(){gvGlobals.bulk_message.length>0&&self.displayMessage(gvGlobals.bulk_message,"updated","#lead_form")},self.setInitialApprovedEntries=function(){$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title)},self.addBulkAction=function(){$("#bulk_action, #bulk_action2").append('")},self.addApprovedColumn=function(){$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after('')},self.toggleApproved=function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),self.updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),self.updateApproved(entryID,"Approved",$(this))),!1},self.displayMessage=function(message,messageClass,container){self.hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"==messageClass&&(messageTimeout=setTimeout(function(){hideMessage(container,!1)},1e4))},self.hideMessage=function(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})},self.updateApproved=function(entryid,approved,$target){var data={action:"gv_update_approved",entry_id:entryid,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0},1*gvGlobals.show_column===1&&$(self.init)}(jQuery); \ No newline at end of file From ab9e87a45ac657bd63576eaa914035c08a78d014 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 15:49:29 -0600 Subject: [PATCH 11/32] Allow for the Bulk Entries functionality to work when Approve column is gone --- assets/js/admin-entries-list.js | 20 +++++++++++--------- assets/js/admin-entries-list.min.js | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index dba5c0d299..f5f7e474e5 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -26,13 +26,19 @@ self.maybeDisplayMessages(); - self.addApprovedColumn(); - self.addBulkAction(); - self.setInitialApprovedEntries(); + // Only support approve/reject if the column is visible + if( 1 === ( gvGlobals.show_column * 1 ) ) { + + self.addApprovedColumn(); + + self.setInitialApprovedEntries(); + + $( '.toggleApproved' ).click( self.toggleApproved ); + + } - $( '.toggleApproved' ).click( self.toggleApproved ); }; /** @@ -170,10 +176,6 @@ }; - // Only support approve/reject if the column is visible - if( gvGlobals.show_column * 1 === 1 ) { - $( self.init ); - } - + $( self.init ); } (jQuery) ); diff --git a/assets/js/admin-entries-list.min.js b/assets/js/admin-entries-list.min.js index 49412b0240..90e7d68c09 100644 --- a/assets/js/admin-entries-list.min.js +++ b/assets/js/admin-entries-list.min.js @@ -1 +1 @@ -!function($){"use strict";var self={};self.init=function(){self.maybeDisplayMessages(),self.addApprovedColumn(),self.addBulkAction(),self.setInitialApprovedEntries(),$(".toggleApproved").click(self.toggleApproved)},self.maybeDisplayMessages=function(){gvGlobals.bulk_message.length>0&&self.displayMessage(gvGlobals.bulk_message,"updated","#lead_form")},self.setInitialApprovedEntries=function(){$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title)},self.addBulkAction=function(){$("#bulk_action, #bulk_action2").append('")},self.addApprovedColumn=function(){$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after('')},self.toggleApproved=function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),self.updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),self.updateApproved(entryID,"Approved",$(this))),!1},self.displayMessage=function(message,messageClass,container){self.hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"==messageClass&&(messageTimeout=setTimeout(function(){hideMessage(container,!1)},1e4))},self.hideMessage=function(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})},self.updateApproved=function(entryid,approved,$target){var data={action:"gv_update_approved",entry_id:entryid,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0},1*gvGlobals.show_column===1&&$(self.init)}(jQuery); \ No newline at end of file +!function($){"use strict";var self={};self.init=function(){self.maybeDisplayMessages(),self.addBulkAction(),1===1*gvGlobals.show_column&&(self.addApprovedColumn(),self.setInitialApprovedEntries(),$(".toggleApproved").click(self.toggleApproved))},self.maybeDisplayMessages=function(){gvGlobals.bulk_message.length>0&&self.displayMessage(gvGlobals.bulk_message,"updated","#lead_form")},self.setInitialApprovedEntries=function(){$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title)},self.addBulkAction=function(){$("#bulk_action, #bulk_action2").append('")},self.addApprovedColumn=function(){$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after('')},self.toggleApproved=function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),self.updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),self.updateApproved(entryID,"Approved",$(this))),!1},self.displayMessage=function(message,messageClass,container){self.hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"==messageClass&&(messageTimeout=setTimeout(function(){hideMessage(container,!1)},1e4))},self.hideMessage=function(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})},self.updateApproved=function(entryid,approved,$target){var data={action:"gv_update_approved",entry_id:entryid,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0},$(self.init)}(jQuery); \ No newline at end of file From 141d479d62b0f3f5b582865f81cf65137c025684 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Thu, 12 Mar 2015 16:06:47 -0600 Subject: [PATCH 12/32] Minor JS tweaks --- assets/js/admin-entries-list.js | 18 +++++++++--------- assets/js/admin-entries-list.min.js | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/assets/js/admin-entries-list.js b/assets/js/admin-entries-list.js index f5f7e474e5..bb8d0b3ae3 100644 --- a/assets/js/admin-entries-list.js +++ b/assets/js/admin-entries-list.js @@ -9,7 +9,7 @@ * * @since 1.0.0 * - * global gvGlobals + * globals jQuery, gvGlobals, ajaxurl */ @@ -29,7 +29,7 @@ self.addBulkAction(); // Only support approve/reject if the column is visible - if( 1 === ( gvGlobals.show_column * 1 ) ) { + if( 1 === parseInt( gvGlobals.show_column, 10 ) ) { self.addApprovedColumn(); @@ -86,7 +86,7 @@ * Toggle a specific entry * * @param e The clicked entry event object - * @returns {false} + * @returns {boolean} */ self.toggleApproved = function ( e ) { e.preventDefault(); @@ -121,9 +121,9 @@ var messageBox = $( '' ); $( messageBox ).prependTo( container ).slideDown(); - if ( messageClass == 'updated' ) { - messageTimeout = setTimeout( function () { - hideMessage( container, false ); + if ( messageClass === 'updated' ) { + window.setTimeout( function () { + self.hideMessage( container, false ); }, 10000 ); } @@ -153,14 +153,14 @@ /** * Update an entry status via AJAX */ - self.updateApproved = function ( entryid, approved, $target ) { + self.updateApproved = function ( entryID, approved, $target ) { var data = { action: 'gv_update_approved', - entry_id: entryid, + entry_id: entryID, form_id: gvGlobals.form_id, approved: approved, - nonce: gvGlobals.nonce, + nonce: gvGlobals.nonce }; $.post( ajaxurl, data, function ( response ) { diff --git a/assets/js/admin-entries-list.min.js b/assets/js/admin-entries-list.min.js index 90e7d68c09..13d8c9aadc 100644 --- a/assets/js/admin-entries-list.min.js +++ b/assets/js/admin-entries-list.min.js @@ -1 +1 @@ -!function($){"use strict";var self={};self.init=function(){self.maybeDisplayMessages(),self.addBulkAction(),1===1*gvGlobals.show_column&&(self.addApprovedColumn(),self.setInitialApprovedEntries(),$(".toggleApproved").click(self.toggleApproved))},self.maybeDisplayMessages=function(){gvGlobals.bulk_message.length>0&&self.displayMessage(gvGlobals.bulk_message,"updated","#lead_form")},self.setInitialApprovedEntries=function(){$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title)},self.addBulkAction=function(){$("#bulk_action, #bulk_action2").append('")},self.addApprovedColumn=function(){$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after('')},self.toggleApproved=function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),self.updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),self.updateApproved(entryID,"Approved",$(this))),!1},self.displayMessage=function(message,messageClass,container){self.hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"==messageClass&&(messageTimeout=setTimeout(function(){hideMessage(container,!1)},1e4))},self.hideMessage=function(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})},self.updateApproved=function(entryid,approved,$target){var data={action:"gv_update_approved",entry_id:entryid,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0},$(self.init)}(jQuery); \ No newline at end of file +!function($){"use strict";var self={};self.init=function(){self.maybeDisplayMessages(),self.addBulkAction(),1===parseInt(gvGlobals.show_column,10)&&(self.addApprovedColumn(),self.setInitialApprovedEntries(),$(".toggleApproved").click(self.toggleApproved))},self.maybeDisplayMessages=function(){gvGlobals.bulk_message.length>0&&self.displayMessage(gvGlobals.bulk_message,"updated","#lead_form")},self.setInitialApprovedEntries=function(){$("tr:has(input.entry_approved)").find("a.toggleApproved").addClass("entry_approved").prop("title",gvGlobals.unapprove_title)},self.addBulkAction=function(){$("#bulk_action, #bulk_action2").append('")},self.addApprovedColumn=function(){$("thead th.check-column:eq(1), tfoot th.check-column:eq(1)").after(''),$('td:has(img[src*="star"])').after('')},self.toggleApproved=function(e){e.preventDefault();var entryID=$(this).parent().parent().find('th input[type="checkbox"]').val();return $(this).addClass("loading"),$(this).hasClass("entry_approved")?($(this).prop("title",gvGlobals.approve_title),self.updateApproved(entryID,0,$(this))):($(this).prop("title",gvGlobals.unapprove_title),self.updateApproved(entryID,"Approved",$(this))),!1},self.displayMessage=function(message,messageClass,container){self.hideMessage(container,!0);var messageBox=$('");$(messageBox).prependTo(container).slideDown(),"updated"===messageClass&&window.setTimeout(function(){self.hideMessage(container,!1)},1e4)},self.hideMessage=function(container,messageQueued){var messageBox=$(container).find(".message");messageQueued?$(messageBox).remove():$(messageBox).slideUp(function(){$(this).remove()})},self.updateApproved=function(entryID,approved,$target){var data={action:"gv_update_approved",entry_id:entryID,form_id:gvGlobals.form_id,approved:approved,nonce:gvGlobals.nonce};return $.post(ajaxurl,data,function(response){response&&$target.removeClass("loading").toggleClass("entry_approved","Approved"===approved)}),!0},$(self.init)}(jQuery); \ No newline at end of file From b7653244405603106e488554a4640da07189abb4 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Sat, 14 Mar 2015 18:30:17 -0600 Subject: [PATCH 13/32] Allow for non-numberic search fields --- includes/class-frontend-views.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index 90e3112fe0..3c8764e918 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -814,7 +814,7 @@ public static function get_search_criteria( $args, $form_id ) { $operator = !empty( $args['search_operator'] ) && in_array( $args['search_operator'], array('is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains'; $search_criteria['field_filters'][] = array( - 'key' => ( ( !empty( $args['search_field'] ) && is_numeric( $args['search_field'] ) ) ? $args['search_field'] : null ), // The field ID to search + 'key' => rgget('search_field', $args ), // The field ID to search 'value' => esc_attr( $args['search_value'] ), // The value to search 'operator' => $operator, ); From 1de27f63ee86d508346c12dc87d003b0512782fe Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Sat, 14 Mar 2015 18:30:42 -0600 Subject: [PATCH 14/32] If page_size is -1, set the # of entries to PHP_INT_MAX --- includes/class-frontend-views.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index 3c8764e918..778e9265f3 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -871,6 +871,10 @@ public static function get_view_entries( $args, $form_id ) { // Paging & offset $page_size = !empty( $args['page_size'] ) ? intval( $args['page_size'] ) : apply_filters( 'gravityview_default_page_size', 25 ); + if( $page_size === -1 ) { + $page_size = PHP_INT_MAX; + } + if( isset( $args['offset'] ) ) { $offset = intval( $args['offset'] ); } else { From effc7de8b972bce15dff5d0bd3a40739318ce95a Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Sat, 14 Mar 2015 18:31:00 -0600 Subject: [PATCH 15/32] Don't have sort_field and sort_direction be required fields --- includes/class-frontend-views.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index 778e9265f3..733732346e 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -950,8 +950,8 @@ public static function get_view_entries( $args, $form_id ) { public static function updateViewSorting( $args, $form_id ) { $sorting = array(); - $sort_field = isset( $_GET['sort'] ) ? $_GET['sort'] : $args['sort_field']; - $sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : $args['sort_direction']; + $sort_field = isset( $_GET['sort'] ) ? $_GET['sort'] : rgar( $args, 'sort_field' ); + $sort_direction = isset( $_GET['dir'] ) ? $_GET['dir'] : rgar( $args, 'sort_direction' ); if( !empty( $sort_field ) ) { $sorting = array( 'key' => $sort_field, From 2f44adcf82f0ae9b77199aaf42d809917976535f Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Sat, 14 Mar 2015 18:34:25 -0600 Subject: [PATCH 16/32] Create GravityView_Entry_List class Handles generating simple linked lists of entries, used by the Recent Entries widget and also the new Other Entries field. --- gravityview.php | 1 + includes/class-gravityview-entry-list.php | 283 ++++++++++++++++++++++ includes/widgets.php | 81 +++---- 3 files changed, 317 insertions(+), 48 deletions(-) create mode 100644 includes/class-gravityview-entry-list.php diff --git a/gravityview.php b/gravityview.php index 54fb326c92..f9b9eea1a1 100644 --- a/gravityview.php +++ b/gravityview.php @@ -118,6 +118,7 @@ public function __construct() { require_once( GRAVITYVIEW_DIR . 'includes/class-ajax.php' ); require_once( GRAVITYVIEW_DIR . 'includes/class-settings.php'); include_once( GRAVITYVIEW_DIR . 'includes/class-frontend-views.php' ); + include_once( GRAVITYVIEW_DIR . 'includes/class-gravityview-entry-list.php' ); include_once( GRAVITYVIEW_DIR . 'includes/class-data.php' ); // Load plugin text domain diff --git a/includes/class-gravityview-entry-list.php b/includes/class-gravityview-entry-list.php new file mode 100644 index 0000000000..7cec266c8b --- /dev/null +++ b/includes/class-gravityview-entry-list.php @@ -0,0 +1,283 @@ +entries = $entries; + $this->post_id = $post_id; + $this->form = $form; + $this->link_format = $link_format; + $this->after_link = $after_link; + $this->context = $context; + $this->empty_message = gv_no_results(); + + } + + /** + * @param int $post_id + */ + public function set_post_id( $post_id ) { + $this->post_id = $post_id; + } + + /** + * @param string $link_format + */ + public function set_link_format( $link_format ) { + $this->link_format = $link_format; + } + + /** + * @param boolean $skip_current_entry + */ + public function set_skip_current_entry( $skip_current_entry ) { + $this->skip_current_entry = (bool)$skip_current_entry; + } + + /** + * @param string $after_link + */ + public function set_after_link( $after_link ) { + $this->after_link = $after_link; + } + + /** + * Set the message when there are no entries to display + * @param string $empty_message + */ + public function set_empty_message( $empty_message ) { + $this->empty_message = $empty_message; + } + + /** + * Set the context in which this entry list is being displayed. + * @param string $context + */ + public function set_context( $context ) { + $this->context = $context; + } + + /** + * @param string $wrapper_tag + */ + public function set_wrapper_tag( $wrapper_tag ) { + $this->wrapper_tag = esc_attr( $wrapper_tag ); + } + + /** + * + * @param string $item_tag + */ + public function set_item_tag( $item_tag ) { + $this->item_tag = esc_attr( $item_tag ); + } + + /** + * Echo the output generated by get_output() + * + * @see get_output() + * + * @return string HTML output for entry list + */ + public function output() { + + $output = $this->get_output(); + + echo $output; + + return $output; + } + + /** + * Get the HTML output + * + * @return string HTML output for entry list + */ + public function get_output() { + + // No Entries + if( empty( $this->entries ) ) { + return '
'.$this->empty_message.'
'; + } + + $output = ''; + $current_entry = GravityView_View::getInstance()->getCurrentEntry(); + + $output .= '<'. $this->wrapper_tag .'>'; + + foreach( $this->entries as $entry ) { + + if( $this->skip_entry( $entry, $current_entry ) ) { + continue; + } + + $output .= $this->get_item_output( $entry ); + } + + $output .= 'wrapper_tag .'>'; + + /** + * Modify the HTML of the output + * @param string $output HTML to be displayed + * @param GravityView_Entry_List $this The current class instance + */ + $output = apply_filters( 'gravityview/widget/recent-entries/output', $output, $this ); + + return $output; + } + + /** + * Should the current entry be skipped while showing the list of entries? + * + * @param array $entry GF Entry array + * @param array|int $current_entry As returned by GravityView_View::getCurrentEntry() + * + * @return bool True: Skip entry; False: don't skip entry + */ + private function skip_entry( $entry, $current_entry ) { + + // If skip entry is off, or there's no current entry, return false + if( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { + return false; + } + + // If in Single or Edit mode, $current_entry will be an array. + $current_entry_id = is_array( $current_entry ) ? $current_entry['id'] : $current_entry; + + // If the entry ID matches the current entry, yes: skip + if( $entry['id'] === $current_entry_id ) { + return true; + } + + // Otherwise, return false + return false; + } + + /** + * Get the output for a specific entry + * + * @param array $entry GF Entry array + * + * @since 1.8 + * + * @uses gravityview_get_link + * @uses GravityView_API::entry_link + * @uses Gravityview_API::replace_variables + * + * @return string HTML output for the entry + */ + private function get_item_output( $entry ) { + + $link = GravityView_API::entry_link( $entry, $this->post_id ); + + $item_output = gravityview_get_link( $link, $this->link_format ); + + if( !empty( $this->after_link ) ) { + + /** + * Modify the item output HTML + * + * @since 1.8 + * + * @param string $item_output The HTML output for the after_link content + * @param array $entry Gravity Forms entry array + * @param GravityView_Entry_List $this The current class instance + */ + $after_link = apply_filters( 'gravityview/entry-list/after-link', '
'.$this->after_link.'
', $entry, $this ); + + $item_output .= $after_link; + } + + $item_output = Gravityview_API::replace_variables( $item_output, $this->form, $entry ); + + $item_output = '<'. $this->item_tag .'>'. $item_output .'item_tag .'>'; + + /** + * Modify the item output HTML + * + * @since 1.8 + * + * @param string $item_output The HTML output for the item + * @param array $entry Gravity Forms entry array + * @param GravityView_Entry_List $this The current class instance + */ + $item_output = apply_filters( 'gravityview/entry-list/item', $item_output, $entry, $this ); + + return $item_output; + } + +} \ No newline at end of file diff --git a/includes/widgets.php b/includes/widgets.php index 7bfc8bf855..124f251e7c 100644 --- a/includes/widgets.php +++ b/includes/widgets.php @@ -28,9 +28,15 @@ function __construct( ) { parent::__construct( 'gv_recent_entries', $name, $widget_options ); + $this->initialize(); + } + + private function initialize() { + add_action('admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts') ); add_action( 'wp_ajax_gv_get_view_merge_tag_data', array( $this, 'ajax_get_view_merge_tag_data' ) ); + } /** @@ -114,6 +120,25 @@ function widget( $args, $instance ) { do_action( 'gravityview/widget/recent-entries/before_widget', $args, $instance ); + // Print the entry list + echo $this->get_output( $instance ); + + do_action( 'gravityview/widget/recent-entries/after_widget', $args, $instance ); + + echo $args['after_widget']; + } + + /** + * Get the HTML output for the entry list. + * + * @since 1.8 + * + * @param array $instance The settings for the particular instance of the widget. + * + * @return string + */ + private function get_output( $instance ) { + $form_id = gravityview_get_form_id( $instance['view_id'] ); $form = gravityview_get_form( $form_id ); @@ -126,65 +151,25 @@ function widget( $args, $instance ) { */ $entry_link_post_id = ( empty( $instance['error_post_id'] ) && !empty( $instance['post_id'] ) ) ? $instance['post_id'] : $instance['view_id']; - $list_items = array(); - - if( empty( $entries ) ) { - - $output = '
'.gv_no_results().'
'; - - } else { - - foreach( $entries as $entry ) { - - $link = GravityView_API::entry_link( $entry, $entry_link_post_id ); - - $text = $instance['link_format']; - - $item_output = gravityview_get_link( $link, $text ); - - if( !empty( $instance['after_link'] ) ) { - $item_output .= '
'.$instance['after_link'].'
'; - } - - $item_output = Gravityview_API::replace_variables( $item_output, $form, $entry ); - - /** - * Modify the item output HTML - * - * @since 1.6 - * - * @param string $item_output The HTML output for the item - * @param array $entry Gravity Forms entry array - * @param array $instance The settings for the particular instance of the widget. - */ - $item_output = apply_filters( 'gravityview/widget/recent-entries/item', $item_output, $entry, $instance ); - - $list_items[] = $item_output; - } - - $output = '
  • '. implode( '
  • ', $list_items ) . '
'; - - } - /** - * Modify the HTML before it's echo'd - * @param string $output HTML to be displayed - * @param array $instance Widget settings + * Generate list output + * @since 1.8 */ - $output = apply_filters( 'gravityview/widget/recent-entries/output', $output, $list_items, $instance ); + $List = new GravityView_Entry_List( $entries, $entry_link_post_id, $form, $instance['link_format'], $instance['after_link'], 'recent-entries-widget' ); - echo $output; + $output = $List->get_output(); /** * Modify the HTML before it's echo'd - * @param array $args Widget args + * @param string $output HTML to be displayed * @param array $instance Widget settings */ - do_action( 'gravityview/widget/recent-entries/after_widget', $args, $instance ); + $output = apply_filters( 'gravityview/widget/recent-entries/output', $output, $instance ); - echo $args['after_widget']; + return $output; } + /** * Get the entries that will be shown in the current widget * From 195204a8340df90ad8084525e112803d035b83a0 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Sat, 14 Mar 2015 18:35:13 -0600 Subject: [PATCH 17/32] Add Other Entries field Generates a list of other entries created by the `entry_creator` user. --- includes/class-admin-views.php | 9 +++++ includes/class-frontend-views.php | 15 +++++--- includes/class-template.php | 22 +++++++---- includes/fields/other-entries.php | 61 ++++++++++++++++++++++++++++++ templates/fields/other_entries.php | 48 +++++++++++++++++++++++ 5 files changed, 142 insertions(+), 13 deletions(-) create mode 100644 includes/fields/other-entries.php create mode 100644 templates/fields/other_entries.php diff --git a/includes/class-admin-views.php b/includes/class-admin-views.php index b02f431fbf..f404c929fd 100644 --- a/includes/class-admin-views.php +++ b/includes/class-admin-views.php @@ -569,6 +569,15 @@ function get_entry_default_fields($form, $zone) { 'type' => 'custom', 'desc' => __('Insert custom text or HTML.', 'gravityview'), ), + + /** + * @since 1.7.2 + */ + 'other_entries' => array( + 'label' => __('Other Entries', 'gravityview'), + 'type' => 'other_entries', + 'desc' => __('Display other entries created by the entry creator.', 'gravityview'), + ), ); diff --git a/includes/class-frontend-views.php b/includes/class-frontend-views.php index 733732346e..99958d02c2 100644 --- a/includes/class-frontend-views.php +++ b/includes/class-frontend-views.php @@ -306,10 +306,9 @@ function admin_bar_add_links() { * @return void */ function admin_bar_remove_links() { - global $wp_admin_bar, $post, $wp, $wp_the_query; // If we're on the single entry page, we don't want to cause confusion. - if( is_admin() || ($this->single_entry && !$this->isGravityviewPostType() ) ) { + if( is_admin() || ($this->getSingleEntry() && !$this->isGravityviewPostType() ) ) { remove_action( 'admin_bar_menu', 'wp_admin_bar_edit_menu', 80 ); } } @@ -320,12 +319,14 @@ function admin_bar_remove_links() { * @access public * @static * @param mixed $atts - * @return void + * @return null|string If admin, null. Otherwise, output of $this->render_view() */ public function shortcode( $atts, $content = NULL ) { // Don't process when saving post. - if( is_admin() ) { return; } + if( is_admin() ) { + return; + } do_action( 'gravityview_log_debug', '[shortcode] $atts: ', $atts ); @@ -399,7 +400,7 @@ public function single_entry_title( $title, $passed_post_id = NULL ) { * @access public * @static * @param mixed $content - * @return void + * @return string Add the View output into View CPT content */ public function insert_view_in_content( $content ) { @@ -813,6 +814,8 @@ public static function get_search_criteria( $args, $form_id ) { // Search operator options. Options: `is` or `contains` $operator = !empty( $args['search_operator'] ) && in_array( $args['search_operator'], array('is', 'isnot', '>', '<', 'contains' ) ) ? $args['search_operator'] : 'contains'; + + $search_criteria['field_filters'][] = array( 'key' => rgget('search_field', $args ), // The field ID to search 'value' => esc_attr( $args['search_value'] ), // The value to search @@ -854,7 +857,7 @@ public static function get_search_criteria( $args, $form_id ) { * @uses gravityview_get_entries() * @access public * @param mixed $args - * @param int $form_id + * @param int $form_id Gravity Forms Form ID * @return array Associative array with `count`, `entries`, and `paging` keys. `count` has the total entries count, `entries` is an array with Gravity Forms full entry data, `paging` is an array with `offset` and `page_size` keys */ public static function get_view_entries( $args, $form_id ) { diff --git a/includes/class-template.php b/includes/class-template.php index 2ce7acf741..1bec2653a2 100644 --- a/includes/class-template.php +++ b/includes/class-template.php @@ -11,12 +11,15 @@ * @since 1.0.0 */ +/** If this file is called directly, abort. */ +if ( ! defined( 'ABSPATH' ) ) { + die; +} if( ! class_exists( 'Gamajo_Template_Loader' ) ) { require( GRAVITYVIEW_DIR . 'includes/lib/class-gamajo-template-loader.php' ); } - class GravityView_View extends Gamajo_Template_Loader { // Prefix for filter names. @@ -492,12 +495,19 @@ public function setCurrentEntry( $current_entry ) { $this->_current_entry = $current_entry; } - + /** + * Render an output zone, as configured in the Admin + * + * @param string $zone The zone name, like 'footer-left' + * @param array $atts + * + * @return string|null + */ public function renderZone( $zone = '', $atts = array() ) { if( empty( $zone ) ) { do_action('gravityview_log_error', 'GravityView_View[renderZone] No zone defined.'); - return; + return NULL; } $defaults = array( @@ -526,7 +536,7 @@ public function renderZone( $zone = '', $atts = array() ) { } if( empty( $fields ) ) { - return; + return NULL; } if( !empty( $final_atts['wrapper_class'] ) ) { @@ -550,7 +560,6 @@ public function renderZone( $zone = '', $atts = array() ) { return $output; } - /** * In order to improve lookup times, we store located templates in a local array. * @@ -562,9 +571,8 @@ public function renderZone( $zone = '', $atts = array() ) { */ function locate_template( $template_names, $load = false, $require_once = true ) { - $located = false; - if( is_string( $template_names ) && isset( $this->located_templates[ $template_names ] ) ) { + $located = $this->located_templates[ $template_names ]; } else { diff --git a/includes/fields/other-entries.php b/includes/fields/other-entries.php new file mode 100644 index 0000000000..20a621b1e0 --- /dev/null +++ b/includes/fields/other-entries.php @@ -0,0 +1,61 @@ + 'text', + 'label' => __( 'Entry link text (required)', 'gravityview' ), + 'desc' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), + 'value' => __('Entry #{entry_id}', 'gravityview'), + ); + + $field_options['after_link'] = array( + 'type' => 'textarea', + 'label' => __( 'Entries to Display', 'gravityview' ), + 'desc' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), + 'value' => '', + 'class' => 'widefat code', + ); + + $field_options['page_size'] = array( + 'type' => 'number', + 'label' => __( 'Entries to Display', 'gravityview' ), + 'desc' => __( 'What is the maximum number of entries that should be shown?', 'gravityview' ), + 'value' => '10', + 'merge_tags' => false, + ); + + $field_options['no_entries_hide'] = array( + 'type' => 'checkbox', + 'label' => __( 'Hide if no entries', 'gravityview' ), + 'desc' => __( 'Don\'t display this field if the entry creator has no other entries', 'gravityview' ), + 'value' => false, + ); + + $field_options['no_entries_text'] = array( + 'type' => 'text', + 'label' => __( 'No Entries Text', 'gravityview' ), + 'desc' => __( 'If the entry creator has no other entries, the text that is shown.', 'gravityview' ), + 'value' => __( 'This user has no other entries.', 'gravityview' ), + ); + + return $field_options; + } + +} + +new GravityView_Field_Other_Entries; diff --git a/templates/fields/other_entries.php b/templates/fields/other_entries.php new file mode 100644 index 0000000000..03e722e542 --- /dev/null +++ b/templates/fields/other_entries.php @@ -0,0 +1,48 @@ +getCurrentField(); + +$created_by = rgar( $field['entry'], 'created_by' ); + +// There was no logged in user who created this entry. +if( empty( $created_by ) ) { + return; +} + +// Generate the search parameters +$args = array( + 'id' => $gravityview_view->getViewId(), + 'page_size' => $gravityview_view->getCurrentFieldSetting('page_size'), + 'search_field' => 'created_by', + 'search_value' => $created_by, + 'search_operator' => 'is', +); + +// Get the entries for the search +$entries = GravityView_frontend::get_view_entries( $args, $field['form']['id'] ); + +// Don't show if no entries and the setting says so +if( empty( $entries['entries'] ) && $gravityview_view->getCurrentFieldSetting('no_entries_hide') ) { + return; +} + +// If there are search results, get the entry list object +$list = new GravityView_Entry_List( + $entries['entries'], + $gravityview_view->getPostId(), + $field['form'], + $gravityview_view->getCurrentFieldSetting('link_format'), + $gravityview_view->getCurrentFieldSetting('after_link'), + 'other_entries' // Context +); + +// Generate and echo the output +$list->output(); \ No newline at end of file From 4ed1fa55f4c6ef25910ca90c4c295022af2a314f Mon Sep 17 00:00:00 2001 From: Luis Godinho Date: Sun, 15 Mar 2015 19:12:34 +0000 Subject: [PATCH 18/32] ignore .idea/deployment.xml --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a7ab34b829..9469e5ea8e 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,7 @@ languages/gravityview-pt.po .idea/workspace.xml .idea/tasks.xml .idea/dictionaries +.idea/deployment.xml # Sensitive or high-churn files: .idea/dataSources.ids From 32bec785d4d79e781704ccd0710f07436284541b Mon Sep 17 00:00:00 2001 From: Luis Godinho Date: Mon, 16 Mar 2015 12:13:45 +0000 Subject: [PATCH 19/32] Fixed:Missing quick action links on the posts list --- includes/class-gravityview-admin-duplicate-view.php | 2 +- readme.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/includes/class-gravityview-admin-duplicate-view.php b/includes/class-gravityview-admin-duplicate-view.php index 5a4a7e4683..d56bc054c5 100644 --- a/includes/class-gravityview-admin-duplicate-view.php +++ b/includes/class-gravityview-admin-duplicate-view.php @@ -212,7 +212,7 @@ function make_duplicate_link_row( $actions, $post ) { // Only process on GravityView Views if( get_post_type( $post ) !== 'gravityview' ) { - return; + return $actions; } if ( $this->current_user_can_copy( $post ) ) { diff --git a/readme.txt b/readme.txt index b35df0d0ef..54720ce750 100644 --- a/readme.txt +++ b/readme.txt @@ -20,6 +20,9 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h == Changelog == += 1.7.2 = +* Fixed: Missing quick action links on the posts list. + = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From 868c36c2df2f4ca2f78d4e47f2380ae6427d362f Mon Sep 17 00:00:00 2001 From: Luis Godinho Date: Mon, 16 Mar 2015 20:42:45 +0000 Subject: [PATCH 20/32] Fixed Embedded DataTable Views with search_value * Fixed: Embedded DataTable Views with search_value not filtering correctly --- includes/class-data.php | 17 +++++++---------- includes/class-oembed.php | 2 +- readme.txt | 1 + 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/includes/class-data.php b/includes/class-data.php index 9df60bb9c7..7641ba77f9 100644 --- a/includes/class-data.php +++ b/includes/class-data.php @@ -19,7 +19,7 @@ private function __construct( $passed_post = NULL ) { if( !empty( $passed_post ) ) { - $id_or_id_array = self::maybe_get_view_id( $passed_post ); + $id_or_id_array = $this->maybe_get_view_id( $passed_post ); if( !empty( $id_or_id_array ) ) { $this->add_view( $id_or_id_array ); @@ -52,9 +52,7 @@ public function has_multiple_views() { * * @return int|null|array ID of the View. If there are multiple views in the content, array of IDs parsed. */ - static public function maybe_get_view_id( $passed_post ) { - - $self = self::getInstance(); + public function maybe_get_view_id( $passed_post ) { $ids = array(); @@ -77,7 +75,7 @@ static public function maybe_get_view_id( $passed_post ) { $ids[] = $post->ID; } else{ - $id = $self->parse_post_content( $post->post_content ); + $id = $this->parse_post_content( $post->post_content ); $ids = array_merge( $ids, (array)$id ); } @@ -88,11 +86,11 @@ static public function maybe_get_view_id( $passed_post ) { if ( is_string( $passed_post ) ) { - $id = $self->parse_post_content( $passed_post ); + $id = $this->parse_post_content( $passed_post ); $ids = array_merge( $ids, (array)$id ); } else { - $id = $self->get_id_from_atts( $passed_post ); + $id = $this->get_id_from_atts( $passed_post ); $ids[] = intval( $id ); } @@ -177,9 +175,8 @@ function add_view( $view_id, $atts = NULL ) { } // The view has been set already; returning stored view. - if ( ! empty( $this->views[ $view_id ] ) ) { + if ( !empty( $this->views[ $view_id ] ) ) { do_action('gravityview_log_debug', sprintf('GravityView_View_Data[add_view] Returning; View #%s already exists.', $view_id) ); - return $this->views[ $view_id ]; } @@ -433,7 +430,7 @@ public static function is_valid_embed_id( $post_id = '', $view_id = '', $empty_i } if( ! $message ) { - $view_ids_in_post = GravityView_View_Data::maybe_get_view_id( $post_id ); + $view_ids_in_post = GravityView_View_Data::getInstance()->maybe_get_view_id( $post_id ); // The post or page specified does not contain the shortcode. if ( false === in_array( $view_id, (array) $view_ids_in_post ) ) { diff --git a/includes/class-oembed.php b/includes/class-oembed.php index 429d538941..3677a2a03e 100644 --- a/includes/class-oembed.php +++ b/includes/class-oembed.php @@ -220,7 +220,7 @@ private function set_vars( $matches, $attr, $url, $rawattr ) { do_action('gravityview_log_debug', 'GravityView_oEmbed[render_handler] Embedding an entry inside a post or page', $matches ); - $this->view_id = GravityView_View_Data::maybe_get_view_id( $post_id ); + $this->view_id = GravityView_View_Data::getInstance()->maybe_get_view_id( $post_id ); } else { diff --git a/readme.txt b/readme.txt index 54720ce750..60bf22ac69 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,7 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h = 1.7.2 = * Fixed: Missing quick action links on the posts list. +* Fixed: Embedded DataTable Views with search_value not filtering correctly = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From d7fd972c390046d3f2f27128990b253c4edd58ef Mon Sep 17 00:00:00 2001 From: Luis Godinho Date: Wed, 18 Mar 2015 18:19:57 +0000 Subject: [PATCH 21/32] Fixed: Not possible to 'publish' new Views --- assets/js/admin-views.js | 6 +++--- assets/js/admin-views.min.js | 2 +- readme.txt | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/assets/js/admin-views.js b/assets/js/admin-views.js index 9826166eb2..444a2ed8ce 100644 --- a/assets/js/admin-views.js +++ b/assets/js/admin-views.js @@ -45,7 +45,7 @@ .on( 'click', 'a[href="#gv_start_fresh"]', vcfg.startFresh ) // when saving the View, try to create form before proceeding - .on( 'submit', '#post', vcfg.processFormSubmit ) + .on( 'click', '#publish, #save-post', vcfg.processFormSubmit ) // Hover overlay show/hide .on( 'click', ".gv-view-types-hover", vcfg.selectTemplateHover ) @@ -1228,7 +1228,7 @@ // make sure the "slow" browsers did append all the serialized data to the form setTimeout( function () { - $( e.target ).data( 'gv-valid', true ).submit(); + $( e.target ).data( 'gv-valid', true ).click(); }, 101 ); @@ -1272,7 +1272,7 @@ vcfg.gvSelectForm.find( "option:selected" ).removeAttr( "selected" ).end().append( response ); // Continue submitting the form, since we preventDefault() above - $( e.target ).submit(); + $( e.target ).click(); } else { diff --git a/assets/js/admin-views.min.js b/assets/js/admin-views.min.js index 410e2485cb..07b61132b1 100644 --- a/assets/js/admin-views.min.js +++ b/assets/js/admin-views.min.js @@ -1 +1 @@ -!function($){var viewConfiguration,viewGeneralSettings;viewConfiguration={startFreshStatus:!1,init:function(){var vcfg=viewConfiguration;vcfg.gvSelectForm=$("#gravityview_form_id"),vcfg.currentFormId=vcfg.gvSelectForm.val(),vcfg.toggleInitialVisibility(vcfg),$("body").on("change","#gravityview_form_id",vcfg.formChange).on("click",'a[href="#gv_start_fresh"]',vcfg.startFresh).on("submit","#post",vcfg.processFormSubmit).on("click",".gv-view-types-hover",vcfg.selectTemplateHover).on("click","a[rel*=external]",vcfg.openExternalLinks).on("click mouseup keyup",vcfg.closeTooltips).on("click",'a[href="#gv_switch_view"]',vcfg.switchView).on("click",'a[href="#gv_select_template"]',vcfg.selectTemplate).on("click",".ui-tooltip-content .gv-fields",vcfg.startAddField).on("click",".gv-shortcode input",vcfg.selectText).on("gravityview_form_change",vcfg.updateFormLinks).on("change",".gv-dialog-options input[name*=show_as_link]",vcfg.toggleShowAsEntry).on("click",".gv-field-controls a[href='#remove']",vcfg.removeField).on("click",".gv-field-controls a[href='#settings']",vcfg.openFieldSettings).on("dblclick",".gv-fields",vcfg.openFieldSettings)},closeTooltips:function(e){var activeTooltips=$("[data-tooltip='active']"),close=!1,return_false=!1;switch(e.type){case"keyup":27===e.keyCode&&(close=!0);break;case"mouseup":$(e.target).parents(".ui-dialog,.ui-tooltip").length||$(e.target).is(".ui-dialog,.ui-tooltip")?close=!1:activeTooltips.length>0&&(close=!0),$(e.target).parents(".close").length&&(close=!0);break;case"click":$(e.target).is(".gv-overlay")&&(close=!0,return_false=!0,$(e.target).remove())}return close&&(activeTooltips.tooltip("close"),$(".ui-dialog:visible").find(".ui-dialog-content").dialog("close"),return_false)?!1:void 0},toggleShowAsEntry:function(e){var parent=$(e.target).parents(".gv-fields"),icon=parent.find(".gv-field-controls .dashicons-admin-links");icon.toggleClass("hide-if-js",$(e.target).not(":checked"))},selectText:function(e){return e.preventDefault(),$(this).focus().select(),!1},toggleInitialVisibility:function(vcfg){0!==vcfg.gvSelectForm.length&&(""===vcfg.currentFormId?vcfg.hideView():$("#gravityview_directory_template").val().length>0?($("#gravityview_select_template").slideUp(150),vcfg.showViewConfig()):(vcfg.templateFilter("custom"),vcfg.showViewTypeMetabox()))},hideView:function(){var vcfg=viewConfiguration;vcfg.currentFormId="",$("#gravityview_view_config, #gravityview_select_template, #gravityview_sort_filter, .gv-form-links").hide()},updateFormLinks:function(){var vcfg=viewConfiguration;$(".gv-form-links a").each(function(){var new_url=$(this).attr("href").replace(/id=([0-9]+)/gm,"id="+vcfg.gvSelectForm.val());$(this).attr("href",new_url)})},toggleViewTypeMetabox:function(){var $templates=$("#gravityview_select_template");$templates.is(":visible")?($("a[href=#gv_switch_view]").text(function(){return $(this).attr("data-text-backup")}),$templates.slideUp(150)):($("a[href=#gv_switch_view]").attr("data-text-backup",function(){return $(this).text()}).text(gvGlobals.label_cancel),$templates.slideDown(150))},showViewTypeMetabox:function(){$("#gravityview_select_template").slideDown(150)},startFresh:function(e){e.preventDefault();var vcfg=viewConfiguration;vcfg.startFreshStatus=!0,""!==vcfg.currentFormId&&vcfg.gvSelectForm.length>0?vcfg.showDialog("#gravityview_form_id_dialog"):vcfg.startFreshContinue()},startFreshContinue:function(){var vcfg=viewConfiguration;$("#gravityview_form_id_start_fresh").val("1"),$("#gravityview_form_id").val(""),$("a[href=#gv_switch_view]").hide(),vcfg.templateFilter("preset"),vcfg.showViewTypeMetabox(),vcfg.hideViewConfig()},formChange:function(e){e.preventDefault();var vcfg=viewConfiguration;vcfg.startFreshStatus=!1,""!==vcfg.currentFormId&&vcfg.currentFormId!==$(this).val()?vcfg.showDialog("#gravityview_form_id_dialog"):vcfg.formChangeContinue()},formChangeContinue:function(){var vcfg=viewConfiguration;""===vcfg.gvSelectForm.val()?vcfg.hideView():($("body").trigger("gravityview_form_change").addClass("gv-form-changed"),vcfg.templateFilter("custom"),vcfg.showViewTypeMetabox(),vcfg.getAvailableFields(),vcfg.getSortableFields(),$("a[href=#gv_switch_view]").fadeOut(150))},showDialog:function(dialogSelector,buttons){var vcfg=viewConfiguration,thisDialog=$(dialogSelector),cancel_button={text:gvGlobals.label_cancel,click:function(){thisDialog.is("#gravityview_form_id_dialog")?(vcfg.startFreshStatus=!1,vcfg.gvSelectForm.val(vcfg.currentFormId)):thisDialog.is("#gravityview_switch_template_dialog")&&(vcfg.toggleViewTypeMetabox(),vcfg.showViewConfig()),thisDialog.dialog("close")}},continue_button={text:gvGlobals.label_continue,click:function(){thisDialog.is("#gravityview_form_id_dialog")?vcfg.startFreshStatus?vcfg.startFreshContinue():vcfg.formChangeContinue():thisDialog.is("#gravityview_switch_template_dialog")&&(vcfg.selectTemplateContinue(),vcfg.toggleViewTypeMetabox()),thisDialog.dialog("close")}},default_buttons=[cancel_button,continue_button];buttons=buttons||default_buttons,thisDialog.dialog({dialogClass:"wp-dialog gv-dialog",appendTo:thisDialog.parent(),draggable:!1,resizable:!1,width:function(){return $(window).width()>550?550:$(window).width()-10},open:function(){return $('
').prependTo("#wpwrap"),!0},close:function(e){e.preventDefault(),vcfg.setCustomLabel(thisDialog),$("#wpwrap > .gv-overlay").fadeOut("fast",function(){$(this).remove()})},closeOnEscape:!0,buttons:buttons})},setCustomLabel:function(dialog){var $custom_label=$("[name*=custom_label]",dialog),show_label=$("[name*=show_label]",dialog).is(":checked"),$label=dialog.parents(".gv-fields").find(".gv-field-label");$custom_label.length&&$custom_label.val().trim().length&&show_label?$label.text($custom_label.val().trim()):$label.html($label.attr("data-original-title"))},getSortableFields:function(context,id){var vcfg=viewConfiguration;$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields_form",nonce:gvGlobals.nonce};void 0!==context&&"preset"===context?data.template_id=id:data.form_id=vcfg.gvSelectForm.val(),$.post(ajaxurl,data,function(response){"false"!==response&&"0"!==response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)})},switchView:function(e){e.preventDefault(),e.stopImmediatePropagation();var vcfg=viewConfiguration;vcfg.templateFilter("custom"),vcfg.toggleViewTypeMetabox()},templateFilter:function(templateType){$(".gv-view-types-module").each(function(){$(this).attr("data-filter")===templateType?$(this).parent().show():$(this).parent().hide()})},selectTemplate:function(e){var vcfg=viewConfiguration;e.preventDefault(),e.stopImmediatePropagation(),vcfg.wantedTemplate=$(this);var currTemplateId=$("#gravityview_directory_template").val(),selectedTemplateId=vcfg.wantedTemplate.attr("data-templateid");""===currTemplateId?($("#gravityview_select_template").slideUp(150),vcfg.selectTemplateContinue()):currTemplateId!==selectedTemplateId?vcfg.showDialog("#gravityview_switch_template_dialog"):(vcfg.toggleViewTypeMetabox(),vcfg.showViewConfig())},selectTemplateContinue:function(){var vcfg=viewConfiguration,selectedTemplateId=vcfg.wantedTemplate.attr("data-templateid");$("#gravityview_directory_template").val(selectedTemplateId).change();var $parent=vcfg.wantedTemplate.parents(".gv-view-types-module");$parent.parents(".gv-grid").find(".gv-view-types-module").removeClass("gv-selected"),$parent.addClass("gv-selected"),$("#wpcontent,.gv-fields").addClass("gv-wait"),vcfg.startFreshStatus?(vcfg.getAvailableFields("preset",selectedTemplateId),vcfg.getPresetFields(selectedTemplateId),vcfg.getSortableFields("preset",selectedTemplateId)):(vcfg.updateActiveAreas(selectedTemplateId),$("a[href=#gv_switch_view]").fadeIn(150),vcfg.toggleViewTypeMetabox())},selectTemplateHover:function(e){e.preventDefault(),e.stopImmediatePropagation(),$(this).find('a[href="#gv_select_template"]').trigger("click")},openExternalLinks:function(){return window.open(this.href),!1},previewTemplate:function(e){e.preventDefault(),e.stopImmediatePropagation();var parent=$(event.currentTarget).parents(".gv-view-types-module");parent.find(".gv-template-preview").dialog({dialogClass:"wp-dialog gv-dialog",appendTo:$("#gravityview_select_template"),width:550,open:function(){$('
').prependTo("#wpwrap")},close:function(){$(this).dialog("option","appendTo",parent),$("#wpwrap > .gv-overlay").fadeOut("fast",function(){$(this).remove()})},closeOnEscape:!0,buttons:[{text:gvGlobals.label_close,click:function(){$(this).dialog("close")}}]})},updateActiveAreas:function(template){var vcfg=viewConfiguration;$("#directory-active-fields, #single-active-fields").children().remove();var data={action:"gv_get_active_areas",template_id:template,nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){if(response){var content=$.parseJSON(response);$("#directory-header-widgets").html(content.header),$("#directory-footer-widgets").html(content.footer),$("#directory-active-fields").append(content.directory),$("#single-active-fields").append(content.single),$("#wpcontent,.gv-fields").removeClass("gv-wait"),vcfg.showViewConfig()}})},getPresetFields:function(template){var vcfg=viewConfiguration;$("#directory-active-fields, #single-active-fields").children().remove();var data={action:"gv_get_preset_fields",template_id:template,nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){if(response){var content=$.parseJSON(response);$("#directory-header-widgets").html(content.header),$("#directory-footer-widgets").html(content.footer),$("#directory-active-fields").append(content.directory),$("#single-active-fields").append(content.single),$("#wpcontent,.gv-fields").removeClass("gv-wait"),vcfg.showViewConfig()}})},hideViewConfig:function(){$("#gravityview_view_config,#gravityview_sort_filter").slideUp(150),$(document).trigger("gv_admin_views_hideViewConfig")},showViewConfig:function(){$("#gravityview_view_config, #gravityview_sort_filter").slideDown(150),viewConfiguration.toggleDropMessage(),viewConfiguration.init_droppables(),viewConfiguration.init_tooltips(),$(document).trigger("gv_admin_views_showViewConfig")},init_tooltips:function(){$(".gv-add-field").tooltip({content:function(){var context=$(this).attr("data-context");switch($(this).attr("data-objecttype")){case"field":return $("#"+context+"-available-fields").html();case"widget":return $("#directory-available-widgets").html()}},close:function(){$(this).attr("data-tooltip",null)},open:function(){$(this).attr("data-tooltip","active").attr("data-tooltip-id",$(this).attr("aria-describedby"))},closeOnEscape:!0,disabled:!0,position:{my:"center bottom",at:"center top-12"},tooltipClass:"top"}).attr("title","").on("mouseout focusout",function(e){e.stopImmediatePropagation()}).click(function(e){$(this).attr("title",""),e.preventDefault(),$(this).tooltip("open")})},refreshGFtooltips:function(){$(".gf_tooltip").tooltip({show:500,hide:1e3,content:function(){return $(this).prop("title")}})},getAvailableFields:function(preset,templateid){var vcfg=viewConfiguration;$("#directory-available-fields, #single-available-fields, #edit-available-fields").find(".gv-fields").remove(),$("#directory-active-fields, #single-active-fields, #edit-active-fields").find(".gv-fields").remove(),vcfg.toggleDropMessage();var data={action:"gv_available_fields",nonce:gvGlobals.nonce,context:"directory"};void 0!==preset&&"preset"===preset?data.template_id=templateid:data.form_id=vcfg.gvSelectForm.val(),$.post(ajaxurl,data,function(response){response&&$("#directory-available-fields").append(response)}),data.context="single",$.post(ajaxurl,data,function(response){response&&$("#single-available-fields").append(response)}),data.context="edit",$.post(ajaxurl,data,function(response){response&&$("#edit-available-fields").append(response)})},startAddField:function(e){$(this).has(".field-id-all-fields").length?viewConfiguration.addAllFields($(this)):viewConfiguration.addField($(this),e)},addAllFields:function(clicked){clicked.siblings(".gv-fields").each(function(){$(this).trigger("click")}),$("a.gv-add-field[data-tooltip='active']").tooltip("close")},addField:function(clicked,e){e.preventDefault();var vcfg=viewConfiguration,newField=clicked.clone().hide(),areaId=clicked.parents(".ui-tooltip").attr("id"),templateId=$("#gravityview_directory_template").val(),tooltipId=clicked.parents(".ui-tooltip").attr("id"),addButton=$('a.gv-add-field[data-tooltip-id="'+tooltipId+'"]'),data={action:"gv_field_options",template:templateId,area:addButton.attr("data-areaid"),context:addButton.attr("data-context"),field_id:newField.attr("data-fieldid"),field_label:newField.find(".gv-field-label").attr("data-original-title"),field_type:addButton.attr("data-objecttype"),input_type:newField.attr("data-inputtype"),nonce:gvGlobals.nonce};$.ajax({type:"POST",url:ajaxurl,data:data,async:!0,beforeSend:function(){vcfg.disable_publish()},complete:function(){vcfg.enable_publish()}}).done(function(response){newField.append(response),$(".gv-dialog-options",newField).length>0&&$(".dashicons-admin-generic",newField).removeClass("hide-if-js"),$('a[data-tooltip-id="'+areaId+'"]').parents(".gv-droppable-area").find(".active-drop").append(newField).end().attr("data-tooltip-id",""),newField.fadeIn(100,function(){$(".all-merge-tags").remove(),"undefined"!=typeof form&&$("body").not(".gv-form-changed")&&(window.gfMergeTags=new gfMergeTagsObj(form))}),vcfg.refreshGFtooltips()}).fail(function(jqXHR){vcfg.enable_publish(),alert(gvGlobals.field_loaderror),console.log(jqXHR)}).always(function(){vcfg.toggleDropMessage()})},enable_publish:function(){$("#publishing-action #publish").prop("disabled",null).removeClass("button-primary-disabled")},disable_publish:function(){$("#publishing-action #publish").prop("disabled","disabled").addClass("button-primary-disabled")},init_droppables:function(){var vcfg=viewConfiguration;$("#directory-fields, #single-fields").find(".active-drop-widget").sortable({placeholder:"fields-placeholder",items:"> .gv-fields",distance:2,revert:75,connectWith:".active-drop-widget",receive:function(event,ui){var sender_area=ui.sender.attr("data-areaid"),receiver_area=$(this).attr("data-areaid");ui.item.find('[name^="widgets['+sender_area+']"]').each(function(){var name=$(this).attr("name");$(this).attr("name",name.replace(sender_area,receiver_area))}),vcfg.toggleDropMessage()}}),$("#directory-fields, #single-fields, #edit-fields").find(".active-drop-field").sortable({placeholder:"fields-placeholder",items:"> .gv-fields",distance:2,revert:75,connectWith:".active-drop-field",receive:function(event,ui){if(ui.item.find(".gv-dialog-options").length>0){var sender_area=ui.sender.attr("data-areaid"),receiver_area=$(this).attr("data-areaid");ui.item.find('[name^="fields['+sender_area+']"]').each(function(){var name=$(this).attr("name");$(this).attr("name",name.replace(sender_area,receiver_area))})}vcfg.toggleDropMessage()}})},toggleDropMessage:function(){$(".active-drop").each(function(){$(this).find(".gv-fields").length>0?$(this).find(".drop-message").hide():$(this).find(".drop-message").fadeIn(100)})},removeField:function(e){e.preventDefault();var vcfg=viewConfiguration,area=$(e.currentTarget).parents(".active-drop");if(e.altKey&&$(area).find(".gv-fields").length>1){var remove_all=window.confirm(gvGlobals.remove_all_fields);return void(remove_all&&($(area).find(".gv-fields").remove(),vcfg.toggleDropMessage()))}$(e.currentTarget).parents(".gv-fields").fadeOut("normal",function(){$(this).remove(),vcfg.toggleDropMessage()})},openFieldSettings:function(e){e.preventDefault();var parent,vcfg=viewConfiguration;parent=$(e.currentTarget).is(".gv-fields")?$(e.currentTarget):$(e.currentTarget).parents(".gv-fields"),vcfg.updateVisibilitySettings(e,!0),$("body").on("change",".gv-fields input:checkbox",vcfg.updateVisibilitySettings);var buttons=[{text:gvGlobals.label_close,click:function(){$(this).dialog("close")}}];vcfg.showDialog(parent.find(".gv-dialog-options"),buttons)},updateVisibilitySettings:function(e,first_run){var vcfg=viewConfiguration;first_run=first_run||!1;var $parent=$(e.currentTarget).is(".gv-fields")?$(e.currentTarget):$(e.currentTarget).parents(".gv-fields");vcfg.toggleVisibility($("input:checkbox[name*=show_label]",$parent),$("[name*=custom_label]",$parent),first_run),vcfg.toggleVisibility($("input:checkbox[name*=emailmailto]",$parent),$("[name*=emailsubject],[name*=emailbody]",$parent),first_run),vcfg.toggleVisibility($("input:checkbox[name*=link_to_source]",$parent),$("[name*=source_link_text]",$parent),first_run),$("input:checkbox",$parent).attr("disabled",null),$("input:checkbox[name*=show_as_link]",$parent).is(":checked")&&$("input:checkbox[name*=link_to_]",$parent).attr("disabled",!0),$("input:checkbox[name*=link_to_]:checked",$parent).length>0&&$("input:checkbox[name*=show_as_link]",$parent).attr("disabled",!0),vcfg.toggleVisibility($("input:checkbox[name*=only_loggedin]",$parent),$("[name*=only_loggedin_cap]",$parent),first_run)},toggleVisibility:function($checkbox,$toggled,first_run){var speed=first_run?0:"fast";$checkbox.is(":checked")?$toggled.parents(".gv-setting-container").fadeIn(speed):$toggled.parents(".gv-setting-container").fadeOut(speed)},processFormSubmit:function(e){var vcfg=viewConfiguration,templateId=$("#gravityview_directory_template").val();return vcfg.startFreshStatus?(vcfg.createPresetForm(e,templateId),!1):vcfg.startFreshStatus&&""!==templateId?!1:vcfg.serializeForm(e)},serializeForm:function(e){if($(e.target).data("gv-valid"))return!0;e.stopImmediatePropagation(),$(e.target).data("gv-valid",!1),$("#post input[name*=date_display]").val(function(){return $(this).val().replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0")});var $fields=$("#post :input[name^=fields]"),serialized_data=$fields.serialize();return $fields.remove(),$("#post").append($("",{name:"fields",value:serialized_data,type:"hidden"})),setTimeout(function(){$(e.target).data("gv-valid",!0).submit()},101),!1},createPresetForm:function(e,templateId){var vcfg=viewConfiguration;e.stopPropagation();var data={action:"gv_set_preset_form",template_id:templateId,nonce:gvGlobals.nonce};return $.ajax({type:"POST",url:ajaxurl,data:data,async:!1,success:function(response){"false"!==response&&"0"!==response?(vcfg.startFreshStatus=!1,vcfg.gvSelectForm.find("option:selected").removeAttr("selected").end().append(response),$(e.target).submit()):$("#post").before('

'+gvGlobals.label_publisherror+"

")}}),!1}},viewGeneralSettings={templateId:null,init:function(){$("#gravityview_directory_template").change(viewGeneralSettings.updateSettingsDisplay).trigger("change")},updateSettingsDisplay:function(){viewGeneralSettings.templateId=$(this).val(),$("tr[data-show-if]").each(viewGeneralSettings.toggleSetting)},toggleSetting:function(){var row=$(this),templates=row.attr("data-show-if");templates.length<1||(viewGeneralSettings.templateId.length>0&&templates.indexOf(viewGeneralSettings.templateId)>-1?row.show():(row.find("select, input").val("").prop("checked",!1),row.hide()))}},jQuery(document).ready(function($){$("#title-prompt-text").text(gvGlobals.label_viewname),viewGeneralSettings.init(),viewConfiguration.init(),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1});var cookie_key="gv-active-tab-"+$("#post_ID").val(),activate_tab=$.cookie(cookie_key);"undefined"===activate_tab&&(activate_tab=0),$("#gv-view-configuration-tabs").tabs({active:activate_tab,activate:function(event,ui){$.cookie(cookie_key,ui.newTab.index(),{path:gvGlobals.cookiepath})}}),$("#gravityview_template_settings .form-table tr:even, #gravityview_sort_filter .form-table tr:even").addClass("alternate"),$("#gravityview_sort_filter").insertAfter($("#gravityview_view_config"))})}(jQuery); \ No newline at end of file +!function($){var viewConfiguration,viewGeneralSettings;viewConfiguration={startFreshStatus:!1,init:function(){var vcfg=viewConfiguration;vcfg.gvSelectForm=$("#gravityview_form_id"),vcfg.currentFormId=vcfg.gvSelectForm.val(),vcfg.toggleInitialVisibility(vcfg),$("body").on("change","#gravityview_form_id",vcfg.formChange).on("click",'a[href="#gv_start_fresh"]',vcfg.startFresh).on("click","#publish, #save-post",vcfg.processFormSubmit).on("click",".gv-view-types-hover",vcfg.selectTemplateHover).on("click","a[rel*=external]",vcfg.openExternalLinks).on("click mouseup keyup",vcfg.closeTooltips).on("click",'a[href="#gv_switch_view"]',vcfg.switchView).on("click",'a[href="#gv_select_template"]',vcfg.selectTemplate).on("click",".ui-tooltip-content .gv-fields",vcfg.startAddField).on("click",".gv-shortcode input",vcfg.selectText).on("gravityview_form_change",vcfg.updateFormLinks).on("change",".gv-dialog-options input[name*=show_as_link]",vcfg.toggleShowAsEntry).on("click",".gv-field-controls a[href='#remove']",vcfg.removeField).on("click",".gv-field-controls a[href='#settings']",vcfg.openFieldSettings).on("dblclick",".gv-fields",vcfg.openFieldSettings)},closeTooltips:function(e){var activeTooltips=$("[data-tooltip='active']"),close=!1,return_false=!1;switch(e.type){case"keyup":27===e.keyCode&&(close=!0);break;case"mouseup":$(e.target).parents(".ui-dialog,.ui-tooltip").length||$(e.target).is(".ui-dialog,.ui-tooltip")?close=!1:activeTooltips.length>0&&(close=!0),$(e.target).parents(".close").length&&(close=!0);break;case"click":$(e.target).is(".gv-overlay")&&(close=!0,return_false=!0,$(e.target).remove())}return close&&(activeTooltips.tooltip("close"),$(".ui-dialog:visible").find(".ui-dialog-content").dialog("close"),return_false)?!1:void 0},toggleShowAsEntry:function(e){var parent=$(e.target).parents(".gv-fields"),icon=parent.find(".gv-field-controls .dashicons-admin-links");icon.toggleClass("hide-if-js",$(e.target).not(":checked"))},selectText:function(e){return e.preventDefault(),$(this).focus().select(),!1},toggleInitialVisibility:function(vcfg){0!==vcfg.gvSelectForm.length&&(""===vcfg.currentFormId?vcfg.hideView():$("#gravityview_directory_template").val().length>0?($("#gravityview_select_template").slideUp(150),vcfg.showViewConfig()):(vcfg.templateFilter("custom"),vcfg.showViewTypeMetabox()))},hideView:function(){var vcfg=viewConfiguration;vcfg.currentFormId="",$("#gravityview_view_config, #gravityview_select_template, #gravityview_sort_filter, .gv-form-links").hide()},updateFormLinks:function(){var vcfg=viewConfiguration;$(".gv-form-links a").each(function(){var new_url=$(this).attr("href").replace(/id=([0-9]+)/gm,"id="+vcfg.gvSelectForm.val());$(this).attr("href",new_url)})},toggleViewTypeMetabox:function(){var $templates=$("#gravityview_select_template");$templates.is(":visible")?($("a[href=#gv_switch_view]").text(function(){return $(this).attr("data-text-backup")}),$templates.slideUp(150)):($("a[href=#gv_switch_view]").attr("data-text-backup",function(){return $(this).text()}).text(gvGlobals.label_cancel),$templates.slideDown(150))},showViewTypeMetabox:function(){$("#gravityview_select_template").slideDown(150)},startFresh:function(e){e.preventDefault();var vcfg=viewConfiguration;vcfg.startFreshStatus=!0,""!==vcfg.currentFormId&&vcfg.gvSelectForm.length>0?vcfg.showDialog("#gravityview_form_id_dialog"):vcfg.startFreshContinue()},startFreshContinue:function(){var vcfg=viewConfiguration;$("#gravityview_form_id_start_fresh").val("1"),$("#gravityview_form_id").val(""),$("a[href=#gv_switch_view]").hide(),vcfg.templateFilter("preset"),vcfg.showViewTypeMetabox(),vcfg.hideViewConfig()},formChange:function(e){e.preventDefault();var vcfg=viewConfiguration;vcfg.startFreshStatus=!1,""!==vcfg.currentFormId&&vcfg.currentFormId!==$(this).val()?vcfg.showDialog("#gravityview_form_id_dialog"):vcfg.formChangeContinue()},formChangeContinue:function(){var vcfg=viewConfiguration;""===vcfg.gvSelectForm.val()?vcfg.hideView():($("body").trigger("gravityview_form_change").addClass("gv-form-changed"),vcfg.templateFilter("custom"),vcfg.showViewTypeMetabox(),vcfg.getAvailableFields(),vcfg.getSortableFields(),$("a[href=#gv_switch_view]").fadeOut(150))},showDialog:function(dialogSelector,buttons){var vcfg=viewConfiguration,thisDialog=$(dialogSelector),cancel_button={text:gvGlobals.label_cancel,click:function(){thisDialog.is("#gravityview_form_id_dialog")?(vcfg.startFreshStatus=!1,vcfg.gvSelectForm.val(vcfg.currentFormId)):thisDialog.is("#gravityview_switch_template_dialog")&&(vcfg.toggleViewTypeMetabox(),vcfg.showViewConfig()),thisDialog.dialog("close")}},continue_button={text:gvGlobals.label_continue,click:function(){thisDialog.is("#gravityview_form_id_dialog")?vcfg.startFreshStatus?vcfg.startFreshContinue():vcfg.formChangeContinue():thisDialog.is("#gravityview_switch_template_dialog")&&(vcfg.selectTemplateContinue(),vcfg.toggleViewTypeMetabox()),thisDialog.dialog("close")}},default_buttons=[cancel_button,continue_button];buttons=buttons||default_buttons,thisDialog.dialog({dialogClass:"wp-dialog gv-dialog",appendTo:thisDialog.parent(),draggable:!1,resizable:!1,width:function(){return $(window).width()>550?550:$(window).width()-10},open:function(){return $('
').prependTo("#wpwrap"),!0},close:function(e){e.preventDefault(),vcfg.setCustomLabel(thisDialog),$("#wpwrap > .gv-overlay").fadeOut("fast",function(){$(this).remove()})},closeOnEscape:!0,buttons:buttons})},setCustomLabel:function(dialog){var $custom_label=$("[name*=custom_label]",dialog),show_label=$("[name*=show_label]",dialog).is(":checked"),$label=dialog.parents(".gv-fields").find(".gv-field-label");$custom_label.length&&$custom_label.val().trim().length&&show_label?$label.text($custom_label.val().trim()):$label.html($label.attr("data-original-title"))},getSortableFields:function(context,id){var vcfg=viewConfiguration;$("#gravityview_sort_field").prop("disabled","disabled").empty().append("");var data={action:"gv_sortable_fields_form",nonce:gvGlobals.nonce};void 0!==context&&"preset"===context?data.template_id=id:data.form_id=vcfg.gvSelectForm.val(),$.post(ajaxurl,data,function(response){"false"!==response&&"0"!==response&&$("#gravityview_sort_field").empty().append(response).prop("disabled",null)})},switchView:function(e){e.preventDefault(),e.stopImmediatePropagation();var vcfg=viewConfiguration;vcfg.templateFilter("custom"),vcfg.toggleViewTypeMetabox()},templateFilter:function(templateType){$(".gv-view-types-module").each(function(){$(this).attr("data-filter")===templateType?$(this).parent().show():$(this).parent().hide()})},selectTemplate:function(e){var vcfg=viewConfiguration;e.preventDefault(),e.stopImmediatePropagation(),vcfg.wantedTemplate=$(this);var currTemplateId=$("#gravityview_directory_template").val(),selectedTemplateId=vcfg.wantedTemplate.attr("data-templateid");""===currTemplateId?($("#gravityview_select_template").slideUp(150),vcfg.selectTemplateContinue()):currTemplateId!==selectedTemplateId?vcfg.showDialog("#gravityview_switch_template_dialog"):(vcfg.toggleViewTypeMetabox(),vcfg.showViewConfig())},selectTemplateContinue:function(){var vcfg=viewConfiguration,selectedTemplateId=vcfg.wantedTemplate.attr("data-templateid");$("#gravityview_directory_template").val(selectedTemplateId).change();var $parent=vcfg.wantedTemplate.parents(".gv-view-types-module");$parent.parents(".gv-grid").find(".gv-view-types-module").removeClass("gv-selected"),$parent.addClass("gv-selected"),$("#wpcontent,.gv-fields").addClass("gv-wait"),vcfg.startFreshStatus?(vcfg.getAvailableFields("preset",selectedTemplateId),vcfg.getPresetFields(selectedTemplateId),vcfg.getSortableFields("preset",selectedTemplateId)):(vcfg.updateActiveAreas(selectedTemplateId),$("a[href=#gv_switch_view]").fadeIn(150),vcfg.toggleViewTypeMetabox())},selectTemplateHover:function(e){e.preventDefault(),e.stopImmediatePropagation(),$(this).find('a[href="#gv_select_template"]').trigger("click")},openExternalLinks:function(){return window.open(this.href),!1},previewTemplate:function(e){e.preventDefault(),e.stopImmediatePropagation();var parent=$(event.currentTarget).parents(".gv-view-types-module");parent.find(".gv-template-preview").dialog({dialogClass:"wp-dialog gv-dialog",appendTo:$("#gravityview_select_template"),width:550,open:function(){$('
').prependTo("#wpwrap")},close:function(){$(this).dialog("option","appendTo",parent),$("#wpwrap > .gv-overlay").fadeOut("fast",function(){$(this).remove()})},closeOnEscape:!0,buttons:[{text:gvGlobals.label_close,click:function(){$(this).dialog("close")}}]})},updateActiveAreas:function(template){var vcfg=viewConfiguration;$("#directory-active-fields, #single-active-fields").children().remove();var data={action:"gv_get_active_areas",template_id:template,nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){if(response){var content=$.parseJSON(response);$("#directory-header-widgets").html(content.header),$("#directory-footer-widgets").html(content.footer),$("#directory-active-fields").append(content.directory),$("#single-active-fields").append(content.single),$("#wpcontent,.gv-fields").removeClass("gv-wait"),vcfg.showViewConfig()}})},getPresetFields:function(template){var vcfg=viewConfiguration;$("#directory-active-fields, #single-active-fields").children().remove();var data={action:"gv_get_preset_fields",template_id:template,nonce:gvGlobals.nonce};$.post(ajaxurl,data,function(response){if(response){var content=$.parseJSON(response);$("#directory-header-widgets").html(content.header),$("#directory-footer-widgets").html(content.footer),$("#directory-active-fields").append(content.directory),$("#single-active-fields").append(content.single),$("#wpcontent,.gv-fields").removeClass("gv-wait"),vcfg.showViewConfig()}})},hideViewConfig:function(){$("#gravityview_view_config,#gravityview_sort_filter").slideUp(150),$(document).trigger("gv_admin_views_hideViewConfig")},showViewConfig:function(){$("#gravityview_view_config, #gravityview_sort_filter").slideDown(150),viewConfiguration.toggleDropMessage(),viewConfiguration.init_droppables(),viewConfiguration.init_tooltips(),$(document).trigger("gv_admin_views_showViewConfig")},init_tooltips:function(){$(".gv-add-field").tooltip({content:function(){var context=$(this).attr("data-context");switch($(this).attr("data-objecttype")){case"field":return $("#"+context+"-available-fields").html();case"widget":return $("#directory-available-widgets").html()}},close:function(){$(this).attr("data-tooltip",null)},open:function(){$(this).attr("data-tooltip","active").attr("data-tooltip-id",$(this).attr("aria-describedby"))},closeOnEscape:!0,disabled:!0,position:{my:"center bottom",at:"center top-12"},tooltipClass:"top"}).attr("title","").on("mouseout focusout",function(e){e.stopImmediatePropagation()}).click(function(e){$(this).attr("title",""),e.preventDefault(),$(this).tooltip("open")})},refreshGFtooltips:function(){$(".gf_tooltip").tooltip({show:500,hide:1e3,content:function(){return $(this).prop("title")}})},getAvailableFields:function(preset,templateid){var vcfg=viewConfiguration;$("#directory-available-fields, #single-available-fields, #edit-available-fields").find(".gv-fields").remove(),$("#directory-active-fields, #single-active-fields, #edit-active-fields").find(".gv-fields").remove(),vcfg.toggleDropMessage();var data={action:"gv_available_fields",nonce:gvGlobals.nonce,context:"directory"};void 0!==preset&&"preset"===preset?data.template_id=templateid:data.form_id=vcfg.gvSelectForm.val(),$.post(ajaxurl,data,function(response){response&&$("#directory-available-fields").append(response)}),data.context="single",$.post(ajaxurl,data,function(response){response&&$("#single-available-fields").append(response)}),data.context="edit",$.post(ajaxurl,data,function(response){response&&$("#edit-available-fields").append(response)})},startAddField:function(e){$(this).has(".field-id-all-fields").length?viewConfiguration.addAllFields($(this)):viewConfiguration.addField($(this),e)},addAllFields:function(clicked){clicked.siblings(".gv-fields").each(function(){$(this).trigger("click")}),$("a.gv-add-field[data-tooltip='active']").tooltip("close")},addField:function(clicked,e){e.preventDefault();var vcfg=viewConfiguration,newField=clicked.clone().hide(),areaId=clicked.parents(".ui-tooltip").attr("id"),templateId=$("#gravityview_directory_template").val(),tooltipId=clicked.parents(".ui-tooltip").attr("id"),addButton=$('a.gv-add-field[data-tooltip-id="'+tooltipId+'"]'),data={action:"gv_field_options",template:templateId,area:addButton.attr("data-areaid"),context:addButton.attr("data-context"),field_id:newField.attr("data-fieldid"),field_label:newField.find(".gv-field-label").attr("data-original-title"),field_type:addButton.attr("data-objecttype"),input_type:newField.attr("data-inputtype"),nonce:gvGlobals.nonce};$.ajax({type:"POST",url:ajaxurl,data:data,async:!0,beforeSend:function(){vcfg.disable_publish()},complete:function(){vcfg.enable_publish()}}).done(function(response){newField.append(response),$(".gv-dialog-options",newField).length>0&&$(".dashicons-admin-generic",newField).removeClass("hide-if-js"),$('a[data-tooltip-id="'+areaId+'"]').parents(".gv-droppable-area").find(".active-drop").append(newField).end().attr("data-tooltip-id",""),newField.fadeIn(100,function(){$(".all-merge-tags").remove(),"undefined"!=typeof form&&$("body").not(".gv-form-changed")&&(window.gfMergeTags=new gfMergeTagsObj(form))}),vcfg.refreshGFtooltips()}).fail(function(jqXHR){vcfg.enable_publish(),alert(gvGlobals.field_loaderror),console.log(jqXHR)}).always(function(){vcfg.toggleDropMessage()})},enable_publish:function(){$("#publishing-action #publish").prop("disabled",null).removeClass("button-primary-disabled")},disable_publish:function(){$("#publishing-action #publish").prop("disabled","disabled").addClass("button-primary-disabled")},init_droppables:function(){var vcfg=viewConfiguration;$("#directory-fields, #single-fields").find(".active-drop-widget").sortable({placeholder:"fields-placeholder",items:"> .gv-fields",distance:2,revert:75,connectWith:".active-drop-widget",receive:function(event,ui){var sender_area=ui.sender.attr("data-areaid"),receiver_area=$(this).attr("data-areaid");ui.item.find('[name^="widgets['+sender_area+']"]').each(function(){var name=$(this).attr("name");$(this).attr("name",name.replace(sender_area,receiver_area))}),vcfg.toggleDropMessage()}}),$("#directory-fields, #single-fields, #edit-fields").find(".active-drop-field").sortable({placeholder:"fields-placeholder",items:"> .gv-fields",distance:2,revert:75,connectWith:".active-drop-field",receive:function(event,ui){if(ui.item.find(".gv-dialog-options").length>0){var sender_area=ui.sender.attr("data-areaid"),receiver_area=$(this).attr("data-areaid");ui.item.find('[name^="fields['+sender_area+']"]').each(function(){var name=$(this).attr("name");$(this).attr("name",name.replace(sender_area,receiver_area))})}vcfg.toggleDropMessage()}})},toggleDropMessage:function(){$(".active-drop").each(function(){$(this).find(".gv-fields").length>0?$(this).find(".drop-message").hide():$(this).find(".drop-message").fadeIn(100)})},removeField:function(e){e.preventDefault();var vcfg=viewConfiguration,area=$(e.currentTarget).parents(".active-drop");if(e.altKey&&$(area).find(".gv-fields").length>1){var remove_all=window.confirm(gvGlobals.remove_all_fields);return void(remove_all&&($(area).find(".gv-fields").remove(),vcfg.toggleDropMessage()))}$(e.currentTarget).parents(".gv-fields").fadeOut("normal",function(){$(this).remove(),vcfg.toggleDropMessage()})},openFieldSettings:function(e){e.preventDefault();var parent,vcfg=viewConfiguration;parent=$(e.currentTarget).is(".gv-fields")?$(e.currentTarget):$(e.currentTarget).parents(".gv-fields"),vcfg.updateVisibilitySettings(e,!0),$("body").on("change",".gv-fields input:checkbox",vcfg.updateVisibilitySettings);var buttons=[{text:gvGlobals.label_close,click:function(){$(this).dialog("close")}}];vcfg.showDialog(parent.find(".gv-dialog-options"),buttons)},updateVisibilitySettings:function(e,first_run){var vcfg=viewConfiguration;first_run=first_run||!1;var $parent=$(e.currentTarget).is(".gv-fields")?$(e.currentTarget):$(e.currentTarget).parents(".gv-fields");vcfg.toggleVisibility($("input:checkbox[name*=show_label]",$parent),$("[name*=custom_label]",$parent),first_run),vcfg.toggleVisibility($("input:checkbox[name*=emailmailto]",$parent),$("[name*=emailsubject],[name*=emailbody]",$parent),first_run),vcfg.toggleVisibility($("input:checkbox[name*=link_to_source]",$parent),$("[name*=source_link_text]",$parent),first_run),$("input:checkbox",$parent).attr("disabled",null),$("input:checkbox[name*=show_as_link]",$parent).is(":checked")&&$("input:checkbox[name*=link_to_]",$parent).attr("disabled",!0),$("input:checkbox[name*=link_to_]:checked",$parent).length>0&&$("input:checkbox[name*=show_as_link]",$parent).attr("disabled",!0),vcfg.toggleVisibility($("input:checkbox[name*=only_loggedin]",$parent),$("[name*=only_loggedin_cap]",$parent),first_run)},toggleVisibility:function($checkbox,$toggled,first_run){var speed=first_run?0:"fast";$checkbox.is(":checked")?$toggled.parents(".gv-setting-container").fadeIn(speed):$toggled.parents(".gv-setting-container").fadeOut(speed)},processFormSubmit:function(e){var vcfg=viewConfiguration,templateId=$("#gravityview_directory_template").val();return vcfg.startFreshStatus?(vcfg.createPresetForm(e,templateId),!1):vcfg.startFreshStatus&&""!==templateId?!1:vcfg.serializeForm(e)},serializeForm:function(e){if($(e.target).data("gv-valid"))return!0;e.stopImmediatePropagation(),$(e.target).data("gv-valid",!1),$("#post input[name*=date_display]").val(function(){return $(this).val().replace(/[\\"']/g,"\\$&").replace(/\u0000/g,"\\0")});var $fields=$("#post :input[name^=fields]"),serialized_data=$fields.serialize();return $fields.remove(),$("#post").append($("",{name:"fields",value:serialized_data,type:"hidden"})),setTimeout(function(){$(e.target).data("gv-valid",!0).click()},101),!1},createPresetForm:function(e,templateId){var vcfg=viewConfiguration;e.stopPropagation();var data={action:"gv_set_preset_form",template_id:templateId,nonce:gvGlobals.nonce};return $.ajax({type:"POST",url:ajaxurl,data:data,async:!1,success:function(response){"false"!==response&&"0"!==response?(vcfg.startFreshStatus=!1,vcfg.gvSelectForm.find("option:selected").removeAttr("selected").end().append(response),$(e.target).click()):$("#post").before('

'+gvGlobals.label_publisherror+"

")}}),!1}},viewGeneralSettings={templateId:null,init:function(){$("#gravityview_directory_template").change(viewGeneralSettings.updateSettingsDisplay).trigger("change")},updateSettingsDisplay:function(){viewGeneralSettings.templateId=$(this).val(),$("tr[data-show-if]").each(viewGeneralSettings.toggleSetting)},toggleSetting:function(){var row=$(this),templates=row.attr("data-show-if");templates.length<1||(viewGeneralSettings.templateId.length>0&&templates.indexOf(viewGeneralSettings.templateId)>-1?row.show():(row.find("select, input").val("").prop("checked",!1),row.hide()))}},jQuery(document).ready(function($){$("#title-prompt-text").text(gvGlobals.label_viewname),viewGeneralSettings.init(),viewConfiguration.init(),$(".gv-datepicker").datepicker({dateFormat:"yy-mm-dd",constrainInput:!1});var cookie_key="gv-active-tab-"+$("#post_ID").val(),activate_tab=$.cookie(cookie_key);"undefined"===activate_tab&&(activate_tab=0),$("#gv-view-configuration-tabs").tabs({active:activate_tab,activate:function(event,ui){$.cookie(cookie_key,ui.newTab.index(),{path:gvGlobals.cookiepath})}}),$("#gravityview_template_settings .form-table tr:even, #gravityview_sort_filter .form-table tr:even").addClass("alternate"),$("#gravityview_sort_filter").insertAfter($("#gravityview_view_config"))})}(jQuery); \ No newline at end of file diff --git a/readme.txt b/readme.txt index 60bf22ac69..affee7f392 100644 --- a/readme.txt +++ b/readme.txt @@ -23,6 +23,7 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h = 1.7.2 = * Fixed: Missing quick action links on the posts list. * Fixed: Embedded DataTable Views with search_value not filtering correctly +* Fixed: Not possible to 'publish' new Views = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From 72e8cdb45d225a7d7d01bc9119c35cd5b8d3a585 Mon Sep 17 00:00:00 2001 From: Luis Godinho Date: Wed, 18 Mar 2015 20:51:02 +0000 Subject: [PATCH 22/32] fix quick edit action on views when no-conflict mode --- includes/class-admin.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/class-admin.php b/includes/class-admin.php index e70d8bfa41..20cf372c5f 100644 --- a/includes/class-admin.php +++ b/includes/class-admin.php @@ -212,6 +212,7 @@ function no_conflict_scripts() { 'puc-debug-bar-js', 'autosave', 'post', + 'inline-edit-post', 'utils', 'svg-painter', 'wp-auth-check', @@ -246,6 +247,7 @@ function no_conflict_scripts() { 'jquery-ui-accordion', 'redux-edd_license', 'redux-field-edd-js', + 'redux-field-media-js', // WP SEO 'wp-seo-metabox', From 18963b60c021d39fe77c16ed2aa6232f56ffc438 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 20:20:59 -0600 Subject: [PATCH 23/32] Fixed: Settings page not able to turn off No-Conflict mode (oh, the irony!) --- includes/class-admin.php | 9 ++++++--- includes/lib/edd-redux-extension | 2 +- readme.txt | 3 ++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/includes/class-admin.php b/includes/class-admin.php index e70d8bfa41..b4fe302220 100644 --- a/includes/class-admin.php +++ b/includes/class-admin.php @@ -245,7 +245,8 @@ function no_conflict_scripts() { 'wp-color-picker', 'jquery-ui-accordion', 'redux-edd_license', - 'redux-field-edd-js', + 'redux-field-edd_license-js', + 'redux-field-switch-js', // WP SEO 'wp-seo-metabox', @@ -307,6 +308,8 @@ function no_conflict_styles() { 'redux-elusive-icon', 'redux-elusive-icon-ie7', 'select2-css', + 'redux-fields-css', + 'redux-admin-css', 'qtip-css', 'nouislider-css', 'jquery-ui-css', @@ -314,7 +317,7 @@ function no_conflict_styles() { 'wp-color-picker', 'redux-field-edd-css', 'redux-field-info-css', - 'redux-edd_license', + 'redux-field-edd_license-css', // WP SEO 'wp-seo-metabox', @@ -349,7 +352,7 @@ private function remove_conflicts( &$wp_objects, $required_objects, $type = 'scr //reset queue $queue = array(); foreach( $wp_objects->queue as $object ) { - if( in_array( $object, $required_objects ) ) { + if( in_array( $object, $required_objects ) || preg_match('/gravityview|redux/ism', $object ) ) { $queue[] = $object; } } diff --git a/includes/lib/edd-redux-extension b/includes/lib/edd-redux-extension index d62828df5e..9baf5a1fa0 160000 --- a/includes/lib/edd-redux-extension +++ b/includes/lib/edd-redux-extension @@ -1 +1 @@ -Subproject commit d62828df5e18dfdf5307f760f2fe0794c23498da +Subproject commit 9baf5a1fa0b78905a86f361bf639a5803cc0d958 diff --git a/readme.txt b/readme.txt index affee7f392..bf1e9a3a00 100644 --- a/readme.txt +++ b/readme.txt @@ -23,7 +23,8 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h = 1.7.2 = * Fixed: Missing quick action links on the posts list. * Fixed: Embedded DataTable Views with search_value not filtering correctly -* Fixed: Not possible to 'publish' new Views +* Fixed: Not possible to change View status to 'Publish' +* Fixed: Settings page not able to turn off No-Conflict mode (oh, the irony!) = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From b45edd3fc6f9c7bcb57a52b9991e5c618ebda55f Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 20:21:42 -0600 Subject: [PATCH 24/32] Different SASS processing Get rid of trailing `;` --- assets/css/admin-entries-list.css | 2 +- assets/css/admin-global.css | 2 +- assets/css/admin-post-edit.css | 2 +- assets/css/admin-views.css | 2 +- assets/css/admin-widgets-php.css | 2 +- assets/css/font.css | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/assets/css/admin-entries-list.css b/assets/css/admin-entries-list.css index 487dd6211c..5933cd6d22 100644 --- a/assets/css/admin-entries-list.css +++ b/assets/css/admin-entries-list.css @@ -1 +1 @@ -.gv-approve-column{text-align:center !important;}.widefat tr th.gv-approve-column{padding-top:6px;}th.gv-approve-column a:before{padding:0;margin:0;content:"a";display:inline-block;-webkit-font-smoothing:antialiased;font:normal 22px/1 'gravityview';vertical-align:top;color:#555;}.toggleApproved{padding:0;margin:0;display:inline-block;}.loading{cursor:wait;}.toggleApproved:before{padding:0;margin:0;content:"\f158";color:#940303;display:inline-block;-webkit-font-smoothing:antialiased;font:normal 20px/1 'dashicons';vertical-align:top;}.toggleApproved.entry_approved:before{content:"\f147";color:#00ac15;font-size:26px;text-indent:-4px;} \ No newline at end of file +.gv-approve-column{text-align:center !important}.widefat tr th.gv-approve-column{padding-top:6px}th.gv-approve-column a:before{padding:0;margin:0;content:"a";display:inline-block;-webkit-font-smoothing:antialiased;font:normal 22px/1 'gravityview';vertical-align:top;color:#555}.toggleApproved{padding:0;margin:0;display:inline-block}.loading{cursor:wait}.toggleApproved:before{padding:0;margin:0;content:"\f158";color:#940303;display:inline-block;-webkit-font-smoothing:antialiased;font:normal 20px/1 'dashicons';vertical-align:top}.toggleApproved.entry_approved:before{content:"\f147";color:#00ac15;font-size:26px;text-indent:-4px} \ No newline at end of file diff --git a/assets/css/admin-global.css b/assets/css/admin-global.css index 9e355bd517..cc1296083d 100644 --- a/assets/css/admin-global.css +++ b/assets/css/admin-global.css @@ -1 +1 @@ -@font-face{font-family:"gravityview";src:url("../fonts/gravityview.eot");src:url("../fonts/gravityview.eot?#iefix") format("embedded-opentype"),url("../fonts/gravityview.woff") format("woff"),url("../fonts/gravityview.ttf") format("truetype"),url("../fonts/gravityview.svg#gravityview") format("svg");font-weight:normal;font-style:normal;}a.icon{text-decoration:none;}[data-icon]:before,#adminmenu .menu-icon-gravityview div.wp-menu-image:before,#available-widgets [class*=gv_recent_entries] .widget-title:before,#available-widgets [class*=gravityview_search] .widget-title:before{font-family:"gravityview" !important;content:attr(data-icon);font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}[class^="gv-icon-"]:before,[class*=" gv-icon-"]:before{font-family:"gravityview" !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.gv-icon-astronaut-head:before,#adminmenu .menu-icon-gravityview div.wp-menu-image:before,#available-widgets [class*=gv_recent_entries] .widget-title:before,#available-widgets [class*=gravityview_search] .widget-title:before{content:"a";}.gv-icon-astronaut:before{content:"b";}.gv-icon-datatables-icon:before{content:"c";}.gv-icon-caret-up-down:before{content:"d";}.gv-icon-minus-square:before{content:"f";}.gv-icon-plus-square:before{content:"g";}.gv-icon-level-down:before{content:"e";}.gv-icon-sort-asc:before{content:"h";}.gv-icon-sort-desc:before{content:"i";}.wp-editor-tools #add_gravityview{width:auto;}#gf_form_toolbar .gv_connected_forms .gv-icon{font-size:19px;margin-top:-0.5em;line-height:0.5em;display:inline-block;}#gf_form_toolbar .gv_connected_forms .hidden{display:none !important;}#gf_form_toolbar .gv_connected_forms .gf_submenu{min-width:150px;max-width:100%;}#gf_form_toolbar .gv_connected_forms li a{padding:0.5em 0.75em !important;display:block;width:auto;}.post-type-gravityview .changelog ul{list-style-type:square;}.post-type-gravityview .changelog ul ul{list-style:circle;margin:0.5em 0 0.5em 1.3em;} \ No newline at end of file +@font-face{font-family:"gravityview";src:url("../fonts/gravityview.eot");src:url("../fonts/gravityview.eot?#iefix") format("embedded-opentype"),url("../fonts/gravityview.woff") format("woff"),url("../fonts/gravityview.ttf") format("truetype"),url("../fonts/gravityview.svg#gravityview") format("svg");font-weight:normal;font-style:normal;}a.icon{text-decoration:none}[data-icon]:before,#adminmenu .menu-icon-gravityview div.wp-menu-image:before,#available-widgets [class*=gv_recent_entries] .widget-title:before,#available-widgets [class*=gravityview_search] .widget-title:before{font-family:"gravityview" !important;content:attr(data-icon);font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^="gv-icon-"]:before,[class*=" gv-icon-"]:before{font-family:"gravityview" !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gv-icon-astronaut-head:before,#adminmenu .menu-icon-gravityview div.wp-menu-image:before,#available-widgets [class*=gv_recent_entries] .widget-title:before,#available-widgets [class*=gravityview_search] .widget-title:before{content:"a"}.gv-icon-astronaut:before{content:"b"}.gv-icon-datatables-icon:before{content:"c"}.gv-icon-caret-up-down:before{content:"d"}.gv-icon-minus-square:before{content:"f"}.gv-icon-plus-square:before{content:"g"}.gv-icon-level-down:before{content:"e"}.gv-icon-sort-asc:before{content:"h"}.gv-icon-sort-desc:before{content:"i"}.wp-editor-tools #add_gravityview{width:auto}#gf_form_toolbar .gv_connected_forms .gv-icon{font-size:19px;margin-top:-.5em;line-height:0.5em;display:inline-block}#gf_form_toolbar .gv_connected_forms .hidden{display:none !important}#gf_form_toolbar .gv_connected_forms .gf_submenu{min-width:150px;max-width:100%}#gf_form_toolbar .gv_connected_forms li a{padding:.5em .75em !important;display:block;width:auto}.post-type-gravityview .changelog ul{list-style-type:square}.post-type-gravityview .changelog ul ul{list-style:circle;margin:.5em 0 .5em 1.3em} \ No newline at end of file diff --git a/assets/css/admin-post-edit.css b/assets/css/admin-post-edit.css index 6d86ef0c06..d1336b842a 100644 --- a/assets/css/admin-post-edit.css +++ b/assets/css/admin-post-edit.css @@ -1 +1 @@ -#select_gravityview_view{overflow-x:hidden;overflow-y:auto;display:none;}#select_gravityview_view_form table{margin-top:20px;}#select_gravityview_view_form table tr td{width:50%;}#select_gravityview_view_form table caption{text-align:left;font-size:16px;font-weight:bold;}#select_gravityview_view_form table #gravityview_sort_field{max-width:250px;}.gv_button_icon{background:url('../images/gravity-view-btn.png') no-repeat top left;display:inline-block;height:20px;margin:0 2px 0 0;vertical-align:text-bottom;width:20px;}.gv-icon-astronaut-head:before{display:inline-block;font-size:16px;margin:0 2px 1px 0;vertical-align:text-bottom;}.wp-admin .ui-tooltip{z-index:100400;background:#ededed;} \ No newline at end of file +#select_gravityview_view{overflow-x:hidden;overflow-y:auto;display:none}#select_gravityview_view_form table{margin-top:20px}#select_gravityview_view_form table tr td{width:50%}#select_gravityview_view_form table caption{text-align:left;font-size:16px;font-weight:bold}#select_gravityview_view_form table #gravityview_sort_field{max-width:250px}.gv_button_icon{background:url('../images/gravity-view-btn.png') no-repeat top left;display:inline-block;height:20px;margin:0 2px 0 0;vertical-align:text-bottom;width:20px}.gv-icon-astronaut-head:before{display:inline-block;font-size:16px;margin:0 2px 1px 0;vertical-align:text-bottom}.wp-admin .ui-tooltip{z-index:100400;background:#ededed} \ No newline at end of file diff --git a/assets/css/admin-views.css b/assets/css/admin-views.css index 69483b4391..e7662efcc3 100644 --- a/assets/css/admin-views.css +++ b/assets/css/admin-views.css @@ -1 +1 @@ -.widgets-php .gv-overlay{display:none;}#gv-widget-search-settings-link{display:none;text-align:center;font-size:110%;}#gv-widget-search-settings-link .dashicons{margin-right:5px;line-height:20px !important;height:20px !important;font-size:20px !important;}#gv-widget-search-settings-link a{text-decoration:none;text-align:center;}.merge-tag-support{max-width:95%;}.all-merge-tags{position:relative;display:-moz-inline-stack;display:inline-block;zoom:1;}.all-merge-tags.textarea{position:absolute;margin-top:1px;}.all-merge-tags a.open-list{text-indent:-999em;width:16px;height:16px;background:url(images/icon-drop-list.png);background-repeat:no-repeat;cursor:pointer;margin-left:5px;display:-moz-inline-stack;display:inline-block;zoom:1;}.all-merge-tags a.open-list:focus{outline:0 !important;}ul#gf_merge_tag_list{padding:0;max-height:200px;min-width:200px;overflow:auto;position:absolute;background-color:#F8F8F8;border:1px solid #CCC;z-index:999;text-indent:0;-moz-box-shadow:0 8px 6px -6px rgba(68, 68, 68, 0.4);-webkit-box-shadow:0 8px 6px -6px rgba(68, 68, 68, 0.4);box-shadow:0 8px 6px -6px rgba(68, 68, 68, 0.4);}ul#gf_merge_tag_list li:nth-child(even){background-color:#EEE;}.right ul#gf_merge_tag_list{right:0;}ul#gf_merge_tag_list li{margin:0;line-height:1.4em;padding:0 !important;border-bottom:1px dotted #ccc;}ul#gf_merge_tag_list li:last-child{border-bottom:none;}ul#gf_merge_tag_list li.group-header{font-weight:bold;padding:5px !important;}ul#gf_merge_tag_list li.group-header:hover{background-color:transparent;}ul#gf_merge_tag_list a{display:block;padding:5px;cursor:pointer;}ul#gf_merge_tag_list a:hover{background-color:#EEE;}.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px;}#wp-gform_notification_message-wrap{margin-right:12px;}body .ui-tooltip{padding:8px;position:absolute;width:400px;max-width:100%;z-index:999999 !important;background:#eee;border:4px solid #999;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-o-box-shadow:0 0 5px #aaa;-moz-box-shadow:0 0 5px #aaa;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;}body .ui-tooltip br{display:none;}* html .ui-tooltip{background-image:none;}.ui-tooltip-content{padding:0 10px;max-height:325px;overflow-y:auto;}.ui-tooltip-content:after{content:"";display:table;clear:both;}.ui-tooltip-content .close{position:absolute;padding:5px;top:-25px;left:-25px;cursor:pointer;}.ui-tooltip-content .close i{font-size:25px;color:#555;}.ui-tooltip-content .close i:hover,.ui-tooltip-content .close i:active{color:#000;}.ui-tooltip-content .gv-field-controls{display:none;}.ui-tooltip-content .gv-fields{cursor:pointer;padding:0.5em 0.75em;}.ui-tooltip-content .gv-fields.gv-child-field{width:95%;margin-left:5%;}.ui-tooltip-content .gv-fields h5{float:none;width:100%;}.top .ui-tooltip-content::after{bottom:-14px;left:48%;border-color:#999 transparent;border-width:10px 10px 0;}.ui-tooltip .gv-fields .gv-field-info span.gv-sublabel:after,.ui-tooltip .gv-fields .gv-field-info span:last-child:after,.gv-dialog-options:after,.gv-dialog-options .gv-setting-container:after{content:"";display:table;clear:both;}.gv-grid{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:2em;}.gv-grid:before,.gv-grid:after{content:" ";display:table;}.gv-grid:after{clear:both;}.gv-grid-pad{padding:1em 0 0 1em;}.gv-grid-pad>[class*='gv-grid-col-']{padding-right:1em;}.gv-grid-border{border:1px solid #999;}[class*='gv-grid-col-']{float:left;padding-right:1em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-grid-col-1-3{width:33.33%;}.gv-grid-col-1-4{width:25%;}.gv-grid-col-1-2{width:50%;}.gv-grid-col-1-8{width:12.5%;}.gv-grid-col-2-3{width:66.66%;}.gv-grid-col-1-1{width:100%;}.gv-grid-col-1-1+.gv-grid-col-1-3+.gv-grid-col-2-3+.gv-grid-col-1-2,.gv-grid-col-1-1+.gv-grid-col-2-3+.gv-grid-col-1-3+.gv-grid-col-1-2{clear:left;}.gv-section:before,.gv-section:after{content:" ";display:table;}.gv-section:after{clear:both;}.gv-section h4{font-size:14px;font-weight:bold;}.gv-section h4 span{font-size:14px;float:right;color:#999;font-weight:normal;}.gv-view-types-module{padding:1em;margin-bottom:1em;background:#eee;position:relative;border:2px solid transparent;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-view-types-module:hover .gv-view-types-hover{display:block;}.gv-view-types-module img{display:block;width:100%;height:auto;margin:0;padding:0;}.gv-view-types-module h5{white-space:nowrap;margin:0.5em 0;padding:0;font-size:18px;}.gv-view-types-module .description{margin:0;padding:0;height:3em;overflow:hidden;}.gv-view-types-module.gv-selected{border:2px solid #1e8cbe;}.gv-view-types-hover{display:none;background:rgba(0, 0, 0, 0.6);position:absolute;top:0;left:0;right:0;height:100%;}.gv-view-types-hover .gv-site-preview{color:#fff;text-decoration:none;}.gv-view-types-hover .dashicons{font-size:24px;width:24px;height:24px;position:absolute;top:5px;right:5px;opacity:0.5;}.gv-view-types-hover .dashicons:hover{opacity:1;}.gv-view-types-hover>div{padding-top:31%;margin-top:-15px;}.gv-view-types-hover>div p{margin:0.5em 0 1.5em;padding:0;text-align:center;}.gv-view-types-hover>div p a{display:inline-block;width:60%;}.button-primary.button-buy-now{background:#2ecc37;border-color:#00a213;-webkit-box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.5),0 1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.5),0 1px 0 rgba(0, 0, 0, 0.15);}.button-primary.button-buy-now.focus,.button-primary.button-buy-now:focus,.button-primary.button-buy-now.hover,.button-primary.button-buy-now:hover{border-color:#00a213;background:#1ebe41;-webkit-box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.6);box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.6);}.button-primary.button-buy-now.focus,.button-primary.button-buy-now:focus{border-color:#0e5025;-webkit-box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.6),1px 1px 2px rgba(0, 0, 0, 0.4);box-shadow:inset 0 1px 0 rgba(120, 230, 129, 0.6),1px 1px 2px rgba(0, 0, 0, 0.4);}.button-primary.button-buy-now.active,.button-primary.button-buy-now.active:hover,.button-primary.button-buy-now.active:focus,.button-primary.button-buy-now:active{border-color:#00842d;background:#1ebe41;}#gravityview_select_form .handlediv{display:none;}.gv-form-links{color:#ddd;font-weight:normal;padding:0 0 0 10px;}.gv-form-links .row-actions{visibility:visible;padding:0;}.gv-form-links .gv-form-title{display:none;}#gv_switch_view_button{display:inline-block;}#gravityview_select_template{display:none;}#gravityview_select_template .inside{max-height:450px;overflow-x:auto;}#gravityview_select_template .gv-grid-col-1-3{max-width:250px;min-width:200px;}.gv-template-preview{display:none;width:90%;}#gravityview_template_settings th,#gravityview_sort_filter th{white-space:nowrap;font-weight:normal;max-width:200px;width:auto;margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle;}#gravityview_sort_filter,#gravityview_view_config{display:none;}.gv-wait{cursor:wait;}.ui-tabs{position:relative;padding:0.1em;zoom:1;margin-top:1em;}.ui-tabs .ui-front{z-index:10001;}.ui-tabs .ui-tabs-nav{margin:0;padding:0.1em 0.1em 0;-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:0;}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 0.2em 1px 0;border-bottom:0;padding:0;white-space:nowrap;outline:none;}.ui-tabs .ui-tabs-nav li .nav-tab{float:left;padding:0.5em 1em;text-decoration:none;font-size:14px;}.ui-tabs .ui-tabs-nav li .nav-tab:link,.ui-tabs .ui-tabs-nav li .nav-tab:visited,.ui-tabs .ui-tabs-nav li .nav-tab:hover,.ui-tabs .ui-tabs-nav li .nav-tab:active,.ui-tabs .ui-tabs-nav li .nav-tab:focus{outline:none;}.ui-tabs .ui-tabs-nav li .dashicons{color:#aaa;}.ui-tabs .ui-tabs-nav li.ui-state-active a,.ui-tabs .ui-tabs-nav li.ui-state-active.ui-state-hover a{background-color:#fff;border-bottom:1px solid #fff;}.ui-tabs .ui-tabs-nav li.ui-state-active .dashicons,.ui-tabs .ui-tabs-nav li.ui-state-active.ui-state-hover .dashicons{color:#666;}.ui-tabs .ui-tabs-nav li.ui-state-hover .dashicons{color:#999;}.ui-tabs .ui-tabs-panel{display:block;padding:1em;background:#fff;border:1px solid #ddd;}.ui-tabs .ui-tabs-hide{display:none !important;}.gv-dialog{z-index:10001;}.gv-overlay{cursor:pointer;position:fixed;z-index:10000;background:transparent;background:rgba(225, 225, 225, 0.4);width:100%;height:100%;overflow:hidden;}hr{border:0;height:0;border-bottom:1px solid #ddd;margin:2em 0 2em 0;}.gv-droppable-area{border:1px solid #ccc;margin-bottom:1em;}.gv-droppable-area .gv-droppable-area-action{background:#eee;padding:0.5em;}.gv-droppable-area .gv-droppable-area-action:before,.gv-droppable-area .gv-droppable-area-action:after{content:" ";display:table;}.gv-droppable-area .gv-droppable-area-action:after{clear:both;}.gv-droppable-area .gv-droppable-area-title{margin:0;padding:0;}.gv-droppable-area .gv-droppable-area-subtitle{margin:0.25em 0 0 0;padding:0;font-size:12px;color:#999;}.gv-droppable-area .button-secondary{float:right;}.active-drop{padding:3px 7px;min-height:44px;position:relative;}.active-drop .drop-message{color:#bbb;margin:0;display:block;text-align:center;width:90%;padding:0 5%;z-index:1;min-height:40px;font-size:13px;position:absolute;top:50%;margin-top:-8px;line-height:16px;}.gv-grid-col-1-2 .drop-message{padding-top:0;padding-bottom:0;}.fields-placeholder{margin:5px 2px;height:32px;border:1px dashed #ccc;}.gv-fields{cursor:move;border:1px solid #ddd;background:#f7f7f7;overflow:hidden;padding:0.5em 0.75em;margin:5px 0;width:100%;z-index:100;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-fields h5{float:left;width:100%;font-weight:600;font-size:14px;margin:0;padding:0 0 0 0.25em;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-fields h5 small{color:#777;font-weight:600;}.gv-fields span.gv-field-controls{padding-left:0.33em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-fields:hover{background:#fefefe;}.gv-fields:hover .gv-field-controls .dashicons{color:#136cb9;}.gv-fields:hover h5 small,.gv-fields:hover .gv-field-info{color:#666;}.gv-fields .gv-field-controls .dashicons{width:24px;font-size:18px;line-height:20px;}.gv-fields .gv-field-controls .dashicons:hover,.gv-fields .gv-field-controls .dashicons:active{color:#2ea2cc;}.gv-fields .gv-field-controls .dashicons.dashicons-dismiss{float:right;color:#999;}.gv-fields .gv-field-controls .dashicons.dashicons-dismiss:hover,.gv-fields .gv-field-controls .dashicons.dashicons-dismiss:active{color:#d03a3a;}.gv-fields .gv-field-controls .dashicons.dashicons-admin-links{color:#aaa;width:20px;font-size:16px;line-height:20px;cursor:default;}.gv-fields .gv-field-info{display:none;}.ui-tooltip .gv-fields .gv-field-info{display:block;font-weight:normal;color:#999;text-shadow:none;}.ui-tooltip .gv-fields .gv-field-info span:after{content:", ";}.ui-dialog-content,.ui-dialog{cursor:default;}.post-type-gravityview .ui-dialog-content{overflow:inherit;padding:0;}.ui-draggable-dragging{max-width:400px !important;}#directory-available-fields .gv-fields h5,#directory-available-widgets .gv-fields h5,#single-available-fields .gv-fields h5{padding:0 !important;}#directory-available-fields .gv-fields span.gv-field-controls,#directory-available-widgets .gv-fields span.gv-field-controls,#single-available-fields .gv-fields span.gv-field-controls{display:none !important;}.gv-sublabel{font-size:0.9em;display:block;}.ui-dialog-titlebar{min-height:1.25em;line-height:1.25;padding:10px;height:auto;}.gv-dialog-options{display:none;width:90%;padding:10px 0 !important;}.gv-dialog-options.gv-dialog-warning p{font-size:1.1em;}.gv-dialog-options.gv-dialog-warning .dashicons{font-size:70px;width:70px;height:70px;line-height:0.8;float:right;text-align:right;color:#ddd;}.gv-dialog-options p{margin:0 !important;padding:1.5em !important;}.gv-dialog-options .gv-setting-container{margin:0;padding:0.4em 15px 0.8em;display:block;font-size:1.1em;clear:left;}.gv-dialog-options .gv-setting-container:last-child{padding-bottom:0.5em;}.gv-dialog-options .gv-setting-container label{margin:0;font-weight:normal;display:inline-block;padding-right:0.75em;}.gv-dialog-options .gv-setting-container .howto{margin:0 0 0.25em;}.gv-dialog-options input[type="text"]{display:block;display:inline-block;clear:left;}.gv-dialog-options table,.gv-dialog-options table select{width:95%;margin:0 auto;}.gv-widget-search-fields table,.gv-dialog-options table{padding-bottom:15px;}.gv-widget-search-fields table td,.gv-widget-search-fields table th,.gv-dialog-options table td,.gv-dialog-options table th{text-align:left;padding:10px 5px;}.gv-widget-search-fields table .no-search-fields td,.gv-dialog-options table .no-search-fields td{text-align:center;font-size:15px;padding:15px 0;}.gv-widget-search-fields table .cell-sort,.gv-dialog-options table .cell-sort{cursor:ns-resize;}.gv-widget-search-fields table .cell-sort.no-sort,.gv-dialog-options table .cell-sort.no-sort{cursor:default;}.gv-widget-search-fields table .gv-search-fields,.gv-widget-search-fields table .gv-search-inputs,.gv-dialog-options table .gv-search-fields,.gv-dialog-options table .gv-search-inputs{width:100%;}.gv-widget-search-fields table .cell-sort a,.gv-widget-search-fields table .cell-add-remove a,.gv-dialog-options table .cell-sort a,.gv-dialog-options table .cell-add-remove a{font-size:18px;}.gv-widget-search-fields table .cell-sort a.dashicons,.gv-widget-search-fields table .cell-add-remove a.dashicons,.gv-dialog-options table .cell-sort a.dashicons,.gv-dialog-options table .cell-add-remove a.dashicons{opacity:0.8;}.gv-widget-search-fields table .cell-sort a.dashicons:hover,.gv-widget-search-fields table .cell-add-remove a.dashicons:hover,.gv-dialog-options table .cell-sort a.dashicons:hover,.gv-dialog-options table .cell-add-remove a.dashicons:hover{opacity:1;}.gv-widget-search-fields table .cell-sort a.dashicons-plus-alt,.gv-widget-search-fields table .cell-add-remove a.dashicons-plus-alt,.gv-dialog-options table .cell-sort a.dashicons-plus-alt,.gv-dialog-options table .cell-add-remove a.dashicons-plus-alt{color:green;}.gv-widget-search-fields table .cell-sort a.dashicons-dismiss,.gv-widget-search-fields table .cell-add-remove a.dashicons-dismiss,.gv-dialog-options table .cell-sort a.dashicons-dismiss,.gv-dialog-options table .cell-add-remove a.dashicons-dismiss{color:#d03a3a;}.gv-widget-search-fields table .cell-sort,.gv-dialog-options table .cell-sort{width:24px;}.gv-widget-search-fields table .cell-add-remove,.gv-dialog-options table .cell-add-remove{width:50px;}.post-type-gravityview input.merge-tag-support,.widgets-php input.merge-tag-support{width:90%;}.post-type-gravityview #gravityview_sort_field,.widgets-php #gravityview_sort_field{max-width:300px;}.post-type-gravityview #gv-loading,.widgets-php #gv-loading{text-align:center;font-size:16px;line-height:20px;display:block;}.post-type-gravityview #gv-loading .spinner,.widgets-php #gv-loading .spinner{display:inline-block;margin-top:-3px;float:none;}.gv-label{display:inline-block;clear:right;margin-bottom:0.1em;}.gv-label-checkbox{padding-right:1em;display:block;width:100%;}.gv-label-textarea,.gv-label-text{float:left;clear:both;width:100%;display:block;margin-bottom:0.5em;}.gv-shortcode .dashicons-editor-code{color:#888;left:-1px;font-size:20px;line-height:1;} \ No newline at end of file +.widgets-php .gv-overlay{display:none}#gv-widget-search-settings-link{display:none;text-align:center;font-size:110%}#gv-widget-search-settings-link .dashicons{margin-right:5px;line-height:20px !important;height:20px !important;font-size:20px !important}#gv-widget-search-settings-link a{text-decoration:none;text-align:center}.merge-tag-support{max-width:95%}.all-merge-tags{position:relative;display:-moz-inline-stack;display:inline-block;zoom:1}.all-merge-tags.textarea{position:absolute;margin-top:1px}.all-merge-tags a.open-list{text-indent:-999em;width:16px;height:16px;background:url(images/icon-drop-list.png);background-repeat:no-repeat;cursor:pointer;margin-left:5px;display:-moz-inline-stack;display:inline-block;zoom:1}.all-merge-tags a.open-list:focus{outline:0 !important}ul#gf_merge_tag_list{padding:0;max-height:200px;min-width:200px;overflow:auto;position:absolute;background-color:#F8F8F8;border:1px solid #CCC;z-index:999;text-indent:0;-moz-box-shadow:0 8px 6px -6px rgba(68,68,68,0.4);-webkit-box-shadow:0 8px 6px -6px rgba(68,68,68,0.4);box-shadow:0 8px 6px -6px rgba(68,68,68,0.4)}ul#gf_merge_tag_list li:nth-child(even){background-color:#EEE}.right ul#gf_merge_tag_list{right:0}ul#gf_merge_tag_list li{margin:0;line-height:1.4em;padding:0 !important;border-bottom:1px dotted #ccc}ul#gf_merge_tag_list li:last-child{border-bottom:none}ul#gf_merge_tag_list li.group-header{font-weight:bold;padding:5px !important}ul#gf_merge_tag_list li.group-header:hover{background-color:transparent}ul#gf_merge_tag_list a{display:block;padding:5px;cursor:pointer}ul#gf_merge_tag_list a:hover{background-color:#EEE}.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px}#wp-gform_notification_message-wrap{margin-right:12px}body .ui-tooltip{padding:8px;position:absolute;width:400px;max-width:100%;z-index:999999 !important;background:#eee;border:4px solid #999;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-o-box-shadow:0 0 5px #aaa;-moz-box-shadow:0 0 5px #aaa;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip br{display:none}* html .ui-tooltip{background-image:none}.ui-tooltip-content{padding:0 10px;max-height:325px;overflow-y:auto}.ui-tooltip-content:after{content:"";display:table;clear:both}.ui-tooltip-content .close{position:absolute;padding:5px;top:-25px;left:-25px;cursor:pointer}.ui-tooltip-content .close i{font-size:25px;color:#555}.ui-tooltip-content .close i:hover,.ui-tooltip-content .close i:active{color:#000}.ui-tooltip-content .gv-field-controls{display:none}.ui-tooltip-content .gv-fields{cursor:pointer;padding:.5em .75em}.ui-tooltip-content .gv-fields.gv-child-field{width:95%;margin-left:5%}.ui-tooltip-content .gv-fields h5{float:none;width:100%}.top .ui-tooltip-content::after{bottom:-14px;left:48%;border-color:#999 transparent;border-width:10px 10px 0}.ui-tooltip .gv-fields .gv-field-info span.gv-sublabel:after,.ui-tooltip .gv-fields .gv-field-info span:last-child:after,.gv-dialog-options:after,.gv-dialog-options .gv-setting-container:after{content:"";display:table;clear:both}.gv-grid{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-bottom:2em}.gv-grid:before,.gv-grid:after{content:" ";display:table}.gv-grid:after{clear:both}.gv-grid-pad{padding:1em 0 0 1em}.gv-grid-pad>[class*='gv-grid-col-']{padding-right:1em}.gv-grid-border{border:1px solid #999}[class*='gv-grid-col-']{float:left;padding-right:1em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-grid-col-1-3{width:33.33%}.gv-grid-col-1-4{width:25%}.gv-grid-col-1-2{width:50%}.gv-grid-col-1-8{width:12.5%}.gv-grid-col-2-3{width:66.66%}.gv-grid-col-1-1{width:100%}.gv-grid-col-1-1+.gv-grid-col-1-3+.gv-grid-col-2-3+.gv-grid-col-1-2,.gv-grid-col-1-1+.gv-grid-col-2-3+.gv-grid-col-1-3+.gv-grid-col-1-2{clear:left}.gv-section:before,.gv-section:after{content:" ";display:table}.gv-section:after{clear:both}.gv-section h4{font-size:14px;font-weight:bold}.gv-section h4 span{font-size:14px;float:right;color:#999;font-weight:normal}.gv-view-types-module{padding:1em;margin-bottom:1em;background:#eee;position:relative;border:2px solid transparent;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-view-types-module:hover .gv-view-types-hover{display:block}.gv-view-types-module img{display:block;width:100%;height:auto;margin:0;padding:0}.gv-view-types-module h5{white-space:nowrap;margin:0.5em 0;padding:0;font-size:18px}.gv-view-types-module .description{margin:0;padding:0;height:3em;overflow:hidden}.gv-view-types-module.gv-selected{border:2px solid #1e8cbe}.gv-view-types-hover{display:none;background:rgba(0,0,0,0.6);position:absolute;top:0;left:0;right:0;height:100%}.gv-view-types-hover .gv-site-preview{color:#fff;text-decoration:none}.gv-view-types-hover .dashicons{font-size:24px;width:24px;height:24px;position:absolute;top:5px;right:5px;opacity:.5}.gv-view-types-hover .dashicons:hover{opacity:1}.gv-view-types-hover>div{padding-top:31%;margin-top:-15px}.gv-view-types-hover>div p{margin:0.5em 0 1.5em;padding:0;text-align:center}.gv-view-types-hover>div p a{display:inline-block;width:60%}.button-primary.button-buy-now{background:#2ecc37;border-color:#00a213;-webkit-box-shadow:inset 0 1px 0 rgba(120,230,129,0.5),0 1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 1px 0 rgba(120,230,129,0.5),0 1px 0 rgba(0,0,0,0.15)}.button-primary.button-buy-now.focus,.button-primary.button-buy-now:focus,.button-primary.button-buy-now.hover,.button-primary.button-buy-now:hover{border-color:#00a213;background:#1ebe41;-webkit-box-shadow:inset 0 1px 0 rgba(120,230,129,0.6);box-shadow:inset 0 1px 0 rgba(120,230,129,0.6)}.button-primary.button-buy-now.focus,.button-primary.button-buy-now:focus{border-color:#0e5025;-webkit-box-shadow:inset 0 1px 0 rgba(120,230,129,0.6),1px 1px 2px rgba(0,0,0,0.4);box-shadow:inset 0 1px 0 rgba(120,230,129,0.6),1px 1px 2px rgba(0,0,0,0.4)}.button-primary.button-buy-now.active,.button-primary.button-buy-now.active:hover,.button-primary.button-buy-now.active:focus,.button-primary.button-buy-now:active{border-color:#00842d;background:#1ebe41}#gravityview_select_form .handlediv{display:none}.gv-form-links{color:#ddd;font-weight:normal;padding:0 0 0 10px}.gv-form-links .row-actions{visibility:visible;padding:0}.gv-form-links .gv-form-title{display:none}#gv_switch_view_button{display:inline-block}#gravityview_select_template{display:none}#gravityview_select_template .inside{max-height:450px;overflow-x:auto}#gravityview_select_template .gv-grid-col-1-3{max-width:250px;min-width:200px}.gv-template-preview{display:none;width:90%}#gravityview_template_settings th,#gravityview_sort_filter th{white-space:nowrap;font-weight:normal;max-width:200px;width:auto;margin-bottom:9px;padding:15px 10px;line-height:1.3;vertical-align:middle}#gravityview_sort_filter,#gravityview_view_config{display:none}.gv-wait{cursor:wait}.ui-tabs{position:relative;padding:.1em;zoom:1;margin-top:1em}.ui-tabs .ui-front{z-index:10001}.ui-tabs .ui-tabs-nav{margin:0;padding:.1em .1em 0;-webkit-margin-before:0;-webkit-margin-after:0;-webkit-margin-start:0;-webkit-margin-end:0;-webkit-padding-start:0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0;padding:0;white-space:nowrap;outline:none}.ui-tabs .ui-tabs-nav li .nav-tab{float:left;padding:.5em 1em;text-decoration:none;font-size:14px}.ui-tabs .ui-tabs-nav li .nav-tab:link,.ui-tabs .ui-tabs-nav li .nav-tab:visited,.ui-tabs .ui-tabs-nav li .nav-tab:hover,.ui-tabs .ui-tabs-nav li .nav-tab:active,.ui-tabs .ui-tabs-nav li .nav-tab:focus{outline:none}.ui-tabs .ui-tabs-nav li .dashicons{color:#aaa}.ui-tabs .ui-tabs-nav li.ui-state-active a,.ui-tabs .ui-tabs-nav li.ui-state-active.ui-state-hover a{background-color:#fff;border-bottom:1px solid #fff}.ui-tabs .ui-tabs-nav li.ui-state-active .dashicons,.ui-tabs .ui-tabs-nav li.ui-state-active.ui-state-hover .dashicons{color:#666}.ui-tabs .ui-tabs-nav li.ui-state-hover .dashicons{color:#999}.ui-tabs .ui-tabs-panel{display:block;padding:1em;background:#fff;border:1px solid #ddd}.ui-tabs .ui-tabs-hide{display:none !important}.gv-dialog{z-index:10001}.gv-overlay{cursor:pointer;position:fixed;z-index:10000;background:transparent;background:rgba(225,225,225,0.4);width:100%;height:100%;overflow:hidden}hr{border:0;height:0;border-bottom:1px solid #ddd;margin:2em 0 2em 0}.gv-droppable-area{border:1px solid #ccc;margin-bottom:1em}.gv-droppable-area .gv-droppable-area-action{background:#eee;padding:0.5em}.gv-droppable-area .gv-droppable-area-action:before,.gv-droppable-area .gv-droppable-area-action:after{content:" ";display:table}.gv-droppable-area .gv-droppable-area-action:after{clear:both}.gv-droppable-area .gv-droppable-area-title{margin:0;padding:0}.gv-droppable-area .gv-droppable-area-subtitle{margin:0.25em 0 0 0;padding:0;font-size:12px;color:#999}.gv-droppable-area .button-secondary{float:right}.active-drop{padding:3px 7px;min-height:44px;position:relative}.active-drop .drop-message{color:#bbb;margin:0;display:block;text-align:center;width:90%;padding:0 5%;z-index:1;min-height:40px;font-size:13px;position:absolute;top:50%;margin-top:-8px;line-height:16px}.gv-grid-col-1-2 .drop-message{padding-top:0;padding-bottom:0}.fields-placeholder{margin:5px 2px;height:32px;border:1px dashed #ccc}.gv-fields{cursor:move;border:1px solid #ddd;background:#f7f7f7;overflow:hidden;padding:0.5em .75em;margin:5px 0;width:100%;z-index:100;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-fields h5{float:left;width:100%;font-weight:600;font-size:14px;margin:0;padding:0 0 0 .25em;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-fields h5 small{color:#777;font-weight:600}.gv-fields span.gv-field-controls{padding-left:.33em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-fields:hover{background:#fefefe}.gv-fields:hover .gv-field-controls .dashicons{color:#136cb9}.gv-fields:hover h5 small,.gv-fields:hover .gv-field-info{color:#666}.gv-fields .gv-field-controls .dashicons{width:24px;font-size:18px;line-height:20px}.gv-fields .gv-field-controls .dashicons:hover,.gv-fields .gv-field-controls .dashicons:active{color:#2ea2cc}.gv-fields .gv-field-controls .dashicons.dashicons-dismiss{float:right;color:#999}.gv-fields .gv-field-controls .dashicons.dashicons-dismiss:hover,.gv-fields .gv-field-controls .dashicons.dashicons-dismiss:active{color:#d03a3a}.gv-fields .gv-field-controls .dashicons.dashicons-admin-links{color:#aaa;width:20px;font-size:16px;line-height:20px;cursor:default}.gv-fields .gv-field-info{display:none}.ui-tooltip .gv-fields .gv-field-info{display:block;font-weight:normal;color:#999;text-shadow:none}.ui-tooltip .gv-fields .gv-field-info span:after{content:", "}.ui-dialog-content,.ui-dialog{cursor:default}.post-type-gravityview .ui-dialog-content{overflow:inherit;padding:0}.ui-draggable-dragging{max-width:400px !important}#directory-available-fields .gv-fields h5,#directory-available-widgets .gv-fields h5,#single-available-fields .gv-fields h5{padding:0 !important}#directory-available-fields .gv-fields span.gv-field-controls,#directory-available-widgets .gv-fields span.gv-field-controls,#single-available-fields .gv-fields span.gv-field-controls{display:none !important}.gv-sublabel{font-size:.9em;display:block}.ui-dialog-titlebar{min-height:1.25em;line-height:1.25;padding:10px;height:auto}.gv-dialog-options{display:none;width:90%;padding:10px 0 !important}.gv-dialog-options.gv-dialog-warning p{font-size:1.1em}.gv-dialog-options.gv-dialog-warning .dashicons{font-size:70px;width:70px;height:70px;line-height:.8;float:right;text-align:right;color:#ddd}.gv-dialog-options p{margin:0 !important;padding:1.5em !important}.gv-dialog-options .gv-setting-container{margin:0;padding:.4em 15px .8em;display:block;font-size:1.1em;clear:left}.gv-dialog-options .gv-setting-container:last-child{padding-bottom:.5em}.gv-dialog-options .gv-setting-container label{margin:0;font-weight:normal;display:inline-block;padding-right:.75em}.gv-dialog-options .gv-setting-container .howto{margin:0 0 .25em}.gv-dialog-options input[type="text"]{display:block;display:inline-block;clear:left}.gv-dialog-options table,.gv-dialog-options table select{width:95%;margin:0 auto}.gv-widget-search-fields table,.gv-dialog-options table{padding-bottom:15px}.gv-widget-search-fields table td,.gv-widget-search-fields table th,.gv-dialog-options table td,.gv-dialog-options table th{text-align:left;padding:10px 5px}.gv-widget-search-fields table .no-search-fields td,.gv-dialog-options table .no-search-fields td{text-align:center;font-size:15px;padding:15px 0}.gv-widget-search-fields table .cell-sort,.gv-dialog-options table .cell-sort{cursor:ns-resize}.gv-widget-search-fields table .cell-sort.no-sort,.gv-dialog-options table .cell-sort.no-sort{cursor:default}.gv-widget-search-fields table .gv-search-fields,.gv-widget-search-fields table .gv-search-inputs,.gv-dialog-options table .gv-search-fields,.gv-dialog-options table .gv-search-inputs{width:100%}.gv-widget-search-fields table .cell-sort a,.gv-widget-search-fields table .cell-add-remove a,.gv-dialog-options table .cell-sort a,.gv-dialog-options table .cell-add-remove a{font-size:18px}.gv-widget-search-fields table .cell-sort a.dashicons,.gv-widget-search-fields table .cell-add-remove a.dashicons,.gv-dialog-options table .cell-sort a.dashicons,.gv-dialog-options table .cell-add-remove a.dashicons{opacity:.8}.gv-widget-search-fields table .cell-sort a.dashicons:hover,.gv-widget-search-fields table .cell-add-remove a.dashicons:hover,.gv-dialog-options table .cell-sort a.dashicons:hover,.gv-dialog-options table .cell-add-remove a.dashicons:hover{opacity:1}.gv-widget-search-fields table .cell-sort a.dashicons-plus-alt,.gv-widget-search-fields table .cell-add-remove a.dashicons-plus-alt,.gv-dialog-options table .cell-sort a.dashicons-plus-alt,.gv-dialog-options table .cell-add-remove a.dashicons-plus-alt{color:green}.gv-widget-search-fields table .cell-sort a.dashicons-dismiss,.gv-widget-search-fields table .cell-add-remove a.dashicons-dismiss,.gv-dialog-options table .cell-sort a.dashicons-dismiss,.gv-dialog-options table .cell-add-remove a.dashicons-dismiss{color:#d03a3a}.gv-widget-search-fields table .cell-sort,.gv-dialog-options table .cell-sort{width:24px}.gv-widget-search-fields table .cell-add-remove,.gv-dialog-options table .cell-add-remove{width:50px}.post-type-gravityview input.merge-tag-support,.widgets-php input.merge-tag-support{width:90%}.post-type-gravityview #gravityview_sort_field,.widgets-php #gravityview_sort_field{max-width:300px}.post-type-gravityview #gv-loading,.widgets-php #gv-loading{text-align:center;font-size:16px;line-height:20px;display:block}.post-type-gravityview #gv-loading .spinner,.widgets-php #gv-loading .spinner{display:inline-block;margin-top:-3px;float:none}.gv-label{display:inline-block;clear:right;margin-bottom:.1em}.gv-label-checkbox{padding-right:1em;display:block;width:100%}.gv-label-textarea,.gv-label-text{float:left;clear:both;width:100%;display:block;margin-bottom:0.5em}.gv-shortcode .dashicons-editor-code{color:#888;left:-1px;font-size:20px;line-height:1} \ No newline at end of file diff --git a/assets/css/admin-widgets-php.css b/assets/css/admin-widgets-php.css index 2648a637ae..54f78cbe96 100644 --- a/assets/css/admin-widgets-php.css +++ b/assets/css/admin-widgets-php.css @@ -1 +1 @@ -.widgets-php .gv-overlay{display:none;}#gv-widget-search-settings-link{display:none;text-align:center;font-size:110%;}#gv-widget-search-settings-link .dashicons{margin-right:5px;line-height:20px !important;height:20px !important;font-size:20px !important;}#gv-widget-search-settings-link a{text-decoration:none;text-align:center;} \ No newline at end of file +.widgets-php .gv-overlay{display:none}#gv-widget-search-settings-link{display:none;text-align:center;font-size:110%}#gv-widget-search-settings-link .dashicons{margin-right:5px;line-height:20px !important;height:20px !important;font-size:20px !important}#gv-widget-search-settings-link a{text-decoration:none;text-align:center} \ No newline at end of file diff --git a/assets/css/font.css b/assets/css/font.css index 5dee4a6693..fde234e403 100644 --- a/assets/css/font.css +++ b/assets/css/font.css @@ -1 +1 @@ -@font-face{font-family:"gravityview";src:url("../fonts/gravityview.eot");src:url("../fonts/gravityview.eot?#iefix") format("embedded-opentype"),url("../fonts/gravityview.woff") format("woff"),url("../fonts/gravityview.ttf") format("truetype"),url("../fonts/gravityview.svg#gravityview") format("svg");font-weight:normal;font-style:normal;}a.icon{text-decoration:none;}[data-icon]:before{font-family:"gravityview" !important;content:attr(data-icon);font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}[class^="gv-icon-"]:before,[class*=" gv-icon-"]:before{font-family:"gravityview" !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.gv-icon-astronaut-head:before{content:"a";}.gv-icon-astronaut:before{content:"b";}.gv-icon-datatables-icon:before{content:"c";}.gv-icon-caret-up-down:before{content:"d";}.gv-icon-minus-square:before{content:"f";}.gv-icon-plus-square:before{content:"g";}.gv-icon-level-down:before{content:"e";}.gv-icon-sort-asc:before{content:"h";}.gv-icon-sort-desc:before{content:"i";} \ No newline at end of file +@font-face{font-family:"gravityview";src:url("../fonts/gravityview.eot");src:url("../fonts/gravityview.eot?#iefix") format("embedded-opentype"),url("../fonts/gravityview.woff") format("woff"),url("../fonts/gravityview.ttf") format("truetype"),url("../fonts/gravityview.svg#gravityview") format("svg");font-weight:normal;font-style:normal;}a.icon{text-decoration:none}[data-icon]:before{font-family:"gravityview" !important;content:attr(data-icon);font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^="gv-icon-"]:before,[class*=" gv-icon-"]:before{font-family:"gravityview" !important;font-style:normal !important;font-weight:normal !important;font-variant:normal !important;text-transform:none !important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gv-icon-astronaut-head:before{content:"a"}.gv-icon-astronaut:before{content:"b"}.gv-icon-datatables-icon:before{content:"c"}.gv-icon-caret-up-down:before{content:"d"}.gv-icon-minus-square:before{content:"f"}.gv-icon-plus-square:before{content:"g"}.gv-icon-level-down:before{content:"e"}.gv-icon-sort-asc:before{content:"h"}.gv-icon-sort-desc:before{content:"i"} \ No newline at end of file From d5045b540f9d98486b0867dfa58f08e2751dbefc Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:08:16 -0600 Subject: [PATCH 25/32] Fixed: Social icons displaying on GravityView settings page --- includes/class-settings.php | 6 +++--- readme.txt | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/includes/class-settings.php b/includes/class-settings.php index e1859ad900..9d14f0a4d3 100644 --- a/includes/class-settings.php +++ b/includes/class-settings.php @@ -308,17 +308,17 @@ public function setArguments() { array( 'url' => 'https://twitter.com/Gravity_View', 'title' => 'Follow us on Twitter', - 'icon' => 'el-icon-twitter' + 'icon' => 'el el-icon-twitter' ), array( 'url' => 'https://www.facebook.com/GravityView', 'title' => 'Like us on Facebook', - 'icon' => 'el-icon-facebook' + 'icon' => 'el el-icon-facebook' ), array( 'url' => 'https://plus.google.com/115639371871185834833/about', 'title' => __('Follow us on Google+', 'gravityview' ), - 'icon' => 'el-icon-googleplus', + 'icon' => 'el el-icon-googleplus', ), ); } diff --git a/readme.txt b/readme.txt index bf1e9a3a00..0b8e118a53 100644 --- a/readme.txt +++ b/readme.txt @@ -25,6 +25,7 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h * Fixed: Embedded DataTable Views with search_value not filtering correctly * Fixed: Not possible to change View status to 'Publish' * Fixed: Settings page not able to turn off No-Conflict mode (oh, the irony!) +* Fixed: Social icons displaying on GravityView settings page = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From e00628cfad9b7fd7254ce8c6731ea804976901c8 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:08:53 -0600 Subject: [PATCH 26/32] More SASS changes --- templates/css/fields.css | 2 +- templates/css/gv-default-styles.css | 2 +- templates/css/list-view.css | 2 +- templates/css/table-view.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/css/fields.css b/templates/css/fields.css index 3e9d454303..474d66d9bf 100644 --- a/templates/css/fields.css +++ b/templates/css/fields.css @@ -1 +1 @@ -.gv-list-container .gv-section,.gv-list-single-container .gv-section{margin:1em 0 1.5em;}.gv-list-container .gv-section .gv-field-label,.gv-list-single-container .gv-section .gv-field-label{border-bottom:1px solid #ccc;display:block;}.gv-image-caption{font-style:italic;} \ No newline at end of file +.gv-list-container .gv-section,.gv-list-single-container .gv-section{margin:1em 0 1.5em}.gv-list-container .gv-section .gv-field-label,.gv-list-single-container .gv-section .gv-field-label{border-bottom:1px solid #ccc;display:block}.gv-image-caption{font-style:italic} \ No newline at end of file diff --git a/templates/css/gv-default-styles.css b/templates/css/gv-default-styles.css index 7f547a382e..fc00c066eb 100644 --- a/templates/css/gv-default-styles.css +++ b/templates/css/gv-default-styles.css @@ -1 +1 @@ -.gv-search-horizontal{display:table;width:100%;}.gv-search-horizontal .gv-search-box{padding-right:0.5em;display:table-cell;height:100%;vertical-align:top;}.gv-search-horizontal .gv-search-box p{display:block;}.gv-search-horizontal .gv-search-box input,.gv-search-horizontal .gv-search-box select{display:block;}.gv-search-horizontal .gv-search-box select{width:100%;max-width:15em;}.gv-search-horizontal .gv-search-box.gv-search-date{max-width:10em;}.gv-search-horizontal .gv-search-box.gv-search-date input{width:48%;float:left;margin-right:2%;}.gv-search-horizontal .gv-search-box.gv-search-date input{display:inline-block;}.gv-search-horizontal .gv-search-box.gv-search-box-submit{vertical-align:middle;}.gv-search-horizontal .gv-search-box.gv-search-box-submit .gv-search-clear{float:left;margin-right:5px;}.gv-widget-search label.gv-check-radio{display:inline-block;margin-right:1em;}.gv-widget-search label.gv-check-radio input{display:inline;}.gv-widget-search.gv-search-vertical label.gv-check-radio{display:block;margin-bottom:1em;}.gv-widget-search .gv-search-box-links .active{font-weight:bold;}.gv-search-clear{display:none;}.gv-is-search .gv-search-clear{display:block;}.gv-list-container .gv-section,.gv-list-single-container .gv-section{margin:1em 0 1.5em;}.gv-list-container .gv-section .gv-field-label,.gv-list-single-container .gv-section .gv-field-label{border-bottom:1px solid #ccc;display:block;}.gv-image-caption{font-style:italic;}.gv-notice{padding:0.5em 0.75em;margin:1em 0;background-color:#ffffcc;border:1px solid #ddd;}.gv-notice.gv-error{padding:0.75em;border-color:#fd9ca1;background-color:#ffdfe0;}.gv-notice p{margin:0;padding:0;}.gv-edit-entry-wrapper .dashicons{font-size:0.925em;padding:0 0.2em;width:1em;height:1em;line-height:1em;margin-left:0.5em;}.gv-edit-entry-wrapper .dashicons-dismiss{color:#a10013;}.gv-edit-entry-wrapper .dashicons-dismiss:hover{color:#e20012;}.gv-edit-entry-wrapper .dashicons-download{color:#406e20;}.gv-edit-entry-wrapper .dashicons-download:hover{color:#469416;}.gv-notice{padding:0.5em 0.75em;margin:1em 0;background-color:#ffffcc;border:1px solid #ddd;}.gv-notice.gv-error{padding:0.75em;border-color:#fd9ca1;background-color:#ffdfe0;}.gv-notice p{margin:0;padding:0;}.gravityview-oembed .gv-back-link{display:none;}.gv-grid{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-grid:before,.gv-grid:after{content:" ";display:table;}.gv-grid:after{clear:both;}[class*='gv-grid-col-']{float:left;padding-right:1em;min-height:1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.gv-grid-col-1-3{width:33.33%;}.gv-grid-col-1-4{width:25%;}.gv-grid-col-1-2{width:50%;}.gv-grid-col-1-8{width:12.5%;}.gv-grid-col-2-3{width:66.66%;}.gv-grid-col-1-1{width:100%;}.gv-right{text-align:right;display:block;}.gv-right .gv-right>div{float:right;}.gv-left{text-align:left;display:block;}.gv-left .gv-right>div{float:left;}@media screen and (max-width: 480px){[class*='gv-grid-col-']{width:100%;}.gv-right,.gv-left,.gv-right>div,.gv-left>div{float:none;text-align:left;}}body .gv-widget-page-links ul,body .gv-widget-page-links li{list-style:none;margin:0;padding:0;}body .gv-widget-page-links li{display:inline;display:inline-block;}body .gv-widget-page-links li .page-numbers{display:inline-block;padding:0.4em 0.5em;}.gv-container img{display:block;margin:0;padding:0;max-width:100%;max-height:100%;}.gv-no-results{text-align:center;vertical-align:center;padding:0.5em;}#TB_window img{max-height:100%;max-width:100%;}.gv-field-label{padding-right:0.25em;}a.gv-sort{text-decoration:none;border-bottom:none;}.gv-gallery .gv-field-file-uploads{margin:0;padding:0;}.gv-gallery .gv-field-file-uploads li{list-style:none;display:inline-block;max-width:200px;margin-right:1em;margin-bottom:0.5em;}.gv-gallery .gv-field-file-uploads li img{max-width:auto;}.hidden{display:none;} \ No newline at end of file +.gv-search-horizontal{display:table;width:100%}.gv-search-horizontal .gv-search-box{padding-right:.5em;display:table-cell;height:100%;vertical-align:top}.gv-search-horizontal .gv-search-box p{display:block}.gv-search-horizontal .gv-search-box input,.gv-search-horizontal .gv-search-box select{display:block}.gv-search-horizontal .gv-search-box select{width:100%;max-width:15em}.gv-search-horizontal .gv-search-box.gv-search-date{max-width:10em}.gv-search-horizontal .gv-search-box.gv-search-date input{width:48%;float:left;margin-right:2%}.gv-search-horizontal .gv-search-box.gv-search-date input{display:inline-block}.gv-search-horizontal .gv-search-box.gv-search-box-submit{vertical-align:middle}.gv-search-horizontal .gv-search-box.gv-search-box-submit .gv-search-clear{float:left;margin-right:5px}.gv-widget-search label.gv-check-radio{display:inline-block;margin-right:1em}.gv-widget-search label.gv-check-radio input{display:inline}.gv-widget-search.gv-search-vertical label.gv-check-radio{display:block;margin-bottom:1em}.gv-widget-search .gv-search-box-links .active{font-weight:bold}.gv-search-clear{display:none}.gv-is-search .gv-search-clear{display:block}.gv-list-container .gv-section,.gv-list-single-container .gv-section{margin:1em 0 1.5em}.gv-list-container .gv-section .gv-field-label,.gv-list-single-container .gv-section .gv-field-label{border-bottom:1px solid #ccc;display:block}.gv-image-caption{font-style:italic}.gv-notice{padding:.5em .75em;margin:1em 0;background-color:#ffffcc;border:1px solid #ddd}.gv-notice.gv-error{padding:.75em;border-color:#fd9ca1;background-color:#ffdfe0}.gv-notice p{margin:0;padding:0}.gv-edit-entry-wrapper .dashicons{font-size:.925em;padding:0 .2em;width:1em;height:1em;line-height:1em;margin-left:.5em}.gv-edit-entry-wrapper .dashicons-dismiss{color:#a10013}.gv-edit-entry-wrapper .dashicons-dismiss:hover{color:#e20012}.gv-edit-entry-wrapper .dashicons-download{color:#406e20}.gv-edit-entry-wrapper .dashicons-download:hover{color:#469416}.gv-notice{padding:.5em .75em;margin:1em 0;background-color:#ffffcc;border:1px solid #ddd}.gv-notice.gv-error{padding:.75em;border-color:#fd9ca1;background-color:#ffdfe0}.gv-notice p{margin:0;padding:0}.gravityview-oembed .gv-back-link{display:none}.gv-grid{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-grid:before,.gv-grid:after{content:" ";display:table}.gv-grid:after{clear:both}[class*='gv-grid-col-']{float:left;padding-right:1em;min-height:1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gv-grid-col-1-3{width:33.33%}.gv-grid-col-1-4{width:25%}.gv-grid-col-1-2{width:50%}.gv-grid-col-1-8{width:12.5%}.gv-grid-col-2-3{width:66.66%}.gv-grid-col-1-1{width:100%}.gv-right{text-align:right;display:block}.gv-right .gv-right>div{float:right}.gv-left{text-align:left;display:block}.gv-left .gv-right>div{float:left}@media screen and (max-width: 480px){[class*='gv-grid-col-']{width:100%}.gv-right,.gv-left,.gv-right>div,.gv-left>div{float:none;text-align:left}}body .gv-widget-page-links ul,body .gv-widget-page-links li{list-style:none;margin:0;padding:0}body .gv-widget-page-links li{display:inline;display:inline-block}body .gv-widget-page-links li .page-numbers{display:inline-block;padding:.4em .5em}.gv-container img{display:block;margin:0;padding:0;max-width:100%;max-height:100%}.gv-no-results{text-align:center;vertical-align:center;padding:.5em}#TB_window img{max-height:100%;max-width:100%}.gv-field-label{padding-right:.25em}a.gv-sort{text-decoration:none;border-bottom:none}.gv-gallery .gv-field-file-uploads{margin:0;padding:0}.gv-gallery .gv-field-file-uploads li{list-style:none;display:inline-block;max-width:200px;margin-right:1em;margin-bottom:.5em}.gv-gallery .gv-field-file-uploads li img{max-width:auto}.hidden{display:none} \ No newline at end of file diff --git a/templates/css/list-view.css b/templates/css/list-view.css index e215834fd8..476516e03c 100644 --- a/templates/css/list-view.css +++ b/templates/css/list-view.css @@ -1 +1 @@ -.gv-list-view-content{*zoom:1;}.gv-list-view-content:before,.gv-list-view-content:after{content:" ";display:table;}.gv-list-view-content:after{clear:both;}.gv-list-view{border:1px solid #ddd;margin-bottom:1em;}.gv-list-view-title{border-bottom:1px solid #ddd;padding:0.5em 1em;}.gv-list-view-title h3{margin:0 0 0.5em 0;padding:0;}.gv-list-view-title p{margin:0;padding:0;}.gv-list-view-subtitle h4{margin:0;}.gv-list-view-content{padding:0.75em 1em;}.gv-list-view-content h4{clear:none;}.gv-list-view-content p{margin:0 0 1em 0;padding:0;}.gv-list-view-content img{display:block;}.gv-list-view-content .gv-list-view-content-image{float:left;margin:0 1em 1em 0;max-width:45%;max-height:400px;}.gv-list-view-content .gv-list-view-content-image .gv-field-file-uploads li,.gv-list-view-content .gv-list-view-content-image .gv-field-file-uploads{list-style:none;margin:0;padding:0;}.gv-list-view-footer{border-top:1px solid #ddd;background-color:#eee;padding:1em;} \ No newline at end of file +.gv-list-view-content{*zoom:1}.gv-list-view-content:before,.gv-list-view-content:after{content:" ";display:table}.gv-list-view-content:after{clear:both}.gv-list-view{border:1px solid #ddd;margin-bottom:1em}.gv-list-view-title{border-bottom:1px solid #ddd;padding:.5em 1em}.gv-list-view-title h3{margin:0 0 0.5em 0;padding:0}.gv-list-view-title p{margin:0;padding:0}.gv-list-view-subtitle h4{margin:0}.gv-list-view-content{padding:.75em 1em}.gv-list-view-content h4{clear:none}.gv-list-view-content p{margin:0 0 1em 0;padding:0}.gv-list-view-content img{display:block}.gv-list-view-content .gv-list-view-content-image{float:left;margin:0 1em 1em 0;max-width:45%;max-height:400px}.gv-list-view-content .gv-list-view-content-image .gv-field-file-uploads li,.gv-list-view-content .gv-list-view-content-image .gv-field-file-uploads{list-style:none;margin:0;padding:0}.gv-list-view-footer{border-top:1px solid #ddd;background-color:#eee;padding:1em} \ No newline at end of file diff --git a/templates/css/table-view.css b/templates/css/table-view.css index 779df83a5c..6d6d9da7d0 100644 --- a/templates/css/table-view.css +++ b/templates/css/table-view.css @@ -1 +1 @@ -.gv-table-view{width:100%;}.gv-table-view th,.gv-table-view td{padding:0.3em;}.gv-table-view-content th{width:35%;vertical-align:top;}a.gv-sort.gv-icon-caret-up-down{opacity:0.5;}a.gv-sort.gv-icon-caret-up-down:hover{opacity:1;} \ No newline at end of file +.gv-table-view{width:100%}.gv-table-view th,.gv-table-view td{padding:.3em}.gv-table-view-content th{width:35%;vertical-align:top}a.gv-sort.gv-icon-caret-up-down{opacity:0.5}a.gv-sort.gv-icon-caret-up-down:hover{opacity:1} \ No newline at end of file From 8134ee4ea640e04d151a72671f08d42bef1c1003 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:09:58 -0600 Subject: [PATCH 27/32] Other entries! --- assets/images/screenshots/other-entries.png | Bin 0 -> 59634 bytes includes/fields/other-entries.php | 26 ++++++++++++-------- readme.txt | 1 + 3 files changed, 17 insertions(+), 10 deletions(-) create mode 100644 assets/images/screenshots/other-entries.png diff --git a/assets/images/screenshots/other-entries.png b/assets/images/screenshots/other-entries.png new file mode 100644 index 0000000000000000000000000000000000000000..5a46dd50d0dadaf54f350db0baf29d327fa7efd3 GIT binary patch literal 59634 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

cG#OXv=!e01&cB%SSlf-iRnq8NBU2p4y=QmG#|B zIMMp>tzjVkxM^HU={WdE>v>yyogH;I)P?sOlE+NjNT&)Py}`ShJI-4#9KR3Z!u??yGU)K^hFz!UkgJ7K&vlA=2fa^D*EESbrC zP-{JSFLaVva^qiF=SvLo|x_?>ir$WblvWNvO7|HB5=-iFZ^j&SKU|={}yQ2q>7k z1&=1OGAXj;c8;f{rluw*EB=Gsf-Yb(LrPkW9DqdG-CJ@|w^+hkJkL&q{ufmM6cGYY zMa9b0<(~e6O5R$Kk@4#VBKQ*h7vuWLB?-4RmTQk}xh2P=&$L@UzP=B**bBgn;NR2z zJppt9I%EuZoc49_-Me@DGmw&K7B;rdj*bjG#|Z8rUw{fm;v$Qq!{99~(k7Fx%gaq_ z_z?oyf4KD*L%Y`nTFt@}USTW?Y#H7{qT>UQet`@EOeu%*0q89?{yoZvl0P3zL$LsG zrE(YlpyfKqURn?mcrEuj{$JyO8-f4~88ro*F=6|)CogPg&j_iGT>tp-Qbb+uP5hjU zWGFxFpHEas%Mf)a_c}D% zR@y!7&%=0d+68^mPxH=Ms%c?dTwG7c0XQn{3!WlLage^`C(tYDWUKE?e}Q;&nG2}{ z7=@p35BZl-c+tfF{}-(%_!o!#N1pylEif5BARo`j--w3ncje6J-}t`|oD|lKVd%{+E2%#hfLsn)W0K@$ieSXW=-n zA4}c6^QChC)Qh0twe;?64?>_~WyyM%r?*E9zfQN3X_~rSsWP(-UT4*L)|B_jO5{-MSxv z7+ca+d?26JAKkE_nON*8#kk^HyUIvqq)(*)pStBL!**Op%otbF)xPqu8MK=D2swxX z^NrL;6LF+K$x`g-o&I9%XN?+pG1CMTP3|G3P0%b6 ziOww`D}8-)PywS`BDiZUfWD6usl8DIBjP}#Zpovm(swLGxSS?FZQs69Fp-`wnb_r` zfu68@jG=I??EbhV&E|%xe8lP5yvT`{jL;cqOj6%Ut&o&VE*7Vo#PxG%pE1T z>w47WU(`#)!3MH=-<~r+tfuKplp9>UzeejutkFNv=V$SC@zD)8wCC)PO-H{f?!`HI zu@3+zK~{Uxa7@qFW!7EcyeYbTAm^WyBzg)7RXF68Ynp4}EG4|h#UiQ)UiW@}M-%P2 zn=QZmOIT0rB{T3c?eJ14_)MbFP)e8YAF7M?U;eY`nv2i2C5QdvBX$}o zKdJo3#_{BQ>0)uPq^xr!f@xM@anL>KYIqs;I&0Ot zkr&gZ$ua-l+J2~;u&t`Sza7qA{WVRk;)p$a@nu{%y-o54vU411oM(&nNE?ts6%*94?0Hq+bWgb5dP%c4k<$@Q7Y( z(`;!Nk~xU?cNn2!ekhgHuo9{Ry(p8yVl^&f}W%t?X2VQ#o`O%`r*>H*XT0R}4s#}px{%@!- zEY9y;nqNm$nbVUyt+X=lf?H>vyF2BH{Goo|4^)j_qN#=k^vtouL{xm)Ic)Wsn-&qo zuJ7qvLfi!AhXT!ioyBjXq!Y;3Pej89orv%7Wj?@mLhnw-h&+gV>|A%#3tjB$T(`RX z3sVR;4lj9g%FRxL%e=o)=5hVezM6hgR;FOq%_41Z)mNGLs}uaKt8Iocs!Bh)O58bz z-!@Tfj4<^Gegr9YirknfaNV?8qA0HkhB?rcO&#u0=1+Rq4Q<-|T;D7Av(SkVT_ zb}5BT$;P3A`x8a6A{$QO35gVEv(9${FBfTc^j`YfZ+*Ji%1h0*^M++gDTYgutwSb9 zOF8_6SI5jt7}ckGEe;kgE1u$56IM-%PoQ+F zlogHetf_3OxFoEzdHd`wEo}N-dbHgUYU6lQoMw@Tq_y4Pt0+WETo|Wg&FxjBr{Vcb zBZ=t!`&ijSrqH#Uq(lbt^}g%XD~zWt5zQM!tcv23AM|)MTQm9G2t!vej_BuYT)r&a zy%}2+?9Kud`%pgr*6%{x_*mcrG%FO0Z2^K%pkAz^qr97MOQ@<`No6N7nu+ zMN4jhwq-s&0ezNyLV|qri4GJY`Sy9BN(KW&E1^{H0Y#2Tht>^H$NMo}lm6RT$=Y7a z^2r{2jTHFp&(N#a10DkyRe4-IkMW*jTy1*iv1#&0?VfMVftz+Vo}}qe6Mb8a@Ynjj zjwfAb5kN1TI~zU>d5PX3MN)E16o*YrO!^Og*4EYn;0U8~iliC3-$3va z)TG))h~YP+XqXt~F);6295tDF-{?Y$sFCHVRmHDTT;94_>u-UqwB-mw*8pF;nF3q( ztSI=*^>$0$-t6;G##Y72OGy9|2>blepMc=c`ZIh5nRe$5-F2xOBr0#(HB~D~UbQ`w zMh#fQ^YUbGX{)+v0JUx@DJct!yupZ=_yi?OM6XH+4(HxmgSZcbpaa7L~ZmnwjXe=4?0D@M{u6eVs6_e_CdygslI5x!e zWd!2}4-_nnQWo7&I7*j>-wTtf;8byIE#0ICLdg%@GU!Jj*G$0W`$^&nT&az0jJYAl zz`c^JVGP8us=blbC6eYq-+-!cv7?hys+fQ^YnPey!1|bHN8hB(V&04`dexYTp%{kESuCtN-dk?xftv97%g%MplC+Z!BJw|H^tqR0zPH|jFKVmg(PL& zmd8s`W;ZLdZeZGbl8i|Up6pDvJWlzQUy&QXipSR>1wh#r6b!zk=mvU;R;>$3^-W`6 zf@US`y^b#}9PEEvdqawCNawm;d-!Vr;FQRkO6Fy!$vU?6w;65@dOYQZbE&{FCoZ|K z9q*0j>^LP!%AaOwqWqqr&J?8)F^+1Yo`Ulx0R5vXwI1)hhLdBh2P%d=C=6vbUSV3X zp3>Gw_l-LSFbj4!pFys9v&HNn72@hTW{~ES2g}Hq;bvu;;LOYvtpAWEo|j5e_$kq z(`_3uunKbkuuJ0;6vn|Y$~eNp8IPXsk2F;S>fg;GFAM0i@gCT z0EA2N_0+6_SrVFK3=CXNj!Bw~9d?|D<2&)e43}JB99?7BbGf${SGxUCt`0B>eKbh1 z9f2!YHWMZL`lphXik4%+F?p$!g#(^w$1hoxxEQje{0BcMk*a`o@DA@@VqZxto;el$ zGMeeFJI+4N=awXU`m849nziQRr=k|I3+1WlW4GH!n}g-5@{B_!jkA5+A6q8vrSbfP znqZmKR$uT9O${z348WhcAg7rh8Q(TQ-#P$$$|*gh?uf49!P3DbltT2w1OED;FVOkr zF0St@Wt6!uOog+`j?*i4%fdI-dxVf0ZppqHONH2eKL)VRBN!t@7Ii5h9^q2)5ZxDF zn;7! z^VDR{o3Xo+pL5!Fz^~3f=Xu5XhP{ruBeGM0Rvc!lUbZw*o@dTzaJd_wL(wwIYvh7S z|2l>s}~V`ef)uSY&X!^IT4cgseSPuY*_}_R+rHMyp?FpBFx> z2C`iEH20|U?AAVFq|kuVmw&TfulHxw4Wr!oZP=%nRZ@+VU*_q&f2Urg>i;{Q#_-vAXg73dU|?W%hXfd-B+c9}G+!bCvVOXINHp{4$jG9-pgv$835@;C zCxRG?{%i0M2Vfys91f^4{a=i>F?Kg@)}Q;{yI56nR)g0;N+K432B1pc(uYLXU z#TWl(%hkS0GDY3KUU~o$kbVLQ^yc)h69oC4Y|F4b1jaLx&4+_p3e9JNz7#b>=_hGn z6cKCl9kH0Fq^zI<64uO*r{ywimQ=u0V~I47JlmSRAkfc-FNR1kXwYiVYcOfZ>s{pf zA1XK?0Kvg;pN&ns)`;#w>Hp8;DDT7K%uGp1x;_SCpR_b^AUFn`4rX_Gb%8}pRzv9> zBL*+gpFPFIVo~yTc6Ij?&J#&Z`JJO~$g4V?0@V^i;>RaD9h~Bab5Xy=(7`jBkW0w8(pvWncM$;n z`U|Q6ZQhW;{VJ&PVoxfCO1l6gkfIrZz6{|81o$tOM+-}ZnheIykNe^G0U__Pqb*V+ zB2?7WBvk-OTM7Z!`DoRhYT`uzbi3(wQV&oao>3@2gHemPp3E_d2Zn}b?E#^UvoxEF z!LT;P)EO%_Jx70#HKL3(GKN_j`4+GDrmHxH{hNdcP##?d#k%Oi{>9HoFF5Bz% zcxo>PgMqT6I5)Oc{EQo&3_7;oTk0Dd8v`LWk8zv9blMfR$vZ(9TMEQ81_mlrR$ZO% z3_4KG0-7H(M-)upy*<;+RHZ!(*P@eq!ok524ai!NTI41Qr|;mvo%#we2|GYZqEBkJ zcKA8+hx=`SX=L_j60gyWoQetobaGpJJIQLj!)yz51UHHDYEDTK_0sT|?~Lb}iHTxV zrb3w(bWZH&kyFYcrat1qzEJ5j=U0ect1zlFu zwvRGpqtJ`@X(WK%8$t4=Ubk=EO3`K@hb6S*&4nR|b&tv9{q8~+Q1>Bc*M7E-wyj`A zybqu1cGy|d8dJpruKNF=JfQmowdZYiv-~fXmNFi zxW|qp%OeM=c!ZW3a&&P7VeqwJ;uCP-AVnRZElksvJg|u(r=l9s1LP(2ey6Jj!3IE` zc$*tQ9%&yTDVZpTKn0U=;0SYxU=|Q7nTx?idl+qb^ncF>R49!GC-jXMv zr*9;ms=T8m4{W>-l8w%h4e@+P2OFHB`1&N_*9^_OY=wAnzq9jWzjNi4=zF%9YI^pG zkr5m*1u`z$=IrTsxlN+yXZ}RRwYmE9Q#B7@Vj8hp=jBLusm!!kPJ@+}9K0Gr zE`caRT*17jek3;(bAmk3B%hxYe**uhs6Q=y1N#0b^E_yFXkvowZPm@zFly4QJ>d4C zBYxNdgHs8qBsCC|fZpnGA?c>-402{L@0}`HupZg+#(=W;=`77T)0v2I%bh6MaeRBK zVJ0p4m1`No5bOieLLHE{q#_{RF3!%S<>mYW0>QX9P1k^?TPgL>ekeWPlK9aQU0xL@ zh>%G?!t}{tNNkj+we4iBMd|AZBN9^5W?|w-f@zNhN2aFEfi~vgYm#*O0@H6qGA8d% zIf9>%-jrl}VKc_t#Y*FQkiHXSx|c1Bb`*R>+XJ2QJv&@%AFWMKPoJB6zdZx=r8;5t zuW8y&`5qU#pZc9G`q3KL4%5NFfzb#_h+24sg0gb#{ztq;hJx+LRCHdf+gz2ENSX2YUm`e28Gd?Zl~*mZdaF>u)K?_aRkUz$Q!rQBa_%mo@LU z{969z&dfxVw9?8(W^`A`EkLjFI6f5?WVJq4mbjOjN?cI7hS00YuHj$ykVz1UfJ?#w z!$-NEKFAy$9i8c`vSM%qXtm9Ax>N@36QGqUJTOp2AEXI&H|fumm9|5Uuj4hhS))5y zB1>FMj$9?zC7C+t|^|q52#1Dd*A#1 z7op$3(;`obO**1A<>cg?8SUI>6YP}}EMH3&vuYL{kQ=VR%^8HE9#4xm#8=*kQiKV#aNoI2YVSQaYeP1D(=Z_Cdlm1bytcyWyM22*=&+<&PF}t~x+_IghwZ!`XccN_bz10*xE!(*M4}1f z&|^_lbeKWk#K`FBRocHwuxT^}y!th@3p%0`u~2;bQ`fgQcP(~^Gx|biBv#gbm#At^ z%h33s7eN343TQ~$6A&vE9ZaReSCAI=Ejs#HmlorxW@$&WpZLL_0KhBs&FS@fe;C%Q zc9!)t_V74t2p~KM?kbSteCw;YxoNsP9d7bu%}l)H06zVvogED&bFR_~2LnZ@sPEa; z8J%u~&U65lP{up^c~sQF)_mgu5b9Ef0nyl!y`ZN*?IhEr5suifm2a;9%x4Ir4`JIx_qHeIfqJTA=;`1;3JH>)X1wc`C*<6FRewccE&M zaG+*(EH)&NmixpT(98aS6d-7r^ub|L&-QXcLqmrVO$Mhcnt(yw975Cr-i4G=iPtZK zcm06oY>TjKRYF3dA6f$l@^mm5fNkz`t|?}>Q>y$$cP=F!SsQY=NXd?6X`BjI7kT+F_q2NZKQ7h!} z&zOjahK#R3Ru7edpPl*kC6KV&gF^pjbbBI+@629eaBa0<`MF#a8qB>e0^J8UJ37VHf!9cihgg8Iq%!`$cPCwH8j+XqP zvaxondLq-vw{d@coG*ql-m!!P+1}os83yO9J9zD5rVTXd1I%T_*9j@Nq4XHPq2Asn zV~n`JQ8y-53JAJSfM!;|lUW*xkXrx_rOJ8&qzuV`^V^y4(1e3Q=4$u&ZN{FlpG5HoYLIt1w-)2B4@V(cxGtOaUkokhv-*{T- z6O@4_xA==3B66eSI|q>PkRv}O3fRdhTDAcy761jyA(S8x$jhwl<($+Yx4=eCeUR+S z+8JEYGkVAaz1R3q_lHpcFHg#hK>cACU}6T9;Q-IjZFCx0aILk#y|hVyDj;WpqK;M# z&RI<4^IBCi%|VNqimTFW$UFF|rsNZdtmJHMY3ZKUFSK0c?O^CUBSdNk^6kj1IqX`6 z{P#OqlaUh>6Tj9p}sRP8HkmwO571a#Szu_$Wm&e&j6;m!S^9%^RU;)egXHQ5rBA@eE0G_wfb*+`g@4gqkt8%7@m=BN*UgS(crFij^Gia~btgG?D z*(zzZ1J!$cRU2;I%&_mErVQgDEQ5$!;&{iiu&LK!f5_>DB6u4nip82FM5uv`R&3im>F`p{%| z^?+Bcu3jw1RSvTFr-XgsaBcoAt>ZWSw_5)Hu7r+%<6qkTt=s=Ul+f{s{lBdh`0X#c zCobr^;1PcGAL4+O|4zoUA;d23?GC+Q&ddXb}JB4}Smwm4$%dvNrBH(nUohoG1c0yNR zyozGmf>TE4X8CnetlDb_$ijZ4+DWt0 zNL)XzrgPI$1rczKT|kTXOaBS?K~PCHlIb^+&p^=%5Vb*Rc+pogrOcE!WqVG7SYN50 zajjEPGFLA)}E*j&x{1t5i+HH{6maIu~OqGN7m9ym(-VIL+A*3Xw8gm~t%eU*kVSU)tu zGu-{7h#ZkzR_U>a-Dr;hCWbKQpgSI@B8ES5^c$1>S`_6_q@7q>#!)Tq;LX~2`pWa* zSJ@(UsXKuoP-0@DW?K4{!1t7Z<{41C9Mu0tTFqdABuCR}q_9ASbk6}e|KN=jJjyZHj~5GZnMhe-*MD|8khTDK)GpphFC&KR=W^s^`1-MZQ28I0t+q(*8hjJu#=xqZvDA z%ae;<3Ib0HPc@PvU&u;-`uIyTp)LMh#j7x|M+OI^%`9W}%I;k5L*hFGlJKR34T${@ z1DmZb!=gb}NFuJ%=TGQeJ3t;uTE?P5UTmb( z-tEB+Y+VA{WIxeq{Oxj>S*T{$LGHRb1h3!%u8nkOrU)f^&aCmEUajAak3}O?l`9u| zDA!mjUBN5kAd>wQ5wC?ctr4%?MD{K({!u-b*{y~7o$k(1o$}MYCWd73@BlKmZfK}} zhwHkfL9)B1?nE*6X2$|hKi8gx7D4%Zr$<)Fe^vPLu5ga+f~$ut+b60@8XqGs=f*Z9 zBw6W@z*zWxI43W7|H!Ui?hagUmnEy%V;!-k38)5H{m9vZJAEOZO7_q?+3N3hVU2CB z8op0a;fNW@qu7id!5t*slqoV1*|gfsb>ArzjGw>D=)G%`-W_O0g1kO%wPTkgSS;31 zrGiYUtW@{vnaF!bY}HxCki69sqO@F>&&sIU4AS#_J6!=evF)yU>*waty^fd*ysG&K zmd}Y@8}e@;uq>}Xn2txlIJR`PS~m~$wKl2+eI*j6)1EGljoiEqqlX)iQ`9&QC}xl% zYQ)Z$s)aTjw0QWFQ0^MPn|#$jjxQwLKX(~iOdYTB_}wqq)~+a%sutHJ`)BhC%b%8t zjl=9m?orOD2_d>7f59sF{)*47cu9EB*KXzJk~4-Xm5T{ft*iVzPLy`xTY1*b&Ic=<5@HRaLH)QD)Q|2r z`JhlRX{+BEd@g|`$+`X)BD(c9wP##P?!zqqa4=`#u)Oj#tm;T!Nk0Z?+KH~lQ#sYQ?W(mc=plFc;%pq0r3-X( zXsQs`10wW7V<*&wIL?Y>nYAX8GUno@+5Mti*UP{qM8_I=b3O|uLhGXQ2{jznyKARD z0;FPZIYl_m7Sb$2`o<+JEXmzIhKFN3ZKp^u*UaF8Q{-!eYCvv|^Nu2Zv4BoqOX3uGTw2Q37FX!#*R? z&5Yyz)xsyHdh-MN*uYDG>fUuiv#2OebD3=HAO!sW55nFuAgb?c^w%$n3L*v}ARs86 z(v7r&bPX*n3?HgnqTJx20l%V;OcdZbw=cSwCU z)+pPG6YoG9fT)o{p{BB4)pH#n@wwh}t5>bj%H&1Ej&O@Tc4RA)>{&M*iSEmJhUZlX z&Gc&Q7xdC@Kku%WV#kOT4X2h#eo4#Bl zOXLv25L@_mEk=4vUl-}o9W(ey-RFTvUu5{Iercj0;zcWmBu%m1P|z6)oZTpO_%t-;Il?K0PWrucPFPJHLQ< zoc{0^y?b77?;6G4HF&5c_9BWsG0yE%)oJ~T0-Isf4ej5k7kYqG0G!FcfjH;YUMWZ@ zQ>!W$6yg7JN~yLsE|9QDsg1CW(MCmip}A*8wpXr_#lH=GRq1xp+>Ndjo)y=eS<{)n z^lOlzSc9y2)g*@{?_4uGt4vaif1&|`=}qW@?1iY{8}Fd&+y*!PbL#J|J{K@*yB+h- zotdOf^#2)5MkXV}lr#tfwkul;>Wb+vkZ+7MIY!-*OCl3I7K2asYe^1P1g3r>Si)eXE3S->lDGj=hb(@S@WB{=%e3G_Pd3 z6~wOaL{yFVDjO@^Vn})a{4ViA7_a$7t0ziZGKf+q{N0}X#ffu4ucy!|)X&>X_mkMk ziSDh0eyoK4!*$D;J@e=27&gI^F}2+XjxMS5M3$MRcL9@IEmyAZalV)^nmltrr)*u` zrqHBHh2{Di^>dh_V0TZrh-GJDu^4kPNacg&Z#Cp zwX$>u(=qT~x6)#vxv`I?H#A;%u68-$uS8sUtVZ8tE%sr7m{01>2O3kf5Zj4XSB2zU zAi8OuJKss&GjH)9CzMgHp2^SubV}B^XUfMf!hE8=*1Hb?6+9%oJbhV`9spoZXeSPU zuPY^xcQPs}07CEYC2kA_Y&|+sW;qcP(2U z!c%a~LE;9A05!a9eU_TZmsUDY_9rS(bkCxoGlVVl8T|Sx|i3@`z;( z8c$aQRzz>diF}zzEIX#mo>MpgFTd@(L;PmGFZ#46r{$*}UdOZux@u0&-StPi zUNgar4EjnoDR^Q*xV+6DFc>99jCRV=`dHPuOZ<#;txdP|psXZ@RnDvMacJsjp&&lGMU z+=*f4k<(7QHAg?2mYvPBsii#=dG3Av+a32_!9q;C2W|~Pa3LVn^bxRZ3{o$L{!iCcV9b0wxzX@vcbP)0}egVy>^gC~H270LK)`mv1JZ{EE$W zt*`b@Hpz6kxt?vmI96g7Cs4`4yc)3&*y3+E(ffd-DNJf@$)khV($_qT+Y@4lna%d% zV_qv1Y6dn&`!m3y%4>&}AIZLxFu#o(yiWmRJ)KrMCc}ZR zI{V{LvPrXMUD-yRiBAz0|9%6x34orOlo;4Hc#9VLF1t~+yszwj&Hn8*trnv&XlIkBfyAerNkuxmKRAz*Gk7 zdzq01y5S>NH1lP7b4Pn*?%cW06hz?}cKy9AYi#zk>$x|!gaOj5DUgI&y=99py4s8R z+V`HpoMqEW6&#C|;5ssCrnYMc%r^hNN>_)ccAe!2zFX$2Qu!qNat@5JjPwsEzEnrL zl|xP>i)UxBuA;%cIjZ`nu&6evcd?+mKJSC6U?+rgjvX~(KSty`@K!w^FH1fYGr12l zl?7&VyEIO-5D-rHz9XV7j9A6Xz)spTQz?(XbB^;d(FxCB?PZi+Zyt?F>sEZ|_NRrJ z0z}bb;zwB?6SC-A)pZe`rU&iIp8v#v5^nYo!VG+h<9?fo`|zA;mu5A)E}Z)hk{}BiXV5K}6FgH25k3<}jcdQ3SgQ(LcZIWcmKZ|9{vYJ$U9i$c*`{VKCiX5LCkC{}V z1||1JWzzI1spOAmEcukRx>t9NC~pdz&%=OYA?b2prTW8i73@(r?1T?Fp6v^I@z`P? zV>5;}P|F;P&!{-oR91F5Qb=FY9BvZL~fFo=8u}T_JwIis^bM$h{ zw_I^Hks@aMT^Rn)>ssBS3CWpvk@eK)1dYz8R`O)+<>?G z%&%Qv2#46ep*=`e)r2nXnU_XHW_0;Gl!7$ z#mh)ggCN6IkO&B2zE*tll~gj-3r{d9!F&(Cby^(R04KrPd~ZToW}2xHOg%BA#D?v;UJuN1HmR zvsF4$rh~$XFRW4=Eo)2J-Sq+7pT1ZAz^*_rjS1jE@B-5pLxQ683^|j&@LtL0e=ijF zpY{(7SJXds9RTd2w+qPQq}rMf$fbG)23S89hCBaHOj@NNZo<4DY!&G-qxV&WpRP;~ z(iiolGXA7<`Jg{CE2SRl7j%B)J-44kGQI#79J02mM75kpbDefw*=-HKf@v&v%DdTZ zR!&p{8Tg6S9^I2r|X>V1|r8JRaS>YdiI`lA-ll3+|*WSWfMBTyO9@O(AH zvNMxnd~k4gcb7OV1=9VpP=1jl!P#guX-YGcV}Yr(*nWS{&b|`W<|LVBY;$_}{5zze z%%Q=kr<@dOQ{|V6ko52XBH|@#6N?s|E){irnTme7oDu^ea*JjW;w3sIA`d?Zxlp_5 z2|fs#&X^WZ9!=lvo!`~jN(yG!TTRj?3TF{rS*p*2zQ}m?HK9n3_B^aWe)4aGUzOWl z=W*cC&F42-uc=jl91s!Z6GuZiL(6%J#0jMRcU<3p4RDs=Wj)Dtj7|mCzv@XMf}&WY z;A{g2P+>r}Bv;d2#NU8#dUaZb_R}Oeex=kp1@4J2#ad*S1?2oybJ`V00b4weMuu!S zGYhBrEVYv--Qteiv7c!tq;1%kF7m9Ol-s;+_ERb-cHpMhsQv+l;QrxchA|+ zq1Z8n&I0$uWWPj1aD{*KP}TL1Y!b`CDA)x_m}&CL?sYcC*S1)gy*M3;fr_J%dD2oIQAB|aR~ zmTYoDf>G2tw1}lSeH`a1{sN`v|5tkiUZk0VzyW)p?0V|Wabq>Nz7(A-Dvq2j96*U2 z$gq|S=bf>Y99g#gnW0*2XlAqc@3=cQuUXdlW_)=y(yIoJtG`iq^L$)>W)&ksD3Mw# zh%$@qRq(4UNLlkFOV~brGKXC(^tAV!LkRA|wRrw}ZgxZ`eD2+5qHc1pI8Qr=jMK4` zpE6$hepMV6SQB?**%XSvP+kRBG4PX3zL1~)XrAR=orGc0I?ckuR+%r$=6>ycg!*W1 z@G*QE$G3vUitmt*S?NS9TkkW?A$hcpW4?*HAbd!B?V2s<=lAQ?cRm0_!cAyBfTq2J6=az3oJ2UUU%_?fo!)L5 zfp5gJ2at`!!mqYDE)A29HBrIb9tzRk>X3`}_~g4IvUD$cFfTiTKl`qyj_bY`CXxQ@ z(Z1B`P_fFLJFcRldIT(cWd=UGIr-Gr@?_i}S(xX48Iv60G9erq9!`Avpn-dLa5>r} zwsd=zOq|-)ciX%gIjeK`Z+zhRuFubjAD@k!qKki=uBSUnO#Cj*M&|Gi|(qNa~>-6IeOA?v7q}LGFGlhbc1r3kFj&i#Q z96;0G$!#{Db{Dl;j|yga0a4VP5A#cgZatHyW%Px_r^Ux#w16GP^dG8LRI$(MWReAA z9zVP14@`2r=;>WoT9T)|Vac?jqE?pym0>ohwtcBVY0FSY-D2DpThf0|fj*a`Q6eoK z=D+$}y!NCmiVfv{j#EOBhDf{C^J%YjB?D?r|HeZ}V84C<@Lx&)lb!ef91Q%MWcS}Y z`u{)M{CEb~K}viGtB#QPjqE(QY@f{Wq>cQ~r=$MiSz*pqWF1a%Aa$uLhfd8~-`*5q zswn6Cb>7Vuu&ERdw|v5LVe}V4dpQm5g+n@gePMlU-*V3UqqCf7gkz?&1V$U^ZHB)t9XYLIb2j4n02*}5r!z&8Z-rrwrq!&JwT!looyOW7)Acy&7~>mn z#YdhPF?#VzhVotF*`D9OzI)CGiQ2Gv)PG+ruI($|1`TkMA*<72-E=vw4;GsT`yCgq z{SE{j?t3^T7=f-#YPJ@{wswtPajcnfogkbmnv)1i@Fvt}l6?)wCQogu>Lv)Zt>pxa zr(-{QCAcF-7F7vD@8Gcson+{9$yq}oPol>DZMna{_?^XH35OYMOYk2Qrvqyu_kgA2 zmq<_ngIMEB*r}-P*@?_s!^ZOhv)uwsW7{>ij3`n?Q~}|P@5`Ig*gp-1DU}Xq{I;cP z@>-2`I3@fL;)+ z>}WnU+ZzFhG%)}Rmd{@@60eGdz3Ih-ar3woz8lA3F-zSC{d@`UJF;5e#Otp!*>a5j zaO{TWwha88zPHRMgz$G)5o`X73T-3lRUYpZ@^{ahFZ+I{&Oovd0yizFYndQd&m6C$ zq1;5#H(mgAsJ>S-)k$1*;yEuJ*`W36Qu9!yDLB+sU@nvojmMVDFwz6OY`+I(8zRq6#pH(>Ou`q7^ij1YAx-D6z=t$!j-Y+7gC3pnuo{5U6&1JqB>SX z!$kO(UwYuGQ1`U&-g)7#F2cyzdsf zmt+kdjAwy&RU~HyHj}zFgBirE6yz;DwC`B{RzV$iFYkVwb={k3c(>IPT>eD0YH)Ji z&1}a#x72(-&((L=$L?0E1b4Fh<4nCcW@04}qK&R?$99E|#FU`gE11&8IS5dCt&)k# zsrj~giTd{Y2}84B%Q<1bF+JCDpP5a~Ta|tv)nu!gJWfHv`VGVH;NIw2*WJ0oqy`bE zAA!QYAzmdbeYw3`q@s)Z6$L3NqK&QOzU48}WI~4fMM+ZtTr7+q)cP z+y;{~SlsP*qK-;q99_R?@0t&Q5rIoePwa}zjprZPvL*^xvj{m_dIL2BgXX1iCTeu{Cxo~5MTPXq1Nml?MfmXUk+*^OGvhqj%I z&pNT(L);UZbG=qNyi#p`2`557I+p~*D@Q9cTiubt6m@?$=69bdY}tm*=R27m5^5f4 z=Wk?f80i0Ts+}P1t`AC2xA)m?d$uhbR=#hbf+9^0#1rs(DPa@gG;%Dtu2l%5UTlI=P(|et~3+Y5974Q^Y^rF-ZT8 zs+Zm(`rW%;a^7CgwWm=OGNwdCotU;|vVHuO@UsBCg+m}z=bp%W6$uf+`zL3?Cf1$^ zFHeMJh?IAxGV-b`r>LkIfw;VK*7Uh5typ^4UwN+s>uEBQEm%Z>w>GigW^$&Ccb0tW zFVVl(=5WpV@P6AbBj256JEIy7sjpSFc1yj{b?(hL%5%%s#Z!qHt$aq*bvrv31cla5 zSBuM(Dn8V4T;3dRVDB2PkowI!U?hf~fJOCvYkC?Mbn$kF-!*6HIhVecQ+#dHgx6OK z5gbDW`n-6M$`J9bIJAqh+Q7*U4c{eT8k0orPo}IEyELS%IyNhDYFi4rD|$JYSM5%Q z4o*2OHV%!~-)b5kUO3La*XN^{sx95fBnZQnjp@MVNbE17>)tlcxNl2XsIBb$p1r$m zBrd|+fSivfu%D|r!{yveUfz=g+lXIvTS7?oUW)f1OxtSk<|QxrlAUulXCzmQPn9!X zj4tk(-CuZy`*>>k;ONd(S6_q9u~AE>j-JilKmDlLegCih%0t`SvwkB~mkoFBsFY7s zf?V82OoEiZSFwDol_qYtWH;pERa&f8By0gIqrjgUtMlGX+nG) z25aj3Ab)d8iMVldzMVG)@w@h|G96x;1rLGGazz+keBx%Su ztD8M~eoVD0vA1Yfba%5^XTtf9r{b&EzEFh`eIj*5hM_f`Ct9Oa8Ahhpyl|nyn3&<) zoee$s*D27Sw?7bptsyExom0Oy1LA{706SsQ*r`Y9kc!iV(iifpf%ENgj&&VnPzH3@ zzeh`{=|`2~)*JKrOH>jylBOfECtf?}(+VWYr}(C(UxRJxZTRSTWo8y`RvIXEjuhTI znZ0LViAeKpndppulie`I3+5xWmm*Ud#@YwO7`PR|hRz$WS6dp|B-m~d;y`o=Oh4Pn zU`pvbzwD1+s|23sp&g<@JB5sMMir6|jOMZ#4hdg22%(;OB@B*tkdc=xToaE~+$9={!V+nDVxreqcN{V>>TRR4i?b{3*q9G*3v;JXWq^grV`e zYXQ_Q_Hr@WRM1+K_REjuItpA()_%bTm$DpFc|X|j+C+w(NCaY5_s^u6mH=tG7(S*| z*2~HJ>yl62DbF6LUL2ma1rN&f%kBJOF6wQ(c~iO%7AlQxw7G4`kx1H+=~3V^Q*9FO zKjp1h_HM~Rp&RyDNiRH^Fwn?46EY#$>wU!#cOgHkVDZ*wrjAKMVH~@WHvjTl`)HVz$IxZh{;lKG@z90Z+004xg;cg>5DzYb;X~E0>aV7AR-DZ=VE47SvMG%aiaO}M`O`47mDqb1gf64h}diRI;miA_PjU6Zkaaw18XUe#{^3Dnv z_c_jJ%GT?t^HVmcWLaA&PCc1bz!liNZ!a-Xj;Zu`)cMN{|7AD-sX$ zsEa`hLfPgsGPrQ^-G#8z<6quZyB`c>_M2I3wF$B*sn~gfe)rM6a_HQ?G#%L5ACtV~ zr=zn+PmT57QPfl=Rp_aMG}L!C=x`ghB>rP0Yp)lAz)XEDyD9eTuKKIlQdD5xIr&)b zemSN#CEV?EI!f=C-P_5utB))^xUa zLz(!lm!FJsT)w$k>bkH{u4(8%kTHJQ{KXZbUYN?|ko_G~-0wY(;!5jt-Jr;rNMce& z`Eh3mKqZgeLO_c`1(A}GiSK$P;EJGqn+4eOqe?D+hK4%lZ`b`>1fqQV0 z<++Lo?dXQLWe<+DyZY60NS7h`wUde0EvaS@v@m?gMlAfCS6j8dkR)Zi?S*cskbwHc? zaZnT0xlr?U;`h19b~)d)x;_7er8qLh#|FlB5x?4X8p^CZd$e-r!8Mr~gfC6Yg=NX< zx=E`D4HEUV;!GZQV}nAaPF^;%8Q!+vZ=NY$IhSFezQjWlHan-Nez~(N-`gH+k@3LX zW5MjWlo9A#V|BE1w;pay=IP)n&)`%Y7GYp&K3lG{!7c>J+27K^Ev;K+TjH(yor>ku}f{cGc= zrQS{hJL@WB`nvZIJ@2Hl<&jXjiOC>DNT*5Gzd$GNOi|S{;e1QFop4&;WBtxW$iFX4>0&<7i}M5bTBk%A|H1WR$mx z!h6AK#fC?aO<>5*&<=UO&IQM5*vWESS%&*Sg8h=+dz3^ z&A)u=6M8+7@_6MC2ts@hGod{oj+O^WkEBj{E+5?P zRFiG4LA^-M$?weOY3T_!@V$<|EM6;$-cUI!0JVW)salHK&A~Yra%D4V;l6`E9!vRp zV2Lr(M&L}C`~0NT{GdrQ&K`IAroxDUs=GkHEAOEAUcc*9YUYiZYPlr`nmpN1w0YRC zG|S*P|Lcc}3fmBuGz#lH%u?Vj;`e&?B;h;OQ74=)K`Hoyi@v%q&aRAz*BY4s(X1|c z-Im{6ubE;~p~ZD9EzwO83Nxr_{ecNBbiVl6rxII4Fc9U30k&rVgB5FXk+nV}x>Y{D zB3m918B_U>q~B~*YsiB#os!5XjzABj0v)p`iWLbm}-?7qQ;dF zKWcpY^M#$=_m=|S1{Q~tGJMgiC5e_ChP@oj6^_C>O5K)xdHL6mI{wMho29JJaZJ(& z3C&PPk=I^qZ|%GKJP}F>r%JF?|AP26wYGiCu#ErGb7R}h`r*E{3-L(MpvbsXH{}6g zDE`ROXQz)Lj1fnqRDVrY?Z6_wv}K=a;^E1=N~EDrcZ#s;cd%{hc2&ya+(}t~5pHGV zWC@?OIRDVMxpy;z*RuNr+3m^8>yl1i#CHve*T$@azeH?X?U1NfX-xPi=Cn-a{OwiB zO3!94p8V{cth(brT}!UvAAz9RPV2RZf)_V4Au8)9+gp3qGraK|{KnJ_j>1(mqN-3eLPS>b0Hte07lkfmkrfuwuepO7x_28wJ zk&*Q`|KXy-J2MVSws?bC!JP>VidmjcFE^lfPG>`)^>kh~MVElBep%X~I{{T4C!fz8jcv+G4^?AQLz$Mw9oA5SV;mgYW&woN#2IEBt^R$bu2F_y}L z`shLr=h-_#ELuJIgE`o-mFQ@`wcplos|X6}=APm4%TPN6G~8NG&xXSxv}^$s;sRk~ z_--e_>*;K_xn&H*5u4PLbdE?Q*v^}((?Va6b46Shy1QcV>M;Fb`sLYx3=W0^1(d7J7;_OTdT5&e`S{p}Pr`J=y zFYg(gPjE3Ekp@z!th$zK^kh%G-4N6xsPg3s0V|F7GV(#T$UJ|AnBLh<0X0kFTML9_ z{2@8CW6kwVyqOd8E4IZr7!l6zzAuiVzY%d)k}>8U;aJsasIpQrniPDCdm-y_fhaX8 z8hB;jyPx}n+qGrC;^&01X-u%ISj$ZDXx{@1@)JUTXJ!&WqNJpj{*@?#stCkZ;ke@{ z(NzRLpP)-(=$YodGPZ`!waUlX!Ic+I6VmN>=BMHH0A~xZ&5wxsZ{ysDtq3KSB0qDO zzI)7aWZuR;fV70OEf{ThecPFfEMO4Osb#(@Qc;LA^L=8V1=2tZe`CY>=SAQae5~-0 z`w5cx-t9{TaOtML)MrbdI2*lc&zW%8M)zsEN_+;Kzw4a#v(&+E7J+!*b0mbAbb;`h zz@=sC%MBCaSNdk3^o=tD?M2b0Bfpy0)@Kg?T$5vQY3lL2w)VsC=I!)7xmuV43yb$P zyv1>3)0!XQKG{LTGnRAi9zS67AUBw3_oqxXoBH6A`Sk%{NZu7LJuxKevJ$jIImV^0 zSFK8=Jm7gIQ#+#Os0RpDUf3ugwi=+3AvYkj>jzkfp$ z@^?mvIT}_Y3&mTo)`6N(pjoG-GhS?le)(%S`h`U@`hVN?->}QAfc%#ggcFvRO-xt# zGTG>X%=Y&%-4v6p^0tO!D8{IQJLMYa&_c%si=7Gq4*ubrydt|#qAqO6>bjE!Oym~+ z^7W&+?^*Kb2e1_gHNsHC9lQLfeaE5w?a|Glp0fEoOKXbX?ysBZ$Q8Q2o!Q?M2S09w zwA(wVu$}&of5jlzZ2b9Ny!_|Jj0{^)BtwR;<<~iNY$m-)o@2rLXu1BfPt_UwyNfJjvW3rgmIv#z9%6do7+9GB`kdNS|8vOR_Ubp9 zW%md>d3;=zu|Q7!(umyB?}Cq*vtvvNX)xB_1zxYafnN$)G~&>VJ_bya`QOFXPwRAX zY6~CQ--D!;q$KN>u{fJ7Z zny!A9g3s2ugeP;}1}v2NRLQ|Wcr=_U^*j?4I*c8ZJBr1aw_q&N7Bjv`|t0qpi zZ|-UYaFd-Bi?ln$$aV7#)rN?*(^m*3?pyS!kHc3#K6$fet-!6VNM*5betv(8G}5`U z_GZNuwBE=wboZf1-BaXRJ_r)kd&6Hg(^1}Vf7|Pw-H$>W@yAE`ElZ^1?(icDtB){j z^j6M>tsv>!=jDTfO>^FXCM)ZALx5nzDwOO0)j1G8hgR0_iU$dX* z#*mqJ-kncY7A|wkE;kO%L$&U$y2g^#|M>=|6(rJ~E?M=jiq)$#;>oTwex1AfDc1V- zhX_NzOL1r+r2t9OZQ|rB&-_t?rquDgzUrmR8lujof}d3-ah8J8iY!Aj!n{MEJlu|G zJJ#w>gzUb?J>Bfegudj8<|o2`S&Tr?2s$ z>2Vd{Cbhwx9Aox~Q~I=j3Cm&XWvq>dTf5o&WC+EtYzOJI^;}g6&Fg<%Vv(dC#K$0_ z_>8p>_Y2tdoalv2Rf>a#gLVt1JJm?T9iXJs5x-j}wZr=lrW`0ItK| zJN!`=4DtR1t4=TgWp9Aa*a3Eg_xS@{BySHBSlV^C05vATW)ZmG; zKi`t}eXGODV-TPUvO#xj!w`DWRx}SP+GbCXT0W+7Hn&Ua7E135=^iGp5&kjHu|cio zw09||ne@Cf^%MpA{Z7RF-xCD=XKIDM>ru0cfrkbknO9~*q8?=2|H2(n&t91Y^F4#s zt%wx>Z(t<(!6LI8bgW=GlrHY1bu^s2ehwcQ7>rCA$l~|AX`zF9mGRrJ08RBThXt5u_?^I`fb0FgX;Obxn2Jcs+C?N{1EmA{pG(&)-v3%K zVjP!9Ax+bE{x}`@v-Nfq~xp)I-OrT^VfBS{_kwEk9&#u4tg+ zGPqKj{(u-I&r+(;U$&nzdCP(SKbOJ_wrCnRnfiN6&m$Dxvm-Q*(K=dCHP$t4Vw5$t zmI#Zdn#-}V#}KxrjLuxAll6aJgRl?hY!Xf1mY>HdfY^V+Ygmc4*VI`Bt?CJ|+K#lx z)S6}sUY@0YmU1Wxt{fFk*L&1jHpu_y#rO*9Y|kAP{;(}I{@1&W;rBK)d0pzO5=`r9 zIz4YBubavdvd%h687#x+ft05P|6sI>sLK?Yv|McGgCZ;i&-$OtGiovWie7)&%^&{-;KVh{Za> z1*r;)Q2kdj{`);hYJC_p3rpuSpkNLqtv2g)n2kIiBUA>KTL>y81*3TX=lNjeAQQn8 zlW-d|bMtTk02(YSrlP_}3r!&CvruLI&uxE_)maZ|$M4eJ=B%5Gg5QfQuMa}CDdUOF zc0Z~y= z01_jHoEKe`<%jjS!VZj z2s$PIBl#-jPa}xSIr?Y({`Wf|ES)u{<~mnZD*x4hJDrXNpsu#^eB5%ZHlr4WYPoum z5*6jmEF{viQw~7@6nkWJbh2Eh7NCW+hZ1hA zuQwb~LS|>P{BAtf2htj}t7xr`?|z{Z;eAs&Us+PJbe#*DXe&=700A#A=gS4%-kc$C z_iu0P(PJfs$R;3z_!gWERLx-1+tNd2zURzO%YNFDkerP1Bgq%^g~v#e_h$KC_Bs;* zpJqFF#d`P~d4u7oFO!RTVjH8KI=;;f~@M~&o-?Yrfka5e_Q&zQ}>h>?->Y_6Jlj#&700zet;3yCU zYvbYL%UzwXr5G8?b~1Bt+#a+Onm678h=^XAfplK*_4%Rr&G`zU`1S8}x8~yF58WP4 z8$&+f%VR*+KN5R7J7n;kk%Wz*Li#x4HK3W)BIx?wraO%A*3@|4@3eM_zyOcF$--X^ zqiva&r*l6Zxkep_!-U@z+RkCx}z9$OJ^XGGj=qdhVzg4gTRhFDOhG1$gBQ{0bz z>H7|RGs2gA{8G?yHLUdQkedlnBqUKQ*F)(kAayw)TX`6O`r{_(=<{M`0cgd+PzEikVvK6q7aam8Wd2tXz6h-=zae*ME4QUP)R^YwIg@| zvdG20ROl0eR{|*PH{n&3*t3$>-|S0A?Zsly+OiLg=}HhAhF>NnrKP%X$F<)%Qs$Oo*b{X@v?7!* z&68^_NRuYOjKT`ST_Pb+wP=(2gV8 z0pu)$+r0JWa=Qlj(hJMF8ClJcKull4Q4-3Wu)XbIt@1Q4xV)S-RP>{~e8Me+MWL?+ zJXwi8(y#lXYHM4u+nBFPDe75Qhj27--Wri%x8_H#y$5g#H=Y1ALX(b+^RxdJW7Gvs zYr}=2M%C(P^KL%7IS^2#CN-6jfexttQeCZbQwL;p3#zM$sr~%5kjP0cb;ee4Mc?yc zsXoJSU(ArOc54r6sQ2hhF^(wgRb+-UhRy2LC1#t!i#;V|tkObQLiaDx;H`gBjb?>3 zfS-hL7*VmZDUNLu*EN~EQ#nZ1Vzp|ZS4=lcuNtp35EgVDy_5=h{H}tYUvR@;Sv0SP zwvg&0Q+=jr{8O5#41O!WH!Xx8ldpDaQDYNkw`&t7myaI(#`IYZWyCA5vNJXlk&;^K zs?UJ8hst&9(e{2wiy*HvRermdRSz`cg}(sojI^oyCIUVJ-z$Z&KrQMrxutMMiZV4@`( zXpYOqr=^iCWV+iv7Ok(#On-g$ZP?MX^~zmzps?BA(-u&;60{jd49}7Q>IMi&>>8Uk z`67RoCH#4X4BK}~JNG!B6(IA_la44< zfS9E>7h11!q(Xt2$?LYKPt2>k@|h{rNlXKx`2Yq?iv%sh2>=!oOO!N52&XP~tE|v# zWdDU8@jR90!yI-~D>yi;_B<jh^fZca3<084sUBLz(449Q3J@g<5$3Z(56mb$XL1IT&qG9 z{AKN|Rn>?Wl1Q`XR`*M5tOgN^#R1h|l37$;^;|7R3l;5KF%WM7?{kOIOF$VzXLI@3fW05bwAbbg=#6rb8n$&udP99&)AkT`EIQ>{@i+@#rgi}ser zi>^qGwg&)}l>kSDFxuyxN6vihVIi95bOA#^0MA zX_!sE2T}iMFvmm%G^y3=457+u#USjw`TAY%%gDM6fVu%_uzGCnbuM#dM~C#<2*62|3Wv%FCp6*5gu+e z`6KW?zVyR_&3w34O2uKs7sOvF86KN7^s=3)voZ-%BOGs);%xP(3P=B)qV)j*fof?5 zXnBH^La7rubdiRORe((7Dk9ER3Vj;==UV&$_PHr|HiFI@uwq@Za`&@G7(XPUucf;s zZ1TOwx(epfPv#mkMc;8b{CS@Ye!Ihd18fb|&jREoE?;(Qi6FZV)XGe-{mZf_jOQ#VDM3%s{lghN zgmyh&3Z*Xnt-n}3?^X>WR9~c5&JduvO=8r+st?XWs5NhsLPngMll!d!zosiX@@4T& z-DfE|NoK9Op+ZF`4eg?%B>6|Fx=3cPGH?|_%+8qohbhB-%KKWqm9vQKMJHU#IHfU0- zAKUOc+p`UMk*^m%Y2@d#G4%cN7=VkEp%ihT&>X|Ne?1xnyA4~f?Cg8lj?P^ujMSW7 zqg^l?A5ad;`b}3?fecaE^l3-fHRMut<=ZReS7P2E+n+p=@6kEF`nD9B*T6(7oPJ%V zRgr+A3meWV2jC)NTfcLHTu4;pMUnq|Y~U%AW_=q~N3MNiBq;}+12fhnFxpr8rc5rDYOox{K6_nQrmYK8$`Y#(Q$_7}N0H^-Fbx-7J9UIT zTiOjT>iVs&KwM2p62aiws(HEl#?T#u-bO)Io?14PELStaY+cOv#U$jPdhL(E^zmVGp`ac-|xj!L#ak*V(TVaSP1{KBe)| zj-i!?Or2Z{&@qR40I5{sS2}E`3v1c?ug-COG4?oOZSLRBLHTf-u{@J~kv}A@9a97f5D;n(epoOtB!`ocgmq9L<)o#>JbIhg`R5VH8otA zBA|3+DCuG7S3ZN>g$mO04*=$}kk3vywwO1+`QiSrSZSEenHhkmJj&4@>H@2$>x{## zcc*N8J8NwJt4n0N2}Hhhip7g zYzZ()=j%}WOaAN)5$S|^kZ7(tx0||}+S?fIW7lth^O>r3N~Br5^${>t6IVaqJsEho z|5rc&5}TGd!=ZHbe8b>ae!IRzpx`KD3Fi~;hzL62yc?jRG>KsckU52rGspj1p4|4f zR4!%O^-%+ECmzspgh?-@v?5)?`A2s2U+6Tb`u(67dN?nXx6YO>V%!{RgKSGToO#6{?J7e}zl3e}maxU`Y3Epd%9=H0v5St=DuC&w zLCn?ir^JJZB?@009Z}HrC5_#T*I9)@+A8?}+nk+$M^OF$8o}TF#h^j;s_Zo4ZNSxj z{#XPb|036$5?H2)s2Cbn9+3<0XsWYl5uN2D5W1K@w}A8VbMMfYWdiWR#-#TCN_Eym zr9m^`0ssX|aJ>Q&ii&BOm_81A+K;pot;LCB0ha8r(4-J)ViErb`HphW$8V+8x5g@_ zGg_!Dh=>)G%F;6^cNE)b-uNn8j=pg8w_dbaoDgz9_-r~9Td2hvj~-c)Ap@{!FxGEr zF_>py^KiTY%ttrVctiAe@%}Hhhma$OJAZVMyJw6gzu@1|cFAQ6rcs@KO+WRj2D_SMYf17hSwd-jsoxYd5K4Q)Vj z)C+vf$@%#QA~3KVv&IJ&BRcignt(z4Mrv~Zc`;D7UiPKt!%NYq=hf+UkQ(gu^>q)S zdPDh5dTOdW2Cd0P3~ZJer@;3@E&-S1)0=IxegK_S_{{%k)Y|8J`KNpZJ5y`_Xc)uK zQR9#b5U^q#DH#B&$d9pT0n2@RFC~M2J55{TL7=oGU^=z1Hfq1rrpMxPs*pEAQ`;@M zl_1Au0J~>^u~tg1mQFV(E^oP5hc*Bu7n=|A%0M+SXxsD6yjXz8_P0(wpe^@j8SBc!%XFP87zSnpwLmG7vzvv*l_lmzEsv zN@a08_jA7PIq)kB6;^(Ro-z~Oe|wmf_g3DH_U~he-qk#tPD)P+HmNu7O!$0ak2^N{ z=E4XYUf0qUJ&+}CB)Xm8wE_4?;{YuRm`tUEee7FWOpk#bh)qc?)fyX}R#z!nW>J`c zO=rSvCf8lP)hCwTB_=N;fN}~I{StQLM|zHy=;_)bys=f^R~N=&UZ(@@5C78t=5FZ7 zsW?Bse{0UptFAnAXV~4}pCHI4_gyC==uW@BlVV zlDI1^l6&Gy!E;14?uY|X;-<+zR)guho>2OZZPYU(WJ#GEe{WxOs1ZY*KU0jo(s@wVF zWaY{YZ$MaHjR707m@6f;R?0RH3H)&=9yFuZZx#JlvahLfpB}%6CqiA$A-c>{2sD~P zG@fBg$PE3g<+u>00gvs^MJ6Ca_h|U_kEQqowu3& z{VG_h>CgS|kP;FRaRDZooz=YktnS@2T*DS>5(rHJ+s#>~o8O5md+~P}ZzHx#{_uoj zT6)~ElEmbAqk@3puluqEdG9i5v+m<}bYb0O6OdOPWHL2JD78w)<}N!nwTfvt69R1} zCn7b+HF)- zR9d5%qt(}wus^gv;*qKJ1UQ?~v7)469tBYwf}ZG=j!v>x!VmY(pZF%qASL%fj-9L` zbHHY|F|mXJeL|_z_XUye;6ytfF|Nj+nl)Hepb+}X_o4+vOm*90ich|8G5v&idSEzJ zbXrXCOnR0YOEq0YNr`O#RX1}U?J~7#a${8G+wvURC7RmO7sU(^QVfJIr{CB$RcK6P zr2goc^ZJ`SKA-a{Fel+Y=VviqqgXZOEG%63zaQ-akH4VJg)8Yf z05j2W|5Un|ENd$8HC;><{0N-<`zy4!=|4`RkI`2FzNiagfkS}W|Gg0UH2V1WCI0h& ze=c_;@Yxpt&J?&(w&s0>!9v=Bd+ztsvNT3ei6aYi*=TxH$D6qUETf^JVQg$XqzTHO zf3%ziwpiZgQg^ZdA1Hi_hSb8FhvsFRf{mn6BR@R?ya# zjqWum1dUDsP#c{~tD*KR=o;|F1?}21A%V6NZ`uJWbwbJ|10^bQboYwQUd~wZ6sL)Q z!1lO>zJbv#08Cj~8G*8u2j@?1x922Rq7^hXNl8hWuJx5#sF}SSHDsDz*p4_xfVz-O ze9U5sYHEX0-C+_1iJ!A$ z+tvo)Miq9mWXR5*o>;FKY00Jqbg_MxNw0Fx!|hf?L1E!08bbomHVvI=Sfrsp3Y363rv$Dnvp$?gpy%b@w+HjG4!vdiF;3>i10rjE&W)RKR z5hjJ_!xj!;qrXC#A~cGPWizfV9`fXUiM}zr9SF)$bLyz75=47(J1+GCS)U%H7%J*m z(KJ`K3t;<>o7>UAK@zyuF>ZBsa+ov8@KU#{s|&#Req(s5kPksYH`&`jNpux6XTU)l zT|l+deBL*Ir*{kNj@)E)jnN`CAhMkxFu>6i&dR|tExTz{5C^EC&XWc3OR3}gN^r8E z{7`K{E}IFJ#%lmHAw9%aQB!kS>V2_G0sws3b>;4$Xi!W0YC%a!|G^=sa6jiT%wE|b zTK;~AL8sokw$U7b?U^ttLI2--uT%$-^N%Zl=4(^}vQV!PRMa)}8spRZ{tmE`El?zP zdlC%+Z|>LbPaGf2eh9dIKQf7YGmQxXJNVJUw^2j2U-&`rXsPA7ad)EGNqecq;GFQG z*>2Cy&JI}Jt>uE}Cul8LgRYJZTKKKxMIdn^j`E)8_FNn8yae%n%K3>2P-N_NeDjzy z?We!{fr`81RZdZ_D*#z_y${n@lNtJNkTN&~;?B&@A}-H8p7#L`vPzpt!JpIuRvF5IPNmW_0@@5zVD6vZrfiib-U9N_rY@3bWQ_Gu>HEstj~AugyfZI zT2LFfT?>K&c(6%|7pLpy6uM5oq9Svt2VnHE??UV!7@eb8J^(#P2R}0Ah0#DwB=q%D zPgG?dY6Q(cK9XjL`RHGi{T36)Uxhi=MENC@CkX5@sS*}(YA1$2E(U52DRU3N;DJhj zcR0NBPHRev8o(oqv}exQ&}0oPfM<3<9<6qWKQ(H{KZG3btqIegFl{Z&aCgfy!RJ{hK+P4+PQd zYY_OyUvC1X@)hJ{Eo6LWblblyKy_>PZ71uCD(FiESJ z*pqJY{^U)?!w#r4A7CW-M1rI2ZQT*WQWle%N%0AIG>zv>WXlSg8$T6_-OeEue>n=^ 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 literal 0 HcmV?d00001 diff --git a/includes/fields/other-entries.php b/includes/fields/other-entries.php index 20a621b1e0..54574c9b87 100644 --- a/includes/fields/other-entries.php +++ b/includes/fields/other-entries.php @@ -16,22 +16,28 @@ function field_options( $field_options, $template_id, $field_id, $context, $inpu return $field_options; } - $field_options['link_format'] = array( + // No "Link to single entry"; all the items will be links to entries! + unset( $field_options['show_as_link'] ); + + $new_options = array(); + + $new_options['link_format'] = array( 'type' => 'text', 'label' => __( 'Entry link text (required)', 'gravityview' ), - 'desc' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), 'value' => __('Entry #{entry_id}', 'gravityview'), + 'merge_tags' => 'force', ); - $field_options['after_link'] = array( + $new_options['after_link'] = array( 'type' => 'textarea', - 'label' => __( 'Entries to Display', 'gravityview' ), - 'desc' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), + 'label' => __( 'Text or HTML to display after the link (optional)', 'gravityview' ), + 'desc' => __('This content will be displayed below each entry link.', 'gravityview'), 'value' => '', + 'merge_tags' => 'force', 'class' => 'widefat code', ); - $field_options['page_size'] = array( + $new_options['page_size'] = array( 'type' => 'number', 'label' => __( 'Entries to Display', 'gravityview' ), 'desc' => __( 'What is the maximum number of entries that should be shown?', 'gravityview' ), @@ -39,21 +45,21 @@ function field_options( $field_options, $template_id, $field_id, $context, $inpu 'merge_tags' => false, ); - $field_options['no_entries_hide'] = array( + $new_options['no_entries_hide'] = array( 'type' => 'checkbox', 'label' => __( 'Hide if no entries', 'gravityview' ), 'desc' => __( 'Don\'t display this field if the entry creator has no other entries', 'gravityview' ), 'value' => false, ); - $field_options['no_entries_text'] = array( + $new_options['no_entries_text'] = array( 'type' => 'text', 'label' => __( 'No Entries Text', 'gravityview' ), - 'desc' => __( 'If the entry creator has no other entries, the text that is shown.', 'gravityview' ), + 'desc' => __( 'The text that is shown if the entry creator has no other entries (and "Hide if no entries" is disabled).', 'gravityview' ), 'value' => __( 'This user has no other entries.', 'gravityview' ), ); - return $field_options; + return $new_options + $field_options; } } diff --git a/readme.txt b/readme.txt index 0b8e118a53..49e48412c4 100644 --- a/readme.txt +++ b/readme.txt @@ -23,6 +23,7 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h = 1.7.2 = * Fixed: Missing quick action links on the posts list. * Fixed: Embedded DataTable Views with search_value not filtering correctly +* Added: Other Entries field - Show what other entries the entry creator has in the current View * Fixed: Not possible to change View status to 'Publish' * Fixed: Settings page not able to turn off No-Conflict mode (oh, the irony!) * Fixed: Social icons displaying on GravityView settings page From 9c9e97d61f7e0bb1ded2591ddbaad853c853d62a Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:10:09 -0600 Subject: [PATCH 28/32] =?UTF-8?q?Untranslated=20language=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- languages/gravityview-ady.mo | Bin 0 -> 754 bytes languages/gravityview-ady.po | 2089 ++++++++++++++++++++++++++++++++++ 2 files changed, 2089 insertions(+) create mode 100644 languages/gravityview-ady.mo create mode 100644 languages/gravityview-ady.po diff --git a/languages/gravityview-ady.mo b/languages/gravityview-ady.mo new file mode 100644 index 0000000000000000000000000000000000000000..9722f75d1645df7fa929d611077340a2be052ccb GIT binary patch literal 754 zcmYjN&2G~`5Dq^lA31YaBo3{}+Uq2xVNDPa+A3-*A{q)eYimz!7iZVnox}<6!MpG@ zJPYGE#EdlBZ+5=<`R32Fr@wk+kI0{sza)P`-Y0KtO#b_EulI)DhI6pFH4l&=pQZd3 ztSgL`?82&bf!o^xYH$8|!KW4!Qigw02$Bs%c*4byi`PsDIUI9wDg+Vv7g!ffhmJSm z;)I7I7LKJDz7k~Km2$`zR%ur%G*+@pg+JLhxMMe9*F^%Z&t^LD*;}`&Dr52e4Td55A0@PBn59v0`fgR z9DCQZ>$6UK=nHRZG=iorw-w1n*kDkVs?ZTja%COhJEo%o4ZDVar)y~wLHW;>Z;#g;Z%|Q>GZuc8dHp%Cti3?KoU&5?x N0@L>NlC`(*{RLF(>SO=_ literal 0 HcmV?d00001 diff --git a/languages/gravityview-ady.po b/languages/gravityview-ady.po new file mode 100644 index 0000000000..ce2808d071 --- /dev/null +++ b/languages/gravityview-ady.po @@ -0,0 +1,2089 @@ +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: GravityView\n" +"POT-Creation-Date: 2015-03-06 00:38-0700\n" +"PO-Revision-Date: 2014-05-14 18:03+0000\n" +"Last-Translator: Katz Web Services, Inc. \n" +"Language-Team: Adyghe (http://www.transifex.com/projects/p/gravityview/language/ady/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ady\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" + +#: gravityview.php:260 +msgid "Top" +msgstr "" + +#: gravityview.php:261 +msgid "Left" +msgstr "" + +#: gravityview.php:261 +msgid "Right" +msgstr "" + +#: includes/admin/class.render.settings.php:42 +msgid "Show Label" +msgstr "" + +#: includes/admin/class.render.settings.php:47 +msgid "Custom Label:" +msgstr "" + +#: includes/admin/class.render.settings.php:53 +#: includes/default-widgets.php:361 +msgid "Custom CSS Class:" +msgstr "" + +#: includes/admin/class.render.settings.php:54 +msgid "This class will be added to the field container" +msgstr "" + +#: includes/admin/class.render.settings.php:61 +msgid "Make visible only to logged-in users?" +msgstr "" + +#: includes/admin/class.render.settings.php:66 +msgid "Make visible for:" +msgstr "" + +#: includes/admin/class.render.settings.php:99 +msgid "Any Logged-In User" +msgstr "" + +#: includes/admin/class.render.settings.php:100 +msgid "Author Or Higher" +msgstr "" + +#: includes/admin/class.render.settings.php:101 +msgid "Can View Gravity Forms Entries" +msgstr "" + +#: includes/admin/class.render.settings.php:102 +msgid "Editor Or Higher" +msgstr "" + +#: includes/admin/class.render.settings.php:103 +msgid "Can Edit Gravity Forms Entries" +msgstr "" + +#: includes/admin/class.render.settings.php:104 +msgid "Administrator" +msgstr "" + +#: includes/admin/class.render.settings.php:108 +msgid "Multisite Super Admin" +msgstr "" + +#: includes/admin/class.render.settings.php:163 +#, php-format +msgid "Options: %s" +msgstr "" + +#: includes/admin/entry-list.php:66 +msgid "Edit this entry" +msgstr "" + +#: includes/admin/entry-list.php:66 +msgid "Edit" +msgstr "" + +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +msgid "Data Source" +msgstr "" + +#: includes/admin/metaboxes.php:50 +msgid "Choose a View Type" +msgstr "" + +#: includes/admin/metaboxes.php:53 +msgid "View Configuration" +msgstr "" + +#: includes/admin/metaboxes.php:56 includes/class-admin-add-shortcode.php:112 +msgid "View Settings" +msgstr "" + +#: includes/admin/metaboxes.php:59 +msgid "Filter & Sort" +msgstr "" + +#: includes/admin/metaboxes.php:86 +msgid "Where would you like the data to come from for this View?" +msgstr "" + +#: includes/admin/metaboxes.php:96 +msgid "Start Fresh" +msgstr "" + +#: includes/admin/metaboxes.php:99 +msgid "or use an existing form" +msgstr "" + +#: includes/admin/metaboxes.php:108 +msgid "list of forms" +msgstr "" + +#: includes/admin/metaboxes.php:115 +msgid "Switch View" +msgstr "" + +#: includes/admin/metaboxes.php:115 +msgid "Switch View Type" +msgstr "" + +#: includes/admin/metaboxes.php:119 includes/admin/metaboxes.php:124 +msgid "Attention" +msgstr "" + +#: includes/admin/metaboxes.php:120 +msgid "" +"Changing the form will reset your field configuration. Changes will be " +"permanent once you save the View." +msgstr "" + +#: includes/admin/metaboxes.php:125 +msgid "" +"Changing the View Type will reset your field configuration. Changes will be " +"permanent once you save the View." +msgstr "" + +#: includes/admin/metaboxes.php:130 +msgid "GravityView requires Javascript to be enabled." +msgstr "" + +#: includes/admin/metaboxes.php:171 +msgid "Buy Now" +msgstr "" + +#: includes/admin/metaboxes.php:173 +#: includes/extensions/search-widget/class-search-widget.php:107 +msgid "Select" +msgstr "" + +#: includes/admin/metaboxes.php:175 +msgid "View a live demo of this preset" +msgstr "" + +#: includes/admin/metaboxes.php:253 +msgid "Multiple Entries" +msgstr "" + +#: includes/admin/metaboxes.php:254 +msgid "Single Entry" +msgstr "" + +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/extensions/edit-entry/class-edit-entry.php:224 +#: includes/extensions/edit-entry/class-edit-entry.php:295 +#: includes/extensions/edit-entry/class-edit-entry.php:312 +#: includes/extensions/edit-entry/class-edit-entry.php:1360 +#: includes/extensions/edit-entry/fields/edit_link.php:12 +msgid "Edit Entry" +msgstr "" + +#: includes/admin/metaboxes.php:262 +msgid "Above Entries Widgets" +msgstr "" + +#: includes/admin/metaboxes.php:262 +msgid "These widgets will be shown above entries." +msgstr "" + +#: includes/admin/metaboxes.php:266 +msgid "Entries Fields" +msgstr "" + +#: includes/admin/metaboxes.php:266 +msgid "These fields will be shown for each entry." +msgstr "" + +#: includes/admin/metaboxes.php:274 +msgid "Below Entries Widgets" +msgstr "" + +#: includes/admin/metaboxes.php:274 +msgid "These widgets will be shown below entries." +msgstr "" + +#: includes/admin/metaboxes.php:304 +msgid "These fields will be shown in Single Entry view." +msgstr "" + +#: includes/admin/metaboxes.php:325 +msgid "Fields shown when editing an entry." +msgstr "" + +#: includes/admin/metaboxes.php:325 +msgid "If not configured, all form fields will be displayed." +msgstr "" + +#: includes/admin/metaboxes.php:392 +msgid "Single Entry Settings" +msgstr "" + +#: includes/admin/metaboxes.php:475 +msgid "Embed Shortcode" +msgstr "" + +#: includes/admin/metaboxes.php:475 +msgid "Add this shortcode to a post or page to embed this view." +msgstr "" + +#: includes/admin/metaboxes.php:521 +msgid "Layout Settings" +msgstr "" + +#: includes/class-admin-add-shortcode.php:58 +msgid "Add a Gravity Forms View" +msgstr "" + +#: includes/class-admin-add-shortcode.php:58 +msgid "Add View" +msgstr "" + +#: includes/class-admin-add-shortcode.php:93 +msgid "Embed a View" +msgstr "" + +#: includes/class-admin-add-shortcode.php:94 +#, php-format +msgid "" +"Use this form to embed a View into this %s. %sLearn more about using " +"shortcodes.%s" +msgstr "" + +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +msgid "Select a View" +msgstr "" + +#: includes/class-admin-add-shortcode.php:100 +msgid "— Select a View to Insert —" +msgstr "" + +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 +#: includes/widgets.php:568 +msgid "(no title)" +msgstr "" + +#: includes/class-admin-add-shortcode.php:129 +msgid "Insert View" +msgstr "" + +#: includes/class-admin-add-shortcode.php:130 +#: includes/class-admin-views.php:879 +#: includes/extensions/edit-entry/class-edit-entry.php:1440 +msgid "Cancel" +msgstr "" + +#: includes/class-admin-add-shortcode.php:176 +#: includes/class-admin-views.php:883 +msgid "Loading…" +msgstr "" + +#: includes/class-admin-add-shortcode.php:177 +msgid "Please select a View" +msgstr "" + +#: includes/class-admin-approve-entries.php:55 +msgid "GravityView Fields" +msgstr "" + +#: includes/class-admin-approve-entries.php:56 +msgid "" +"Allow administrators to approve or reject entries and users to opt-in or " +"opt-out of their entries being displayed." +msgstr "" + +#: includes/class-admin-approve-entries.php:78 +msgid "Approve/Reject" +msgstr "" + +#: includes/class-admin-approve-entries.php:84 +msgid "User Opt-In" +msgstr "" + +#: includes/class-admin-approve-entries.php:107 +msgid "Approved? (Admin-only)" +msgstr "" + +#: includes/class-admin-approve-entries.php:109 +msgid "Approved?" +msgstr "" + +#: includes/class-admin-approve-entries.php:116 +msgid "Approved" +msgstr "" + +#: includes/class-admin-approve-entries.php:129 +msgid "Show Entry on Website" +msgstr "" + +#: includes/class-admin-approve-entries.php:131 +msgid "Opt-In" +msgstr "" + +#: includes/class-admin-approve-entries.php:139 +msgid "Yes, display my entry on the website" +msgstr "" + +#: includes/class-admin-approve-entries.php:210 +#, php-format +msgid "%d entries" +msgstr "" + +#: includes/class-admin-approve-entries.php:210 +msgid "1 entry" +msgstr "" + +#: includes/class-admin-approve-entries.php:215 +#, php-format +msgid "%s approved." +msgstr "" + +#: includes/class-admin-approve-entries.php:220 +#, php-format +msgid "%s disapproved." +msgstr "" + +#: includes/class-admin-approve-entries.php:292 +msgid "Disapproved the Entry for GravityView" +msgstr "" + +#: includes/class-admin-approve-entries.php:292 +msgid "Approved the Entry for GravityView" +msgstr "" + +#: includes/class-admin-approve-entries.php:444 +msgid "Approve" +msgstr "" + +#: includes/class-admin-approve-entries.php:445 +msgid "Disapprove" +msgstr "" + +#: includes/class-admin-approve-entries.php:447 +msgid "Entry not approved for directory viewing. Click to approve this entry." +msgstr "" + +#: includes/class-admin-approve-entries.php:448 +msgid "Entry approved for directory viewing. Click to disapprove this entry." +msgstr "" + +#: includes/class-admin-approve-entries.php:449 +msgid "Show entry in directory view?" +msgstr "" + +#: includes/class-admin-label.php:19 +#, php-format +msgid "Type: %s" +msgstr "" + +#: includes/class-admin-label.php:23 +#, php-format +msgid "Field ID: %s" +msgstr "" + +#: includes/class-admin-label.php:36 +#, php-format +msgid "Admin Label: %s" +msgstr "" + +#: includes/class-admin-label.php:166 +#, php-format +msgid "Configure %s Settings" +msgstr "" + +#: includes/class-admin-label.php:167 +#, php-format +msgid "Remove %s" +msgstr "" + +#: includes/class-admin-label.php:168 +msgid "This field links to the Single Entry" +msgstr "" + +#: includes/class-admin-label.php:180 +#, php-format +msgctxt "Label in field picker for empty label" +msgid "Field #%s (No Label)" +msgstr "" + +#: includes/class-admin-views.php:110 +msgid "Connected Views" +msgstr "" + +#: includes/class-admin-views.php:112 +msgid "GravityView Views using this form as a data source" +msgstr "" + +#: includes/class-admin-views.php:186 +msgid "CSS Merge Tags" +msgstr "" + +#: includes/class-admin-views.php:187 +#, php-format +msgid "" +"Developers: The CSS classes will be sanitized using the " +"%ssanitize_title_with_dashes()%s function." +msgstr "" + +#: includes/class-admin-views.php:211 +msgid "Not connected." +msgstr "" + +#: includes/class-admin-views.php:220 +msgid "The connected form can not be found; it may no longer exist." +msgstr "" + +#: includes/class-admin-views.php:252 +msgid "Edit Form" +msgstr "" + +#: includes/class-admin-views.php:257 +msgid "Entries" +msgstr "" + +#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-settings.php:255 +msgid "Settings" +msgstr "" + +#: includes/class-admin-views.php:262 +msgid "Edit settings for this form" +msgstr "" + +#: includes/class-admin-views.php:267 +msgid "Preview Form" +msgstr "" + +#: includes/class-admin-views.php:267 +msgid "Preview this form" +msgstr "" + +#: includes/class-admin-views.php:480 +msgid "+ Add All Fields" +msgstr "" + +#: includes/class-admin-views.php:481 +msgid "Add all the available fields at once." +msgstr "" + +#: includes/class-admin-views.php:531 +#: includes/extensions/search-widget/class-search-widget.php:205 +msgid "Entry ID" +msgstr "" + +#: includes/class-admin-views.php:533 +msgid "The unique ID of the entry." +msgstr "" + +#: includes/class-admin-views.php:536 +#: includes/extensions/search-widget/class-search-widget.php:204 +msgid "Entry Date" +msgstr "" + +#: includes/class-admin-views.php:537 +msgid "The date the entry was created." +msgstr "" + +#: includes/class-admin-views.php:541 +msgid "Source URL" +msgstr "" + +#: includes/class-admin-views.php:543 +msgid "The URL of the page where the form was submitted." +msgstr "" + +#: includes/class-admin-views.php:546 +msgid "User IP" +msgstr "" + +#: includes/class-admin-views.php:548 +msgid "The IP Address of the user who created the entry." +msgstr "" + +#: includes/class-admin-views.php:551 +msgid "User" +msgstr "" + +#: includes/class-admin-views.php:553 +msgid "Details of the logged-in user who created the entry (if any)." +msgstr "" + +#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/default-widgets.php:213 includes/fields/custom.php:22 +msgid "Custom Content" +msgstr "" + +#: includes/class-admin-views.php:562 +msgid "Insert custom text or HTML." +msgstr "" + +#: includes/class-admin-views.php:570 +msgid "Link to Entry" +msgstr "" + +#: includes/class-admin-views.php:571 +msgid "A dedicated link to the single entry with customizable text." +msgstr "" + +#: includes/class-admin-views.php:648 +msgid "Add Widget" +msgstr "" + +#: includes/class-admin-views.php:650 +msgid "Add Field" +msgstr "" + +#: includes/class-admin-views.php:731 +#, php-format +msgid "\"+ %s\" or drag existing %ss here." +msgstr "" + +#: includes/class-admin-views.php:799 +#, php-format +msgid "This View is configured using the %s View type, which is disabled." +msgstr "" + +#: includes/class-admin-views.php:800 +msgid "" +"The data is not lost; re-activate the associated plugin and the " +"configuration will re-appear." +msgstr "" + +#: includes/class-admin-views.php:877 +msgid "Enter View name here" +msgstr "" + +#: includes/class-admin-views.php:878 +msgid "Close" +msgstr "" + +#: includes/class-admin-views.php:880 +msgid "Continue" +msgstr "" + +#: includes/class-admin-views.php:881 +msgid "Ok" +msgstr "" + +#: includes/class-admin-views.php:882 +msgid "" +"Error while creating the View for you. Check the settings or contact " +"GravityView support." +msgstr "" + +#: includes/class-admin-views.php:884 +msgid "There was an error loading dynamic content." +msgstr "" + +#: includes/class-admin-views.php:885 +msgid "" +"Error while adding the field. Please try again or contact GravityView " +"support." +msgstr "" + +#: includes/class-admin-views.php:886 +msgid "" +"Would you like to remove all fields in this zone? (You are seeing this " +"message because you were holding down the ALT key)" +msgstr "" + +#: includes/class-admin-welcome.php:56 +msgid "GravityView: Getting Started" +msgstr "" + +#: includes/class-admin-welcome.php:57 includes/class-admin-welcome.php:152 +msgid "Getting Started" +msgstr "" + +#: includes/class-admin-welcome.php:66 includes/class-admin-welcome.php:67 +msgid "Changelog" +msgstr "" + +#: includes/class-admin-welcome.php:76 includes/class-admin-welcome.php:77 +#: includes/class-admin-welcome.php:158 +msgid "Credits" +msgstr "" + +#: includes/class-admin-welcome.php:147 +#, php-format +msgid "Welcome to GravityView %s" +msgstr "" + +#: includes/class-admin-welcome.php:148 +msgid "" +"Thank you for Installing GravityView. Beautifully display your Gravity Forms" +" entries." +msgstr "" + +#: includes/class-admin-welcome.php:155 +msgid "List of Changes" +msgstr "" + +#: includes/class-admin-welcome.php:256 +msgid "What’s New" +msgstr "" + +#: includes/class-admin-welcome.php:759 +msgid "GravityView is brought to you by:" +msgstr "" + +#: includes/class-admin-welcome.php:784 +msgid "Contributors" +msgstr "" + +#: includes/class-admin-welcome.php:809 +msgid "Want to contribute?" +msgstr "" + +#: includes/class-admin-welcome.php:810 +#, php-format +msgid "" +"If you want to contribute to the code, you can %srequest access to the " +"Github repository%s. If your contributions are accepted, you will be thanked" +" here." +msgstr "" + +#: includes/class-admin.php:93 +msgid "Support" +msgstr "" + +#: includes/class-admin.php:147 +#, php-format +msgid "A new form was created for this View: \"%s\"" +msgstr "" + +#: includes/class-admin.php:148 +#, php-format +msgid "" +"%sThere are no entries for the new form, so the View will also be empty.%s To start collecting entries, you can add submissions through %sthe preview form%s and also embed the form on a post or page using this code: %s\n" +"\n" +"\t\t\t\t\tYou can %sedit the form%s in Gravity Forms and the updated fields will be available here. Don’t forget to %scustomize the form settings%s.\n" +"\t\t\t\t\t" +msgstr "" + +#: includes/class-admin.php:160 includes/class-admin.php:161 +#: includes/class-admin.php:163 +#, php-format +msgid "View updated. %sView on website.%s" +msgstr "" + +#: includes/class-admin.php:162 +msgid "View deleted." +msgstr "" + +#: includes/class-admin.php:165 +#, php-format +msgid "View restored to revision from %s" +msgstr "" + +#: includes/class-admin.php:166 +#, php-format +msgid "View published. %sView on website.%s" +msgstr "" + +#: includes/class-admin.php:167 +#, php-format +msgid "View saved. %sView on website.%s" +msgstr "" + +#: includes/class-admin.php:168 +msgid "View submitted." +msgstr "" + +#: includes/class-admin.php:170 +#, php-format +msgid "View scheduled for: %1$s." +msgstr "" + +#: includes/class-admin.php:172 +msgid "M j, Y @ G:i" +msgstr "" + +#: includes/class-admin.php:174 +#, php-format +msgid "View draft updated. %sView on website.%s" +msgstr "" + +#: includes/class-admin.php:180 +#, php-format +msgid "%s View updated." +msgid_plural "%s Views updated." +msgstr[0] "" +msgstr[1] "" + +#: includes/class-admin.php:181 +#, php-format +msgid "%s View not updated, somebody is editing it." +msgid_plural "%s Views not updated, somebody is editing them." +msgstr[0] "" +msgstr[1] "" + +#: includes/class-admin.php:182 +#, php-format +msgid "%s View permanently deleted." +msgid_plural "%s Views permanently deleted." +msgstr[0] "" +msgstr[1] "" + +#: includes/class-admin.php:183 +#, php-format +msgid "%s View moved to the Trash." +msgid_plural "%s Views moved to the Trash." +msgstr[0] "" +msgstr[1] "" + +#: includes/class-admin.php:184 +#, php-format +msgid "%s View restored from the Trash." +msgid_plural "%s Views restored from the Trash." +msgstr[0] "" +msgstr[1] "" + +#: includes/class-admin.php:482 +msgid "Dismiss" +msgstr "" + +#: includes/class-admin.php:516 +msgid "Potential Conflict" +msgstr "" + +#: includes/class-admin.php:517 +msgid "" +"GravityView and Gravity Forms Directory are both active. This may cause " +"problems. If you experience issues, disable the Gravity Forms Directory " +"plugin." +msgstr "" + +#: includes/class-admin.php:542 +#, php-format +msgid "" +"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"\n" +"You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" +msgstr "" + +#: includes/class-admin.php:551 +#, php-format +msgid "" +"%sGravityView requires Gravity Forms to be active. %sActivate Gravity " +"Forms%s to use the GravityView plugin." +msgstr "" + +#: includes/class-admin.php:553 +#, php-format +msgid "" +"%sGravityView requires Gravity Forms to be installed in order to run " +"properly. %sGet Gravity Forms%s - starting at $39%s%s" +msgstr "" + +#: includes/class-api.php:351 +msgid "This search returned no results." +msgstr "" + +#: includes/class-api.php:353 +msgid "No entries match your request." +msgstr "" + +#: includes/class-api.php:700 +msgid "← Go back" +msgstr "" + +#: includes/class-api.php:1067 +msgid "Map It" +msgstr "" + +#: includes/class-change-entry-creator.php:54 +msgid "Error" +msgstr "" + +#: includes/class-change-entry-creator.php:56 +msgid "Success" +msgstr "" + +#: includes/class-change-entry-creator.php:59 +#, php-format +msgctxt "" +"First parameter: Success or error of the action. Second: User ID number" +msgid "%s: Assigned User ID #%d as the entry creator." +msgstr "" + +#: includes/class-change-entry-creator.php:163 +#, php-format +msgctxt "" +"The name and the ID of users who initiated changes to entry ownership" +msgid "%s (ID #%d)" +msgstr "" + +#: includes/class-change-entry-creator.php:165 +msgctxt "" +"To show that the entry was unassigned from an actual user to no user." +msgid "No User" +msgstr "" + +#: includes/class-change-entry-creator.php:177 +#, php-format +msgid "Changed entry creator from %s to %s" +msgstr "" + +#: includes/class-change-entry-creator.php:204 +msgid "Change Entry Creator:" +msgstr "" + +#: includes/class-change-entry-creator.php:207 +msgctxt "No user assigned to the entry" +msgid "No User" +msgstr "" + +#: includes/class-common.php:232 +msgid "Post ID" +msgstr "" + +#: includes/class-common.php:241 +msgid "Payment Status" +msgstr "" + +#: includes/class-common.php:246 +msgid "Payment Date" +msgstr "" + +#: includes/class-common.php:251 +msgid "Payment Amount" +msgstr "" + +#: includes/class-common.php:256 +msgid "Payment Method" +msgstr "" + +#: includes/class-common.php:261 +#: includes/extensions/search-widget/class-search-widget.php:639 +msgid "Is Fulfilled" +msgstr "" + +#: includes/class-common.php:266 +msgid "Transaction ID" +msgstr "" + +#: includes/class-common.php:271 +msgid "Transaction Type" +msgstr "" + +#: includes/class-common.php:783 includes/class-data.php:565 +msgid "Default" +msgstr "" + +#: includes/class-common.php:796 includes/class-data.php:566 +msgid "Date Created" +msgstr "" + +#: includes/class-common.php:876 +msgid "Email hidden; Javascript is required." +msgstr "" + +#: includes/class-data.php:407 +msgid "The ID is required." +msgstr "" + +#: includes/class-data.php:415 +msgid "" +"You did not enter a number. The value entered should be a number, " +"representing the ID of the post or page the View is embedded on." +msgstr "" + +#: includes/class-data.php:418 includes/widgets.php:362 +#: includes/widgets.php:596 +msgid "Learn more…" +msgstr "" + +#: includes/class-data.php:426 +msgid "There is no post or page with that ID." +msgstr "" + +#: includes/class-data.php:436 +#, php-format +msgid "" +"The Post ID entered is not valid. You may have entered a post or page that " +"does not contain the selected View. Make sure the post contains the " +"following shortcode: %s" +msgstr "" + +#: includes/class-data.php:444 +msgid "The ID is already a View." +msgstr "" + +#: includes/class-data.php:496 +msgid "View ID" +msgstr "" + +#: includes/class-data.php:504 +msgid "Number of entries per page" +msgstr "" + +#: includes/class-data.php:512 +msgid "Enable lightbox for images" +msgstr "" + +#: includes/class-data.php:520 +msgid "Show only approved entries" +msgstr "" + +#: includes/class-data.php:527 +msgid "Hide View data until search is performed" +msgstr "" + +#: includes/class-data.php:530 +msgid "" +"When enabled it will only show any View entries after a search is performed." +msgstr "" + +#: includes/class-data.php:535 +msgid "Hide empty fields" +msgstr "" + +#: includes/class-data.php:542 +msgid "Allow User Edit" +msgstr "" + +#: includes/class-data.php:544 +msgid "Allow logged-in users to edit entries they created." +msgstr "" + +#: includes/class-data.php:546 +msgid "" +"Display \"Edit Entry\" fields to non-administrator users if they created the" +" entry. Edit Entry fields will always be displayed to site administrators." +msgstr "" + +#: includes/class-data.php:551 +msgid "Allow User Delete" +msgstr "" + +#: includes/class-data.php:553 +msgid "Allow logged-in users to delete entries they created." +msgstr "" + +#: includes/class-data.php:555 +msgid "" +"Display \"Delete Entry\" fields to non-administrator users if they created " +"the entry. Delete Entry fields will always be displayed to site " +"administrators." +msgstr "" + +#: includes/class-data.php:560 +msgid "Sort by field" +msgstr "" + +#: includes/class-data.php:571 +msgid "Sort direction" +msgstr "" + +#: includes/class-data.php:576 +msgid "ASC" +msgstr "" + +#: includes/class-data.php:577 +msgid "DESC" +msgstr "" + +#: includes/class-data.php:582 +msgid "Enable sorting by column" +msgstr "" + +#: includes/class-data.php:583 +msgid "Column Sorting" +msgstr "" + +#: includes/class-data.php:592 +msgid "Filter by Start Date" +msgstr "" + +#: includes/class-data.php:594 +msgid "" +"Show entries submitted after this date. Supports relative dates, such as " +"\"-1 week\" or \"-1 month\"." +msgstr "" + +#: includes/class-data.php:601 +msgid "Filter by End Date" +msgstr "" + +#: includes/class-data.php:603 +msgid "" +"Show entries submitted before this date. Supports relative dates, such as " +"\"now\" or \"-3 days\"." +msgstr "" + +#: includes/class-data.php:610 +msgid "CSS Class" +msgstr "" + +#: includes/class-data.php:611 +msgid "CSS class to add to the wrapping HTML container." +msgstr "" + +#: includes/class-data.php:618 +msgid "Search Value" +msgstr "" + +#: includes/class-data.php:619 +msgid "Define a default search value for the View" +msgstr "" + +#: includes/class-data.php:626 +#: includes/extensions/search-widget/class-search-widget.php:133 +msgid "Search Field" +msgstr "" + +#: includes/class-data.php:627 +msgid "" +"If Search Value is set, you can define a specific field to search in. " +"Otherwise, all fields will be searched." +msgstr "" + +#: includes/class-data.php:634 +msgid "Single Entry Title" +msgstr "" + +#: includes/class-data.php:636 +msgid "" +"When viewing a single entry, change the title of the page to this setting. " +"Otherwise, the title will not change between the Multiple Entries and Single" +" Entry views." +msgstr "" + +#: includes/class-data.php:643 +msgid "Back Link Label" +msgstr "" + +#: includes/class-data.php:645 +msgid "The text of the link that returns to the multiple entries view." +msgstr "" + +#: includes/class-debug-bar.php:24 +msgid "GravityView" +msgstr "" + +#: includes/class-debug-bar.php:91 +msgid "Warnings" +msgstr "" + +#: includes/class-debug-bar.php:100 +msgid "Logs" +msgstr "" + +#: includes/class-debug-bar.php:169 +msgctxt "Debugging output data is empty." +msgid "Empty" +msgstr "" + +#: includes/class-duplicate-view.php:221 +msgid "Clone" +msgstr "" + +#: includes/class-duplicate-view.php:222 +msgid "Clone this View" +msgstr "" + +#: includes/class-duplicate-view.php:227 +msgid "New Draft" +msgstr "" + +#: includes/class-duplicate-view.php:227 +msgid "Clone View" +msgstr "" + +#: includes/class-duplicate-view.php:228 +msgid "Copy as a new draft View" +msgstr "" + +#: includes/class-duplicate-view.php:296 +msgid "No post to duplicate has been supplied!" +msgstr "" + +#: includes/class-duplicate-view.php:319 +#, php-format +msgid "Copy creation failed, could not find original View with ID #%d" +msgstr "" + +#: includes/class-frontend-views.php:615 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1042 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1043 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-extension.php:175 +#, php-format +msgid "Could not activate the %s Extension; GravityView is not active." +msgstr "" + +#: includes/class-gravityview-extension.php:185 +#, php-format +msgid "The %s Extension requires GravityView Version %s or newer." +msgstr "" + +#: includes/class-oembed.php:197 +msgid "This will look better when it is embedded." +msgstr "" + +#: includes/class-oembed.php:198 +msgid "" +"Styles don't get loaded when being previewed, so the content below will look" +" strange. Don't be concerned!" +msgstr "" + +#: includes/class-oembed.php:248 +#, php-format +msgid "Embed Entry %d" +msgstr "" + +#: includes/class-oembed.php:250 +#, php-format +msgid "This entry will be displayed as it is configured in View %d" +msgstr "" + +#: includes/class-post-types.php:35 +msgctxt "Post Type General Name" +msgid "Views" +msgstr "" + +#: includes/class-post-types.php:36 +msgctxt "Post Type Singular Name" +msgid "View" +msgstr "" + +#: includes/class-post-types.php:37 +msgctxt "Menu name" +msgid "Views" +msgstr "" + +#: includes/class-post-types.php:38 +msgid "Parent View:" +msgstr "" + +#: includes/class-post-types.php:39 +msgid "All Views" +msgstr "" + +#: includes/class-post-types.php:40 +msgctxt "View Item" +msgid "View" +msgstr "" + +#: includes/class-post-types.php:41 +msgid "Add New View" +msgstr "" + +#: includes/class-post-types.php:42 +msgid "New View" +msgstr "" + +#: includes/class-post-types.php:43 +msgid "Edit View" +msgstr "" + +#: includes/class-post-types.php:44 +msgid "Update View" +msgstr "" + +#: includes/class-post-types.php:45 +msgid "Search Views" +msgstr "" + +#: includes/class-post-types.php:47 +msgid "No Views found in Trash" +msgstr "" + +#: includes/class-post-types.php:50 +msgid "view" +msgstr "" + +#: includes/class-post-types.php:51 +msgid "Create views based on a Gravity Forms form" +msgstr "" + +#: includes/class-post-types.php:123 +#, php-format +msgid "" +"%sYou don't have any active views. Let’s go %screate one%s!%s\n" +"\n" +"If you feel like you're lost in space and need help getting started, check out the %sGetting Started%s page." +msgstr "" + +#: includes/class-settings.php:104 +#, php-format +msgid "" +"Your GravityView license %s. This means you’re missing out on updates " +"and support! %sActivate your license%s or %sget a license here%s." +msgstr "" + +#: includes/class-settings.php:106 +msgid "Inactive License" +msgstr "" + +#: includes/class-settings.php:111 +msgid "Invalid License" +msgstr "" + +#: includes/class-settings.php:112 +msgid "is invalid" +msgstr "" + +#: includes/class-settings.php:115 +msgid "is inactive" +msgstr "" + +#: includes/class-settings.php:118 +msgid "has not been activated" +msgstr "" + +#: includes/class-settings.php:145 +msgid "Status" +msgstr "" + +#: includes/class-settings.php:146 +msgid "There was an error processing the request." +msgstr "" + +#: includes/class-settings.php:147 +msgid "" +"Could not deactivate the license. The submitted license key may not be " +"active." +msgstr "" + +#: includes/class-settings.php:148 +msgid "Not Activated" +msgstr "" + +#: includes/class-settings.php:149 +msgid "Invalid; this license has reached its activation limit." +msgstr "" + +#: includes/class-settings.php:150 +msgid "Deactivated" +msgstr "" + +#: includes/class-settings.php:151 +msgid "Valid" +msgstr "" + +#: includes/class-settings.php:152 includes/class-settings.php:153 +msgid "Not Valid" +msgstr "" + +#: includes/class-settings.php:154 +msgid "The license key has been revoked." +msgstr "" + +#: includes/class-settings.php:155 +msgid "The license key has expired." +msgstr "" + +#: includes/class-settings.php:157 +msgid "Verifying license…" +msgstr "" + +#: includes/class-settings.php:158 +msgid "Activate License" +msgstr "" + +#: includes/class-settings.php:159 +msgid "Deactivate License" +msgstr "" + +#: includes/class-settings.php:160 +msgid "Verify License" +msgstr "" + +#: includes/class-settings.php:187 +msgid "License Key" +msgstr "" + +#: includes/class-settings.php:188 +msgid "" +"Enter the license key that was sent to you on purchase. This enables plugin " +"updates & support." +msgstr "" + +#: includes/class-settings.php:195 +msgid "Support Email" +msgstr "" + +#: includes/class-settings.php:196 +msgid "" +"In order to provide responses to your support requests, please provide your " +"email address." +msgstr "" + +#: includes/class-settings.php:201 +msgid "No-Conflict Mode" +msgstr "" + +#: includes/class-settings.php:202 +msgid "" +"Set this to ON to prevent extraneous scripts and styles from being printed " +"on GravityView admin pages, reducing conflicts with other plugins and " +"themes." +msgstr "" + +#: includes/class-settings.php:220 +msgid "GravityView Settings" +msgstr "" + +#: includes/class-settings.php:320 +msgid "Follow us on Google+" +msgstr "" + +#: includes/default-templates.php:30 +msgid "Table (default)" +msgstr "" + +#: includes/default-templates.php:31 includes/default-templates.php:82 +msgid "Display items in a table view." +msgstr "" + +#: includes/default-templates.php:45 includes/default-templates.php:137 +msgid "Link to single entry" +msgstr "" + +#: includes/default-templates.php:56 +msgid "Visible Table Columns" +msgstr "" + +#: includes/default-templates.php:57 +msgid "Each field will be displayed as a column in the table." +msgstr "" + +#: includes/default-templates.php:81 +msgid "Edit Table" +msgstr "" + +#: includes/default-templates.php:100 +msgid "Visible Edit Fields" +msgstr "" + +#: includes/default-templates.php:126 +msgid "List (default)" +msgstr "" + +#: includes/default-templates.php:127 +msgid "Display items in a listing view." +msgstr "" + +#: includes/default-templates.php:146 +msgid "Listing Title" +msgstr "" + +#: includes/default-templates.php:147 +msgid "Subheading" +msgstr "" + +#: includes/default-templates.php:150 +msgid "Image" +msgstr "" + +#: includes/default-templates.php:153 +msgid "Other Fields" +msgstr "" + +#: includes/default-templates.php:157 +msgid "Footer Left" +msgstr "" + +#: includes/default-templates.php:160 +msgid "Footer Right" +msgstr "" + +#: includes/default-templates.php:395 +msgid "Business Data" +msgstr "" + +#: includes/default-templates.php:396 +msgid "Display business information in a table." +msgstr "" + +#: includes/default-templates.php:417 +msgid "Resume Board" +msgstr "" + +#: includes/default-templates.php:418 +msgid "Allow job-seekers to post their resumes." +msgstr "" + +#: includes/default-templates.php:439 +msgid "Job Board" +msgstr "" + +#: includes/default-templates.php:440 +msgid "Post available jobs in a simple job board." +msgstr "" + +#: includes/default-templates.php:461 +msgid "People Table" +msgstr "" + +#: includes/default-templates.php:462 +msgid "Display information about people in a table." +msgstr "" + +#: includes/default-templates.php:484 +msgid "Issue Tracker" +msgstr "" + +#: includes/default-templates.php:485 +msgid "Manage issues and their statuses." +msgstr "" + +#: includes/default-templates.php:507 +msgid "Business Listings" +msgstr "" + +#: includes/default-templates.php:508 +msgid "Display business profiles." +msgstr "" + +#: includes/default-templates.php:529 +msgid "Event Listings" +msgstr "" + +#: includes/default-templates.php:530 +msgid "Present a list of your events." +msgstr "" + +#: includes/default-templates.php:551 +msgid "People Profiles" +msgstr "" + +#: includes/default-templates.php:552 +msgid "List people with individual profiles." +msgstr "" + +#: includes/default-templates.php:573 +msgid "Staff Profiles" +msgstr "" + +#: includes/default-templates.php:574 +msgid "List members of your team." +msgstr "" + +#: includes/default-templates.php:595 +msgid "Website Showcase" +msgstr "" + +#: includes/default-templates.php:596 +msgid "Feature submitted websites with screenshots." +msgstr "" + +#: includes/default-widgets.php:31 +msgid "Summary of the number of visible entries out of the total results." +msgstr "" + +#: includes/default-widgets.php:40 +msgid "Show Pagination Info" +msgstr "" + +#: includes/default-widgets.php:81 +#, php-format +msgid "Displaying %1$s - %2$s of %3$s" +msgstr "" + +#: includes/default-widgets.php:102 +msgid "Links to multiple pages of results." +msgstr "" + +#: includes/default-widgets.php:107 +msgid "Show each page number" +msgstr "" + +#: includes/default-widgets.php:108 +msgid "Show every page number instead of summary (eg: 1 2 3 ... 8 »)" +msgstr "" + +#: includes/default-widgets.php:111 +msgid "Page Links" +msgstr "" + +#: includes/default-widgets.php:188 +msgid "Insert custom text or HTML as a widget" +msgstr "" + +#: includes/default-widgets.php:199 includes/fields/custom.php:23 +msgid "Enter text or HTML. Also supports shortcodes." +msgstr "" + +#: includes/default-widgets.php:207 includes/fields/custom.php:31 +msgid "Automatically add paragraphs to content" +msgstr "" + +#: includes/default-widgets.php:208 includes/fields/custom.php:32 +msgid "" +"Wrap each block of text in an HTML paragraph tag (recommended for text)." +msgstr "" + +#: includes/default-widgets.php:362 +msgid "This class will be added to the widget container" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:107 +msgid "Delete Link Text" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:109 +#: includes/extensions/delete-entry/class-delete-entry.php:138 +#: includes/extensions/delete-entry/class-delete-entry.php:154 +#: includes/extensions/delete-entry/fields/delete_link.php:12 +msgid "Delete Entry" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:115 +msgid "Allow the following users to delete the entry:" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:140 +msgid "A link to delete the entry. Respects the Delete Entry permissions." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:186 +#: includes/extensions/edit-entry/class-edit-entry.php:343 +msgctxt "User capability" +msgid "Entry Creator" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:280 +msgid "Delete" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:357 +msgid "The entry does not exist." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:402 +msgid "Are you sure you want to delete this entry? This cannot be undone." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:429 +msgid "The link to delete this entry is not valid; it may have expired." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:433 +msgid "You do not have permission to delete this entry." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:437 +msgid "You cannot delete the entry; it is already in the trash." +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:557 +#, php-format +msgid "There was an error deleting the entry: %s" +msgstr "" + +#: includes/extensions/delete-entry/class-delete-entry.php:562 +msgid "The entry was successfully deleted." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:222 +msgid "Edit Link Text" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:241 +msgid "Limiting Edit Access" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:242 +msgid "" +"Change this setting if you don't want the user who created the entry to be " +"able to edit this field." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:271 +msgid "Make field editable to:" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:297 +msgid "A link to edit the entry. Visible based on View settings." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:818 +msgid "Details" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1091 +msgid "Maximum number of files reached" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1166 +msgid "You do not have permission to edit this field." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1247 +msgid "The link to edit this entry is not valid; it may have expired." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1253 +msgid "You do not have permission to edit this entry." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1257 +msgid "You cannot edit the entry; it is in the trash." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1371 +msgid "There was a problem with your submission." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1371 +msgid "Errors have been highlighted below." +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1377 +#, php-format +msgid "Entry Updated. %sReturn to Entry%s" +msgstr "" + +#: includes/extensions/edit-entry/class-edit-entry.php:1438 +msgid "Update" +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +msgid "You don’t have permission to edit this post." +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 +#, php-format +msgid "You can %sedit this value%s from the post page." +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 +msgid "This field is not editable; the post no longer exists." +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +msgid "Allowed Files" +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +msgid "Drop files here or" +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +msgid "Select files" +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +msgid "Download file" +msgstr "" + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +msgid "Delete file" +msgstr "" + +#: includes/extensions/edit-entry/inline-javascript.php:4 +msgid "" +"Would you like to permanently delete this file? 'Cancel' to stop. 'OK' to " +"delete" +msgstr "" + +#: includes/extensions/edit-entry/inline-javascript.php:14 +msgid "Ajax error while deleting field." +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:27 +msgid "Search form for searching entries." +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:44 +msgid "Search Layout" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:47 +msgid "Horizontal" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:48 +msgid "Vertical" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:53 +msgid "Show Clear button" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:57 +msgid "Search Bar" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:105 +msgid "Text" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:106 +msgid "Date" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:108 +msgid "Select (multiple values)" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:109 +msgid "Radio" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:110 +#: includes/extensions/search-widget/class-search-widget.php:111 +msgid "Checkbox" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:112 +msgid "Links" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:131 +msgid "No search fields configured yet." +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:132 +msgid "Add Search Field" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:134 +msgid "Input Type" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:203 +msgid "Search Everything" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:503 +msgid "Search Entries:" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:510 +msgid "Filter by date:" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:521 +msgid "Entry ID:" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:742 +msgid "Clear" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:775 +msgctxt "Close calendar" +msgid "Close" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:776 +msgctxt "Previous month in calendar" +msgid "Prev" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:777 +msgctxt "Next month in calendar" +msgid "Next" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:778 +msgctxt "Today in calendar" +msgid "Today" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:779 +msgctxt "Week in calendar" +msgid "Week" +msgstr "" + +#: includes/extensions/search-widget/class-search-widget.php:780 +msgid "Show a different month" +msgstr "" + +#: includes/extensions/search-widget/templates/search-field-entry_date.php:18 +msgid "Start date" +msgstr "" + +#: includes/extensions/search-widget/templates/search-field-entry_date.php:19 +msgid "End date" +msgstr "" + +#: includes/extensions/search-widget/templates/search-field-link.php:18 +msgid "Show only:" +msgstr "" + +#: includes/extensions/search-widget/templates/widget-search.php:47 +msgid "Search" +msgstr "" + +#: includes/fields/address.php:25 +msgid "Show Map Link:" +msgstr "" + +#: includes/fields/address.php:26 +msgid "Display a \"Map It\" link below the address" +msgstr "" + +#: includes/fields/class.field.php:25 +msgid "Link to the post" +msgstr "" + +#: includes/fields/class.field.php:26 +msgid "Link to the post created by the entry." +msgstr "" + +#: includes/fields/class.field.php:31 +msgid "Link to the category or tag" +msgstr "" + +#: includes/fields/class.field.php:32 +msgid "" +"Link to the current category or tag. \"Link to single entry\" must be " +"unchecked." +msgstr "" + +#: includes/fields/class.field.php:37 +msgid "Use the live post data" +msgstr "" + +#: includes/fields/class.field.php:38 +msgid "Instead of using the entry data, instead use the current post data." +msgstr "" + +#: includes/fields/class.field.php:43 +msgid "Override Date Format" +msgstr "" + +#: includes/fields/class.field.php:44 +#, php-format +msgid "Define how the date is displayed (using %sthe PHP date format%s)" +msgstr "" + +#: includes/fields/created-by.php:15 +msgid "User Format" +msgstr "" + +#: includes/fields/created-by.php:16 +msgid "How should the User information be displayed?" +msgstr "" + +#: includes/fields/created-by.php:18 +msgid "Display Name (Example: \"Ellen Ripley\")" +msgstr "" + +#: includes/fields/created-by.php:19 +msgid "Username (Example: \"nostromo\")" +msgstr "" + +#: includes/fields/created-by.php:20 +msgid "User ID # (Example: 426)" +msgstr "" + +#: includes/fields/email.php:23 +msgid "Link the Email Address" +msgstr "" + +#: includes/fields/email.php:24 +msgid "Clicking the link will generate a new email." +msgstr "" + +#: includes/fields/email.php:28 +msgid "Email Subject" +msgstr "" + +#: includes/fields/email.php:30 +msgid "Set the default email subject line." +msgstr "" + +#: includes/fields/email.php:35 +msgid "Email Body" +msgstr "" + +#: includes/fields/email.php:37 +msgid "Set the default email content." +msgstr "" + +#: includes/fields/email.php:44 +msgid "Encrypt Email Address" +msgstr "" + +#: includes/fields/email.php:45 +msgid "" +"Make it harder for spammers to get email addresses from your entries. Email " +"addresses will not be visible with Javascript disabled." +msgstr "" + +#: includes/fields/entry-link.php:22 includes/fields/source-url.php:29 +msgid "Link Text:" +msgstr "" + +#: includes/fields/entry-link.php:24 templates/fields/entry_link.php:16 +msgid "View Details" +msgstr "" + +#: includes/fields/fileupload.php:20 +msgid "Display as a Link:" +msgstr "" + +#: includes/fields/fileupload.php:21 +msgid "Display the uploaded files as links, rather than embedded content." +msgstr "" + +#: includes/fields/source-url.php:22 +msgid "Link to URL:" +msgstr "" + +#: includes/fields/source-url.php:23 +msgid "Display as a link to the Source URL" +msgstr "" + +#: includes/fields/source-url.php:30 +msgid "Customize the link text. If empty, the link text will be the the URL." +msgstr "" + +#: includes/fields/textarea.php:20 +msgid "Maximum words shown" +msgstr "" + +#: includes/fields/textarea.php:21 +msgid "" +"Enter the number of words to be shown. If specified it truncates the text. " +"Leave it blank if you want to show the full text." +msgstr "" + +#: includes/fields/website.php:22 +msgid "Shorten Link Display" +msgstr "" + +#: includes/fields/website.php:23 +msgid "Only show the domain for a URL instead of the whole link." +msgstr "" + +#: includes/fields/website.php:24 +msgid "Don’t show the full URL, only show the domain." +msgstr "" + +#: includes/fields/website.php:30 +msgid "Open link in the same window?" +msgstr "" + +#: includes/widgets.php:23 +msgid "GravityView Recent Entries" +msgstr "" + +#: includes/widgets.php:26 +msgid "Display the most recent entries for a View" +msgstr "" + +#: includes/widgets.php:277 +msgid "Recent Entries" +msgstr "" + +#: includes/widgets.php:281 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/widgets.php:291 includes/widgets.php:545 +msgid "Title:" +msgstr "" + +#: includes/widgets.php:320 includes/widgets.php:555 +msgid "Please select a View to search." +msgstr "" + +#: includes/widgets.php:330 +msgid "— Select a View as Entries Source —" +msgstr "" + +#: includes/widgets.php:358 includes/widgets.php:592 +msgid "If Embedded, Page ID:" +msgstr "" + +#: includes/widgets.php:361 includes/widgets.php:595 +msgid "" +"To have a search performed on an embedded View, enter the ID of the post or " +"page where the View is embedded." +msgstr "" + +#: includes/widgets.php:368 +msgid "Number of entries to show:" +msgstr "" + +#: includes/widgets.php:375 +msgid "Entry link text (required)" +msgstr "" + +#: includes/widgets.php:382 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/widgets.php:410 +msgid "A search form for a specific GravityView." +msgstr "" + +#: includes/widgets.php:417 +msgid "GravityView Search" +msgstr "" + +#: includes/widgets.php:513 +#, php-format +msgid "" +"This widget is not configurable from this screen. Please configure it on the" +" %sWidgets page%s." +msgstr "" + +#: includes/widgets.php:563 +msgid "View:" +msgstr "" + +#: includes/widgets.php:565 +msgid "— Select a View —" +msgstr "" + +#: includes/widgets.php:604 +msgid "Searchable fields:" +msgstr "" + +#: includes/widgets.php:605 +msgid "Search Fields" +msgstr "" + +#: templates/fields/is_fulfilled.php:14 +msgid "Not Fulfilled" +msgstr "" + +#: templates/fields/is_fulfilled.php:16 +msgid "Fulfilled" +msgstr "" + +#: templates/fields/post_image.php:111 +msgctxt "Post Image field title heading" +msgid "Title:" +msgstr "" + +#: templates/fields/post_image.php:117 +msgctxt "Post Image field caption heading" +msgid "Caption:" +msgstr "" + +#: templates/fields/post_image.php:123 +msgctxt "Post Image field description heading" +msgid "Description:" +msgstr "" From 32eb9a96e0ca3cd47a26a230821b0d2f551e4c41 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:22:08 -0600 Subject: [PATCH 29/32] Fix footer credit. :heart_eyes_cat: --- includes/class-settings.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/class-settings.php b/includes/class-settings.php index 9d14f0a4d3..c2421d9aef 100644 --- a/includes/class-settings.php +++ b/includes/class-settings.php @@ -254,6 +254,9 @@ public function setArguments() { 'menu_title' => __('Settings', 'gravityview'), 'page_title' => __('Settings', 'gravityview'), + // Hide footer credit + 'footer_credit' => ' '. __('Thank you.', 'gravityview'), + 'async_typography' => false, // Use a asynchronous font on the front end or font string 'admin_bar' => false, // Show the panel pages on the admin bar 'global_variable' => '', // Set a different name for your global variable other than the opt_name From a6ab00cc159a2dc56a522d752f364231c9f41549 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:30:28 -0600 Subject: [PATCH 30/32] Version bump 1.7.2 baby --- gravityview.php | 4 +- includes/class-admin-views.php | 1 - includes/class-admin-welcome.php | 396 +++------------------- includes/class-gravityview-entry-list.php | 8 +- includes/widgets.php | 4 +- readme.txt | 11 +- 6 files changed, 54 insertions(+), 370 deletions(-) diff --git a/gravityview.php b/gravityview.php index f9b9eea1a1..deb448c7c5 100644 --- a/gravityview.php +++ b/gravityview.php @@ -14,7 +14,7 @@ * Plugin Name: GravityView * Plugin URI: http://gravityview.co * Description: Create directories based on a Gravity Forms form, insert them using a shortcode, and modify how they output. - * Version: 1.7.1 + * Version: 1.7.2 * Author: Katz Web Services, Inc. * Author URI: http://www.katzwebservices.com * Text Domain: gravityview @@ -68,7 +68,7 @@ */ final class GravityView_Plugin { - const version = '1.7.1'; + const version = '1.7.2'; public static $theInstance; diff --git a/includes/class-admin-views.php b/includes/class-admin-views.php index d714679d2b..c3f80bfde7 100644 --- a/includes/class-admin-views.php +++ b/includes/class-admin-views.php @@ -882,7 +882,6 @@ static function add_scripts_and_styles( $hook ) { if( gravityview_is_admin_page($hook, 'single') || $is_widgets_page ) { wp_enqueue_script( 'jquery-ui-datepicker' ); - //wp_enqueue_style( 'gravityview_views_datepicker', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css' ); wp_enqueue_style( 'gravityview_views_datepicker', plugins_url('assets/css/admin-datepicker.css', GRAVITYVIEW_FILE), GravityView_Plugin::version ); $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; diff --git a/includes/class-admin-welcome.php b/includes/class-admin-welcome.php index 7ee0e7669d..01f4b1ec63 100644 --- a/includes/class-admin-welcome.php +++ b/includes/class-admin-welcome.php @@ -258,54 +258,68 @@ public function changelog_screen() {

+ Configuring the Other Entries field +

New "Other Entries" Field

+

In Version 1.7.2, you can now list other entries created by the Entry creator.

+
+ +
Edit Post Content

Edit Post Content

You can now edit most Post Fields when you edit an entry.

Learn what fields are editable

-
- Column being sorted -

Sort Tables by Column

-

Users can sort View results by clicking the sort icons at the top of a table.

-

Learn how to enable

-
-
+ Column being sorted +

Sort Tables by Column

+

Users can sort View results by clicking the sort icons at the top of a table.

+

Learn how to enable

+
+ +
A new WordPress search widget

A WordPress Search Widget

A GravityView search widget that you can place anywhere on your site. Very powerful!

Learn more

-
+
Recent entries widget output

Recent Entries Widget

Display the most recent entries in your sidebar and customize how it's displayed.

Setting up recent entries

-
- Entry embedded in the Admin editor -

Embed Entries in a post or page

-

You’ve got an entry you want to blog about, but you want to do more than link to it. Now you can embed it!

-

How to embed entries

-

-

Changes in 1.7.1 (Full List)

+

Changes in 1.7.2

+ +
    +
  • Added: Other Entries field - Show what other entries the entry creator has in the current View
  • +
  • Added: Ability to hide the Approve/Reject column when viewing Gravity Forms entries (Learn how)
  • +
  • Fixed: Missing Row Action links for non-View types (posts, pages)
  • +
  • Fixed: Embedded DataTable Views with search_value not filtering correctly
  • +
  • Fixed: Not possible to change View status to 'Publish'
  • +
  • Fixed: Not able to turn off No-Conflict mode on the Settings page (oh, the irony!)
  • +
  • Fixed: Allow for non-numeric search fields in gravityview_get_entries()
  • +
  • Fixed: Social icons displaying on GravityView settings page
  • +
  • Tweak: Improved Javascript & PHP speed and structure
  • +
+ +

Changes in 1.7.1

  • Fixed: Fatal error on the list-body.php template
-

Changes in 1.7 (Full List)

+

Changes in 1.7

  • Added: You can now edit most Post Fields using GravityView Edit Entry @@ -334,14 +348,14 @@ public function changelog_screen() {
-

Changes in 1.6.2 (Full List)

+

Changes in 1.6.2

  • Added: Two new hooks in the Custom Content field to enable conditional logic or enable the_content WordPress filter which will trigger the Video embed (read how)
  • Fixed: Issue when embedding multiple DataTables views in the same page
  • Tweak: A more robust "Save View" procedure to prevent losing field configuration on certain browsers
-

Changes in 1.6.1 (Full List)

+

Changes in 1.6.1

  • Added: Allow Recent Entries to have an Embed Page ID
  • @@ -357,7 +371,7 @@ public function changelog_screen() {
  • Updated: Hungarian, Norwegian, Portuguese, Swedish, Turkish, and Spanish translations (thanks to all the translators!)
-

Changes in 1.6 (Full List)

+

Changes in 1.6

  • Our support site has moved to docs.gravityview.co. We hope you enjoy the improved experience!
  • @@ -382,7 +396,7 @@ public function changelog_screen() {
  • Fixed: Make sure search field choices are available before displaying field
-

Changes in 1.5.4 (Full List)

+

Changes in 1.5.4

  • Added: "Hide View data until search is performed" setting - only show the Search Bar until a search is entered
  • @@ -404,7 +418,7 @@ public function changelog_screen() {
-

Changes in 1.5.3 (full list)

+

Changes in 1.5.3

  • Fixed: When adding more than 100 fields to the View some fields weren't saved.
  • @@ -416,7 +430,7 @@ public function changelog_screen() {
-

Changes in 1.5.2 (full list)

+

Changes in 1.5.2

  • Added: Possibility to show the label of Dropdown field types instead of the value (learn more)
  • @@ -437,342 +451,10 @@ public function changelog_screen() {
+

+ View All Changes +

-

Changes in 1.5.1 (full list)

- -
    -
  • Added: Delete Entry functionality! - - New "User Delete" setting: allow the user who created an entry to delete it - -
      -
    • Adds a "Delete" link in the Edit Entry form
    • -
    • Added a new "Delete Link" Field to the Field Picker
    • -
    -
  • -
  • Fixed: DataTables Extension hangs when a View has Custom Content fields
  • -
  • Fixed: Search Bar - When searching on checkbox field type using multiselect input not returning results
  • -
  • Fixed: Search Bar - supports "Match Any" search mode by default (learn more)
  • -
  • Fixed: Single Entry View title when view is embedded
  • -
  • Fixed: Refresh the results cache when an entry is deleted or is approved/disapproved
  • -
  • Fixed: When users are created using the User Registration Addon, the resulting entry is now automatically assigned to them
  • -
  • Fixed: Change cache time to one day (from one week) so that Edit Link field nonces aren't invalidated
  • -
  • Fixed: Incorrect link shortening for domains when it is second-level (for example, example.co.uk or example.gov.za)
  • -
  • Fixed: Cached directory link didn't respect page numbers
  • -
  • Fixed: Edit Entry Admin Bar link wouldn't work when using Custom Entry Slug
  • -
  • Added: Textarea field now supports an option to trim the number of words shown
  • -
  • Added: Filter to alter the default behaviour of wrapping images (or image names) with a link to the content object (learn more)
  • -
  • Updated: Portuguese translation (thanks @luistinygod), Mexican translation (thanks, @jorgepelaez), Turkish translation (thanks @suhakaralar)
  • -
- -

Changes in 1.5 (full list)

- -
    -
  • Added: New "Edit Entry" configuration -
      -
    • Configure which fields are shown when editing an entry
    • -
    • Set visibility for the fields (Entry Creator, Administrator, etc.)
    • -
    • Set custom edit labels
    • -
    -
  • -
  • Fixed: Single entry view now respects View settings -
      -
    • If an entry isn't included in View results, the single entry won't be available either
    • -
    • If "Show Only Approved" is enabled, prevent viewing of unapproved entries
    • -
    • Respects View filters, including those added by the Advanced Filtering extension
    • -
    -
  • -
  • Fixed: Single entry Go back button context on Embedded Views
  • -
  • Fixed: Delete signature fields in Edit Entry (requires the Gravity Forms Signature Addon)
  • -
  • Fixed: Gravity Forms tooltip translations being overridden
  • -
  • Added: Choose to open the link from a website field in the same window (field option)
  • -
- - -

Changes in 1.4 (full list)

- -
    -
  • Added: Custom entry slug capability. Instead of /entry/123, you can now use entry values in the URL, like /entry/{company name}/ or /entry/{first name}-{last name}/. Requires some customization; learn more here
  • -
  • Fixed: GravityView auto-updater script not showing updates
  • -
  • Fixed: Edit Entry when a form has required Upload Fields
  • -
  • Fixed: "Return to Directory" link not always working for sites in subdirectories
  • -
  • Fixed: Broken links to single entries when viewing paginated results
  • -
  • Fixed: Loaded field configurations when using "Start Fresh" presets
  • -
  • Fixed: Searches ending in a space caused PHP warning
  • -
  • Fixed: Custom "Edit Link Text" settings respected
  • -
  • Fixed: Don't rely on Gravity Forms code for escaping query
  • -
  • Fixed: When multiple Views are displayed on a page, Single Entry mode displays empty templates.
  • -
  • Fixed: PHP error when displaying Post Content fields using Live Data for a post that no longer is published
  • -
  • Tweak: Search Bar "Links" Input Type - -
      -
    • Make link bold when filter is active
    • -
    • Clicking on an active filter removes the filter
    • -
    -
  • -
  • Tweak: Fixed updates for Multisite installations
  • -
  • Modified: Now you can override which post a single entry links to. For example, if a shortcode is embedded on a home page and you want single entries to link to a page with an embedded View, not the View itself, you can pass the post_id parameter. This accepts the ID of the page where the View is embedded.
  • -
  • Modified: Added $add_pagination parameter to GravityView_API::directory_link()
  • -
  • Added: Indonesian translation (thanks, @sariyanta)!
  • -
  • Updated: Swedish translation 100% translated - thanks, @adamrehal!
  • -
  • Updated: Dutch translation (thanks, @leooosterloo)!
  • -
- -

Changes in 1.3 (full list)

- -
    -
  • Speed improvements - Learn more about GravityView caching - -
      -
    • Added caching functionality that saves results to be displayed
    • -
    • Automatically clean up expired caches
    • -
    • Reduce number of lookups for where template files are located
    • -
    • Store the path to the permalink for future reference when rendering a View
    • -
    • Improve speed of Gravity Forms fetching field values
    • -
    -
  • -
  • Modified: Allow {all_fields} and {pricing_fields} Merge Tags in Custom Content field. See examples of how to use these fields.
  • -
  • Fixed: Message restored when creating a new View
  • -
  • Fixed: Searching advanced input fields
  • -
  • Fixed: Merge Tags available immediately when adding a new field
  • -
  • Fixed: Issue where jQuery Cookie script wouldn't load due to mod_security issues. Learn more here
  • -
  • Fixed (hopefully): Auto-updates for WordPress Multisite
  • -
  • Fixed: Clicking overlay to close field/widget settings no longer scrolls to top of page
  • -
  • Fixed: Make sure Gravity Forms scripts are added when embedding Gravity Forms shortcodes in a Custom Field
  • -
  • Fixed: Remove double images of Floaty in the warning message when Gravity View is disabled
  • -
  • Fixed: PHP warnings related to Section field descriptions
  • -
  • Fixed: When using an advanced input as a search field in the Search Bar, the label would always show the parent field's label (Eg: "Address" when it should have shown "City") - -
      -
    • Added: gravityview_search_field_label filter to allow modifying search bar labels
    • -
    -
  • -
  • Fixed: Field label disappears on closing settings if the field title is empty
  • -
  • Fixed: Sub-fields retain label after opening field settings in the View Configuration
  • -
  • Modified: Allow passing an array of form IDs to gravityview_get_entries()
  • -
  • Tweak: If the View hasn't been configured yet, don't show embed shortcode in Publish metabox
  • -
  • Tweak: Add version info to scripts and styles to clear caches with plugin updates
  • -
  • Added: Swedish translation (thanks, @adamrehal)!
  • -
  • Updated: Spanish (Mexican) translation by, @jorgepelaez, Dutch translation by @erikvanbeek, and Turkish translation by @suhakaralar
  • -
  • Updated: Changed Turkish language code from tr to tr_TR to match WordPress locales
  • -
- - -

Changes in 1.2 (full list)

- -
    -
  • Added: New Search Bar! -
      -
    • No longer check boxes in each field to add a field to the search form
    • -
    • Add any searchable form fields, not just fields added to the View
    • -
    • Easy new drag & drop way to re-order fields
    • -
    • Horizontal and Vertical layouts
    • -
    • Choose how your search fields are displayed (if you have a checkbox field, for example, you can choose to have a drop-down, a multiselect field, checkboxes, radio buttons, or filter links)
    • -
    • Existing search settings will be migrated over on upgrade
    • -
    -
  • -
  • Added: "Custom Content" field type -
      -
    • Insert arbitrary text or HTML in a View
    • -
    • Supports shortcodes (including Gravity Forms shortcodes)!
    • -
    -
  • -
  • Added: Support for Gravity Forms Section & HTML field types
  • -
  • Added: Improved textarea field support. Instead of using line breaks,textareas now output with paragraphs. -
      -
    • Added new /templates/fields/textarea.php file
    • -
    -
  • -
  • Added: A new File Upload field setting. Force uploads to be displayed as links and not visually embedded by checking the "Display as a Link" checkbox.
  • -
  • Added: Option to disable "Map It" link for the full Address field. -
      -
    • New gravityview_get_map_link() function with gravityview_map_link filter. To learn how to modify the map link, refer to this how-to article
    • -
    • The "Map It" string is now translatable
    • -
    -
  • -
  • Added: When editing a View, there are now links in the Data Source box to easily access the Form: edit form, form entries, form settings and form preview
  • -
  • Added: Additional information in the "Add Field" or "Add Widget" picker (also get details about an item by hovering over the name in the View Configuration)
  • -
  • Added: Change Entry Creator functionality. Easily change the creator of an entry when editing the entry in the Gravity Forms Edit Entry page - -
      -
    • If you're using the plugin downloaded from the how-to page, you can de-activate it
    • -
    -
  • -
  • Modified: Changed translation textdomain to gravityview instead of gravity-view
  • -
  • Modified: Always show label by default, regardless of whether in List or Table View type
  • -
  • Modified: It's now possible to override templates on a Form ID, Post ID, and View ID basis. This allows custom layouts for a specific View, rather than site-wide. See "Template File Hierarchy" in the override documentation to learn more.
  • -
  • Modified: File Upload field output no longer run through wpautop() function
  • -
  • Modified: Audio and Video file uploads are now displayed using WordPress' built-in audio and video shortcodes (requires WordPress 3.6 or higher) -
      -
    • Additional file type support
    • -
    • Added gravityview_video_settings and gravityview_audio_settings filters to modify the parameters passed to the shortcode
    • -
    -
  • -
  • Fixed: Shortcode attributes not overriding View defaults
  • -
  • Fixed: Uploading and deleting files works properly in Edit Entry mode
  • -
  • Fixed: Configurations get truncated when configuring Views with many fields
  • -
  • Fixed: Empty <span class="gv-field-label"> tags no longer output -
      -
    • Modified: gv_field_label() no longer returns the label with a trailing space. Instead, we use the .gv-field-label CSS class to add spacing using CSS padding.
    • -
    -
  • -
  • Fixed: Conflict with Relevanssi plugin
  • -
  • Fixed: If a date search isn't valid, remove the search parameter so it doesn't cause an error in Gravity Forms
  • -
  • Fixed: Email field was displaying label even when email was empty.
  • -
  • Settings page improvements -
      -
    • When changing the license value and saving the form, GravityView now re-checks the license status
    • -
    • Improved error messages
    • -
    • Made license settings translatable
    • -
    -
  • -
  • Modified: Added support for Gravity Forms "Post Image" field captions, titles, and descriptions.
  • -
  • Updated list of allowed image formats to include .bmp, .jpe, .tiff, .ico
  • -
  • Modified: /templates/fields/fileupload.php file - removed the logic for how to output the different file types and moved it to the gravityview_get_files_array() function in includes/class-api.php
  • -
  • Modified: gv_value() no longer needs the $field parameter
  • -
  • Tweak: Fixed email setting description text.
  • -
  • Tweak: Don't show Entry Link field output on single entry
  • -
  • Tweak: Improved Javascript performance in the Admin
  • -
  • Tweak: "Custom Label" is now shown as the field title in View Configuration
  • -
  • Tweak: Fixed "Left Footer" box not properly cleared
  • -
  • Tweak: Show warning if the Directory plugin is running
  • -
  • Tweak: Use icon font in Edit Entry mode for the download/delete file buttons. Now stylable using .gv-edit-entry-wrapper .dashicons CSS class.
  • -
  • Updated: Turkish translation by @suhakaralar, Dutch translation by @leooosterloo, Portuguese translation by @luistinygod
  • -
- -

What changed in 1.1.6

-
    -
  • A link icon is shown when a field is being used as a link to the Single Entry mode (see screenshot)
  • -
  • Fixed: Approve / Disapprove all entries using Gravity Forms bulk edit entries form (previously, only visible entries were affected)
  • -
  • Email addresses are now encrypted by default to prevent spammers
  • -
  • Fixed: License Activation works when No-Conflict Mode is enabled
  • -
  • Fixed: Fields not always saving properly when adding lots of fields with the "Add All Fields" button
  • -
  • Fixed: Recognize single entry when using WordPress "Default" Permalink setting
  • -
  • Fixed: Edit Entry issues -
      -
    • Fixed form validation errors when a scheduled form has expired and also when a form has reached its entry limit
    • -
    • Fixed PHP warning messages when editing entries
    • -
    • When an Edit Entry form is submitted and there are errors, the submitted values stay in the form; the user won't need to fill in the form again.
    • -
    -
  • -
  • Added: Email field settings -
      -
    • Added option to display email plaintext or as a link
    • -
    • Added subject and body settings: when the link is clicked, you can choose to have these values pre-filled
    • -
    -
  • -
  • Source URL field settings, including show as a link and custom link text
  • -
  • Fixed: Empty truncated URLs no longer get shown
  • -
  • Fixed: Date Created field now respects the blog's timezone setting, instead of using UTC time
  • -
  • Fixed: Product sub-fields (Name, Quantity & Price) displayed properly
  • -
  • Fixed: Empty entry display when using Job Board preset caused by incorrect template files being loaded
  • -
  • Fixed: Files now can be deleted when a non-administrator is editing an entry
  • -
  • Fixed: PHP Notices on Admin Views screen for users without edit all entries capabilities
  • -
  • Modified: Added ability to customize and translate the Search Bar's date picker. You can now fully customize the date picker.
  • -
  • Tweak: Added helper text when a new form is created by GravityView
  • -
  • Tweak: Renamed "Description" drop zone to "Other Fields" to more accurately represent use
  • -
  • Tweak: Remove all fields from a zone by holding down the Alt key while clicking the remove icon
  • -
  • And much more! See the full plugin changelog for more information.
  • -
- - -

What changed in 1.1.5

-
    -
  • Added: New "Edit" link in Gravity Forms Entries screen - allows you to easily access the Edit screen for an entry.
  • -
  • Fixed: Show tooltips when No Conflict Mode is enabled
  • -
  • Fixed: Merge Vars for labels in Single Entry table layouts
  • -
  • Fixed: Duplicate "Edit Entry" fields in field picker
  • -
  • Fixed: Custom date formatting for Date Created field
  • -
  • Fixed: Searching full names or addresses now works
  • -
  • Fixed: Custom CSS classes are now added to cells in table-based Views
  • -
  • Updated: Turkish translation by @suhakaralar
  • -
- -

What changed in 1.1.4

-
    -
  • Fixed: Sort & Filter box not displaying
  • -
  • Fixed: Multi-select fields now display as drop-down field instead of text field in the search bar widget
  • -
  • Fixed: Edit Entry now compatibile with Gravity Forms forms when "No Duplicates" is enabled
  • -
- -

What changed in 1.1.3

-
    -
  • Fixed: Fatal error on activation when running PHP 5.2
  • -
  • Fixed: PHP notice when in No-Conflict mode
  • -
- -

What changed in 1.1.2

-
    -
  • Added: Extensions framework to allow for extensions to auto-update
  • -
  • Fixed: Entries not displaying in Visual Composer plugin editor
  • -
  • Fixed: Allow using images as link to entry
  • -
  • Fixed: Updated field layout in Admin to reflect actual layout of listings (full-width title and subtitle above image)
  • -
  • Fixed: When trying to access an entry that doesn't exist (it had been permanently deleted), don't throw an error
  • -
  • Fixed: Default styles not being enqueued when embedded using the shortcode (fixes vertical pagination links)
  • -
  • Fixed: Improved style for Edit Entry mode
  • -
  • Fixed: Editing entry updates the Approved status
  • -
  • New translations - thank you, everyone! - -
  • -
- -

What changed in 1.1.1

- -
    -
  • We fixed license validation and auto-updates. Sorry for the inconvenience of having to re-download the plugin!
  • -
  • Added: View Setting to allow users to edit only entries they created.
  • -
  • Fixed: Could not edit an entry with Confirm Email fields
  • -
  • Fixed: Field setting layouts not persisting
  • -
  • Updated: Bengali translation by @tareqhi
  • -
  • Fixed: Logging re-enabled in Admin
  • -
  • Tweak: Added links to View Type picker to live demos of presets.
  • -
  • Tweak: Added this "List of Changes" tab.
  • -
- -

What changed in 1.1

-
    -
  • Refactored (re-wrote) View data handling. Now saves up to 10 queries on each page load.
  • -
  • Fixed: Infinite loop for rendering post_content fields
  • -
  • Fixed: Page length value now respected for DataTables
  • -
  • Fixed: Formatting of DataTables fields is now processed the same way as other fields. Images now work, for example.
  • -
  • Modified: Removed redundant gravityview_hide_empty_fields filters
  • -
  • Fixed/Modified: Enabled wildcard search instead of strict search for field searches.
  • -
  • Added: gravityview_search_operator filter to modify the search operator used by the search.
  • -
  • Added: gravityview_search_criteria filter to modify all search criteria before being passed to Gravity Forms
  • -
  • Added: Website Field setting to display shortened link instead of full URL
  • -
  • Fixed: Form title gets replaced properly in merge tags
  • -
  • Modified: Tweaked preset templates
  • -
- - -

What changed in 1.0.9

-
- Edit Form Buttons -

New Buttons form Gravity Forms

-
-
    -
  • Added: Time field support, with date format default and options
  • -
  • Added: Event Listings View preset
  • -
  • Added: Show Entry On Website Gravity Forms form button. This is meant to be an opt-in checkbox that the user sees and can control, unlike the Approve/Reject button, which is designed for adminstrators to manage approval.
  • -
  • Improved horizontal search widget layout
  • -
  • Fixed: Only show Edit Entry link to logged-in users
  • -
  • Updated: Dutch translation by @leooosterloo (100% coverage, thank you!)
  • -
- -

What changed in 1.0.8

-
    -
  • Edit Entry LinkEdit Entry - you can add an Edit Entry link using the Add Field buttons in either the Multiple Entries or Single Entry tab. -
      -
    • For now, if the user has the ability to edit entries in Gravity Forms, they’ll be able to edit entries in GravityView. Moving forward, we'll be adding refined controls over who can edit which entries.
    • -
    • It supports modifying existing Entry uploads and the great Multiple-File Upload field.
    • -
    -
  • -
  • Fixed: Insert View embed code now works again
  • -
  • Fixed: Filtering by date now working
  • -
diff --git a/includes/class-gravityview-entry-list.php b/includes/class-gravityview-entry-list.php index 7cec266c8b..23c3cddd11 100644 --- a/includes/class-gravityview-entry-list.php +++ b/includes/class-gravityview-entry-list.php @@ -8,7 +8,7 @@ /** * Generate linked list output for a list of entries. * - * @since 1.8 + * @since 1.7.2 */ class GravityView_Entry_List { @@ -232,7 +232,7 @@ private function skip_entry( $entry, $current_entry ) { * * @param array $entry GF Entry array * - * @since 1.8 + * @since 1.7.2 * * @uses gravityview_get_link * @uses GravityView_API::entry_link @@ -251,7 +251,7 @@ private function get_item_output( $entry ) { /** * Modify the item output HTML * - * @since 1.8 + * @since 1.7.2 * * @param string $item_output The HTML output for the after_link content * @param array $entry Gravity Forms entry array @@ -269,7 +269,7 @@ private function get_item_output( $entry ) { /** * Modify the item output HTML * - * @since 1.8 + * @since 1.7.2 * * @param string $item_output The HTML output for the item * @param array $entry Gravity Forms entry array diff --git a/includes/widgets.php b/includes/widgets.php index 124f251e7c..20a9252553 100644 --- a/includes/widgets.php +++ b/includes/widgets.php @@ -131,7 +131,7 @@ function widget( $args, $instance ) { /** * Get the HTML output for the entry list. * - * @since 1.8 + * @since 1.7.2 * * @param array $instance The settings for the particular instance of the widget. * @@ -153,7 +153,7 @@ private function get_output( $instance ) { /** * Generate list output - * @since 1.8 + * @since 1.7.2 */ $List = new GravityView_Entry_List( $entries, $entry_link_post_id, $form, $instance['link_format'], $instance['after_link'], 'recent-entries-widget' ); diff --git a/readme.txt b/readme.txt index 49e48412c4..b0894929f2 100644 --- a/readme.txt +++ b/readme.txt @@ -20,13 +20,16 @@ Beautifully display your Gravity Forms entries. Learn more on [GravityView.co](h == Changelog == -= 1.7.2 = -* Fixed: Missing quick action links on the posts list. -* Fixed: Embedded DataTable Views with search_value not filtering correctly += 1.7.2 on March 18 = * Added: Other Entries field - Show what other entries the entry creator has in the current View +* Added: Ability to hide the Approve/Reject column when viewing Gravity Forms entries ([Learn how](http://docs.gravityview.co/article/248-how-to-hide-the-approve-reject-entry-column)) +* Fixed: Missing Row Action links for non-View types (posts, pages) +* Fixed: Embedded DataTable Views with `search_value` not filtering correctly * Fixed: Not possible to change View status to 'Publish' -* Fixed: Settings page not able to turn off No-Conflict mode (oh, the irony!) +* Fixed: Not able to turn off No-Conflict mode on the Settings page (oh, the irony!) +* Fixed: Allow for non-numeric search fields in `gravityview_get_entries()` * Fixed: Social icons displaying on GravityView settings page +* Tweak: Improved Javascript & PHP speed and structure = 1.7.1 on March 11 = * Fixed: Fatal error on the `list-body.php` template From be6f4f5fc17354ef5e0375fe9790b6aa13d700f3 Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:38:52 -0600 Subject: [PATCH 31/32] Update translation file --- languages/gravityview-ady.mo | Bin 754 -> 740 bytes languages/gravityview-ady.po | 442 ++++++++++++++++++-------------- languages/gravityview-bn_BD.mo | Bin 48682 -> 47916 bytes languages/gravityview-bn_BD.po | 442 ++++++++++++++++++-------------- languages/gravityview-da.mo | Bin 738 -> 738 bytes languages/gravityview-da.po | 440 ++++++++++++++++++-------------- languages/gravityview-de_DE.mo | Bin 28855 -> 28411 bytes languages/gravityview-de_DE.po | 442 ++++++++++++++++++-------------- languages/gravityview-el_GR.mo | Bin 752 -> 752 bytes languages/gravityview-el_GR.po | 440 ++++++++++++++++++-------------- languages/gravityview-en_US.mo | Bin 761 -> 761 bytes languages/gravityview-en_US.po | 440 ++++++++++++++++++-------------- languages/gravityview-es_AR.mo | Bin 757 -> 757 bytes languages/gravityview-es_AR.po | 440 ++++++++++++++++++-------------- languages/gravityview-es_MX.mo | Bin 38582 -> 38173 bytes languages/gravityview-es_MX.po | 442 ++++++++++++++++++-------------- languages/gravityview-fi.mo | Bin 16693 -> 16314 bytes languages/gravityview-fi.po | 442 ++++++++++++++++++-------------- languages/gravityview-fr_FR.mo | Bin 13935 -> 13935 bytes languages/gravityview-fr_FR.po | 440 ++++++++++++++++++-------------- languages/gravityview-hu_HU.mo | Bin 40291 -> 39831 bytes languages/gravityview-hu_HU.po | 442 ++++++++++++++++++-------------- languages/gravityview-id_ID.mo | Bin 2030 -> 2030 bytes languages/gravityview-id_ID.po | 440 ++++++++++++++++++-------------- languages/gravityview-it_IT.mo | Bin 10161 -> 10161 bytes languages/gravityview-it_IT.po | 440 ++++++++++++++++++-------------- languages/gravityview-lt_LT.mo | Bin 837 -> 823 bytes languages/gravityview-lt_LT.po | 442 ++++++++++++++++++-------------- languages/gravityview-nb_NO.mo | Bin 1968 -> 1968 bytes languages/gravityview-nb_NO.po | 440 ++++++++++++++++++-------------- languages/gravityview-nl.mo | Bin 737 -> 737 bytes languages/gravityview-nl.po | 440 ++++++++++++++++++-------------- languages/gravityview-pt.mo | Bin 742 -> 742 bytes languages/gravityview-pt.po | 440 ++++++++++++++++++-------------- languages/gravityview-pt_BR.mo | Bin 756 -> 756 bytes languages/gravityview-pt_BR.po | 440 ++++++++++++++++++-------------- languages/gravityview-pt_PT.mo | Bin 44295 -> 43847 bytes languages/gravityview-pt_PT.po | 444 +++++++++++++++++++-------------- languages/gravityview-ro_RO.mo | Bin 19168 -> 18736 bytes languages/gravityview-ro_RO.po | 442 ++++++++++++++++++-------------- languages/gravityview-ru.mo | Bin 813 -> 813 bytes languages/gravityview-ru.po | 440 ++++++++++++++++++-------------- languages/gravityview-sv_SE.mo | Bin 37173 -> 36788 bytes languages/gravityview-sv_SE.po | 442 ++++++++++++++++++-------------- languages/gravityview-tr.mo | Bin 738 -> 738 bytes languages/gravityview-tr.po | 440 ++++++++++++++++++-------------- languages/gravityview-tr_TR.mo | Bin 44312 -> 43892 bytes languages/gravityview-tr_TR.po | 442 ++++++++++++++++++-------------- languages/gravityview.mo | Bin 718 -> 718 bytes languages/gravityview.pot | 440 ++++++++++++++++++-------------- 50 files changed, 6212 insertions(+), 4812 deletions(-) diff --git a/languages/gravityview-ady.mo b/languages/gravityview-ady.mo index 9722f75d1645df7fa929d611077340a2be052ccb..4a6c96e839a7c447ebea70bf163bbb6e4716c11b 100644 GIT binary patch delta 82 zcmeyw`h<0Y3gfDYs{R~?779j&R>sB?YoyIgbq$Pl4J{Q6jIE5#v<-lO%O|n8L^q@; kF|Rl$u_V99N+BvSIU}*CQo%d1q)Nf2Dls{G<85&!0M&dMDF6Tf delta 96 zcmaFD`iXUd3geE6s{R}XW(o!dR>l?+YouLFbPY^(4NVjbEvyWTwGDuP%O|n8L^q@; yF|Rl$u_V99O2Ip^q)H(?HAx{jwWusJIki|v!80#ePr;_Rw4flrsAS_=aV7v%Y#r(V diff --git a/languages/gravityview-ady.po b/languages/gravityview-ady.po index ce2808d071..16106a8fc7 100644 --- a/languages/gravityview-ady.po +++ b/languages/gravityview-ady.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2014-05-14 18:03+0000\n" -"Last-Translator: Katz Web Services, Inc. \n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" +"Last-Translator: Zachary Katz \n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/gravityview/language/ady/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-bn_BD.mo b/languages/gravityview-bn_BD.mo index 4050bd1c398f1c1bac74ae32d2ba14436307c789..8b85959601d9c3a8b3287bb722b0ef0277c9bbc6 100644 GIT binary patch delta 7353 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\n" "Language-Team: Bengali (http://www.transifex.com/projects/p/gravityview/language/bn/)\n" "MIME-Version: 1.0\n" @@ -21,15 +21,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "উপরে" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "বামে" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "ডানে" @@ -99,7 +99,7 @@ msgstr "এই এন্ট্রি সম্পাদন করুন" msgid "Edit" msgstr "সম্পাদন করুন" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "তথ্যের উৎস" @@ -184,7 +184,7 @@ msgstr "একাধিক এন্ট্রি" msgid "Single Entry" msgstr "একক এন্ট্রি" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -264,7 +264,7 @@ msgid "" "shortcodes.%s" msgstr "এই ফর্মটি দৃশ্য যুক্ত করতে %s ব্যবহার করুন। %sসর্টকোড কিভাবে ব্যবহার করতে হয় জানুন।%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "একটি দৃশ্য নির্বাচন করুন" @@ -272,8 +272,8 @@ msgstr "একটি দৃশ্য নির্বাচন করুন" msgid "— Select a View to Insert —" msgstr "— প্রবেশ করানোর জন্য একটি দৃশ্য বাছাই করুন —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(কোন টাইটেল নাই)" @@ -282,13 +282,13 @@ msgid "Insert View" msgstr "দৃশ্য ঢোকান" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "বাতিল" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "লোড হচ্ছে…" @@ -296,92 +296,92 @@ msgstr "লোড হচ্ছে…" msgid "Please select a View" msgstr "দয়াকরে একটি দৃশ্য বাছাই করুন" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "গ্রাভিটিভিউ ফিল্ডগুলো" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "এডমিনিস্ট্রেটরকে অনুনমোদন দিন, এন্ট্রি অনুমোদন অথবা বাতিল করার এবং ব্যবহারকারীকে তাদের এন্ট্রি দৃশ্যমান হবার ক্ষেত্রে।" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "অনুমোদন/বাতিল" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "মুক্ত ব্যবহারকারী" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "অনুমোদিত? (শুধুমাত্র প্রশাসক)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "অনুমোদিত?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "অনুমোদিত" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "দৃশ্য ওয়েবসাইটে দেখান" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "মুক্ত" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "হ্যা, আমার এন্ট্রি ওয়েবসাইটে দেখান" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d এন্ট্রি" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "এন্ট্রি" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s অনুমোদিত।" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s অননুমোদিত।" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "গ্রাভিটি ভিউ এর এই এন্ট্রি অননুমোদন করুন" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "গ্রাভিটি ভিউ এর এই এন্ট্রি অনুমোদন করুন" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "অনুমোদন" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "অমনোনীত" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "এন্ট্রি দেখানোর জন্য অনুমোদন করা হয়নি। অনুমোদন করার জন্য ক্লিক করুন।" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "এন্ট্রি দেখানোর জন্য অনুমোদন করা হয়েছে। অননুমোদিত করার জন্য ক্লিক করুন।" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "এন্ট্রি ডিরেক্টরি দৃশ্যে দেখাবে কি?" @@ -420,182 +420,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "ফিল্ড # %s (কোন লেবেল নাই)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "যুক্ত দৃশ্যগুলো" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "গ্রাভিটিভিউ দৃশ্যগুলো এই ফর্মকে ডাটা সোর্স হিসেবে ব্যবহার করছে" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "সিএসএস মার্জ ট্যাগ" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "ডেভেলপার: সিএসএস ক্লাস %ssanitize_title_with_dashes()%s ফাঙ্কসন ব্যবহার করলে পরিস্কার হবে।" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "সংযোগ নাই" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "সংযোগকৃত ফর্মটি পাওয়া যায়নি। এটা সম্ভবত আর নেই।" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "ফর্ম সম্পাদন করুন" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "এন্ট্রিসমূহ" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "বিন্যাস" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "এই ফর্মের সেটিংস সম্পাদন করুন" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "ফরম দেখুন" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "এই ফর্ম দেখুন" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ সকল ফিল্ড যোগ করুন" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "প্রাপ্ত সকল ফিল্ডগুলো একসাথে যোগ করুন।" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "এন্ট্রি আইডি" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "এন্ট্রির মৌলিক আইডি।" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "এন্ট্রি তারিখ" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "এন্ট্রি তৈরির তারিখ" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "উৎস ইউআরএল" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "ফর্ম সাবমিট করা পেজের ইআরএল।" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "ব্যবহারকারীর আইপি" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "এন্ট্রি তৈরিকারক ব্যবহারকারীর আইটি ঠিকানা।" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "ব্যবহারকারী" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "এন্ট্রি তৈরিকারক লগ-ইনকৃত ব্যবহারকারীর বিস্তারিত(যদি থাকে)।" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "বিষয়বস্তু" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "বাক্য অথবা এইচটিএমএল যুক্ত করুন।" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "এন্ট্রির সাথে সংযোগ" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "একক এন্ট্রির একটি উৎসর্গীকৃত লিংক কাস্টমাইজড বাক্য সহ।" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "উইজেড যোগ করুন" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "ফিল্ড যোগ করুন" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" অথবা এখানে পুরাতনগুলো টেনে আনুন %ss" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "এই দৃশ্যটি %s দৃশ্য ব্যবহার করে কনফিগার করা হয়েছে, যেটি নিস্ক্রিয় রয়েছে।" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "তথ্য হারিয়ে যায়নি। সংশ্লিষ্ঠ প্লাগইন্সটি সক্রিয় করুন এবং কনফিগারেশন পুনরায় দেখাবে।" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "দৃশ্যের নাম এখানে প্রবেশ করান" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "বন্ধ" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "চলমান" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "ঠিক আছে" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "দৃশ্য তৈরি করার সময় সমস্যা হয়েছে। সেটিংস দেখুন অথবা গ্রাভিটি ভিউ সাপোর্ট দেখুন" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "ডাইনামিক বিষয়বস্তু লোড হতে এখানে একটি সমস্য রয়েছে।" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "ফিল্ড যুক্ত করার সময় সমস্যা হচ্ছে। দয়া করে পুণরায় চেষ্ঠা করুন অথবা গ্রাভিটিভিউ সাপোর্ট এর সাথে যোগাযোগ করুন।" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -637,19 +645,19 @@ msgstr "পরিবর্তনের লিস্ট" msgid "What’s New" msgstr "নতুন ’ কি" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "গ্রাভিটি ভিউ আপনার জন্য নিয়ে এল:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "সহযোগী যারা" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "সহযোগীতা করতে চান?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -753,37 +761,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s দৃশ্য আবর্জনার ঝুড়ি থেকে পুনরায় ফিরিয়ে আনা হয়েছে।" msgstr[1] "%s দৃশ্য আবর্জনার ঝুড়ি থেকে পুনরায় ফিরিয়ে আনা হয়েছে।" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "বাতিল করুন" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "সম্ভাব্য সংঘাত" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "গ্রাভিটিভিউ এবং গ্রাভিটি ফর্ম ডিরেক্টরি দুটোই সক্রিয়। এটা সমস্যা তৈরি করতে পারে। যদি আপনি এ সমস্যার সম্মুখিন হন, গ্রাভিটি ফর্ম ডিরেক্টনি প্লাগইন নিস্ক্রিয় করুন।" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%s গ্রাভিটি ভিউ চালানোর জন্য গ্রাভিটি ফর্ম ভার্সন 1.8 অথবা নতুনতর দরকার। %s\n\nআপনি ভার্সন %s চালাচ্ছেন। দয়া করে আপনার গ্রাভিটি ফর্ম হালনাগাদ করুন অথবা লাইসেন্স ক্রয় করুন। %sগ্রাভিটি ফর্ম কিনুন%s- শুরু মাত্র $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sগ্রাভিটি ভিউ চালাতে গ্রাভিটি ফর্ম সচল রাখতে হবে। গ্রাভিটি ভিউ প্লাগইন্স ব্যবহার করার জন্য %sগ্রাভিটি ফর্ম সচল করুন%s" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -881,11 +899,11 @@ msgstr "লেনদেনের আইডি" msgid "Transaction Type" msgstr "লেনদেনের প্রকার" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "ডিফল্ট" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "নির্মাণের তারিখ" @@ -893,26 +911,26 @@ msgstr "নির্মাণের তারিখ" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -920,155 +938,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "দৃশ্যের আইডি" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "প্রতি পৃষ্ঠায় এন্ট্রির সংখ্যা" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "ছবির জন্য লাইটবক্স সক্রিয় করুন" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "শুধুমাত্র অনুমোদিত এন্ট্রিসমূহ দেখান" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "দৃশ্যের তথ্য লুকিয়ে রাখুন যতক্ষণ না অনুসন্ধান করা হয়" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "যখন সক্রিয় থাকবে এটি শুধু দৃশ্যের তথ্য দেখাবে যখন অনুসন্ধান করা হবে।" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "শূন্য ফিল্ডগুলো লুকান" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "ব্যবহারকারীর সম্পাদন ক্ষমতা দিন" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "লগ-ইন করা ব্যবহারকারীকে তাদের তৈরিকৃত এন্ট্রি সম্পাদন করার ক্ষমতা দিন।" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "\"এন্ট্রি সম্পাদন\" ফিল্ড এডমিনিস্ট্রেটর নয় এমন ব্যবহারকারীর নিকট দেখান যদি তারা একই এন্ট্রির তৈরিকারক হয়। এন্ট্রি সম্পাদন ফিল্ড সবসময় সাইট এডমিনিস্ট্রেটরদের নিকট সবসময় দেখানো হবে।" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "ব্যবহারকারীকে তথ্য মুছে ফেলার ক্ষমতা দিন" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "লগ-ইন করা ব্যবহারকারীকে তাদের তৈরিকৃত এন্ট্রি মুছে ফেলার ক্ষমতা দিন।" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "\"এন্ট্রি মুছে ফেলুন\" লিংক এডমিনিস্ট্রেটর নয় এমন ব্যবহারকারীদের দেখাবে যদি তারা এন্ট্রির তৈরিকারক হয়। এন্ট্রি মুছে ফেলুন লিংক সবসময় এডমিনিস্ট্রেটরদের নিকট প্রদর্শিত হবে।" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "ফিল্ড অনুসারে সাজান" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "সাজানোর দিক" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "কখগ" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "গখক" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "শুরুর তারিখ দ্বারা ফিল্টার করুন" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "এই তারিখের পরে জমানো এন্ট্রিগুলো দেখান। সমর্থনকৃত তারিখ, যেমন \"-1 সপ্তাহ\" অথবা \"-1 মাস\"" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "শেষ তারিখ দ্বারা ফিল্টার করুন" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "এই তারিখের পূর্বে জমানো এন্ট্রিগুলো দেখান। সমর্থনকৃত তারিখ, যেমন \"এখন\" অথবা \"-3 দিন\"।" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "সিএসএস ক্লাস" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "এইচটিএমএল আধারে মোড়ানোর জন্য সিএসএস ক্লাস।" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "ভ্যালু অনুসন্ধান" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "দৃশ্যের জন্য একটি অনুসন্ধান ভ্যালু নির্ধারণ করুন" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "অনুসন্ধান ফিল্ড" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "যদি অনুসন্ধান ভ্যালু নির্ধারিত থাকে, আপনি একটি নির্দিষ্ঠ ফিল্ডে অনুসন্ধান করতে পারেন। অন্যথায়, সকল ফিল্ডে অনুসন্ধান হবে।" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "একক দৃশ্য টাইটেল" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "যখন একক এন্ট্রি দেখাবে, এই সেটিংস এর টাইটেল পেজের টাইটেল হিসেবে পরিবর্তন করবে। অন্যথায় একাধিক এন্ট্রি এবং একক এন্ট্রির ক্ষেত্রে টাইটেল পরিবর্তন হবেনা।" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "পিছেনের লিংকের লেবেল" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "একাধিক এন্ট্রি দৃশ্য ফিরে যাওয়ার লিংকের শব্দ।" @@ -1089,50 +1107,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "খালি" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "আপনি এমন একটি এন্ট্রি দেখতে চাইছেন যেটি দৃশ্যমান নয় অথবা অস্তিত্ব নেই।" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "পরিস্কার" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "রিসেট" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "ক্লোন" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "এই দৃশ্যটি ক্লোন করুন" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "নতুন খসড়া" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "দৃশ্য ক্লোন করুন" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "নতুন খসড়া দৃশ্য হিসেবে কপি করুন" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "সদৃশ হিসেবে কোন পোস্ট দেয়া হয়নি!" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "অনুলিপি তৈরি ব্যর্থ হয়েছে, মূল দৃশ্য যার আইডি #%d পাওয়া যায়নি" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "আপনি এমন একটি এন্ট্রি দেখতে চাইছেন যেটি দৃশ্যমান নয় অথবা অস্তিত্ব নেই।" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "পরিস্কার" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "রিসেট" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1143,22 +1161,22 @@ msgstr "%s এক্সটেনশন সক্রিয় করা যায়ন msgid "The %s Extension requires GravityView Version %s or newer." msgstr "%s এক্সটেনশন চালানোর জন্য গ্রাভিটি ভিউ ভার্সন %s অথবা নতুনতর প্রয়োজন।" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "এটি যখন সংযুক্ত করা হবে, উন্নততর দেখাবে।" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "প্রিভিউ দেখার সময় স্টাইল লোড হবে না, তাই নিছের বিষয়বস্তু অদ্ভুত দেখাবে। এটা নিয়ে চিন্তা করবেন না।" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "%d এন্ট্রি সংযুক্ত করুন" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "এই এন্ট্রি দৃশ্যে %d যেভাবে কনফিগার করা আছে সেভাবে দেখাবে" @@ -1351,7 +1369,11 @@ msgstr "অন্যান্য প্লাগিন ও থিম সহ দ msgid "GravityView Settings" msgstr "গ্রাভিটি ভিউ এর বিন্যাস" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "গুগল+ এ আমাদের অনুসরণ করুন" @@ -1666,37 +1688,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1949,6 +1971,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1995,76 +2063,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-da.mo b/languages/gravityview-da.mo index bc921c380fa73e6d2e1d4ac457a57eba88de3a55..8e58a6108a3bee4b9d5c4d6d20ab485f5f46cc14 100644 GIT binary patch delta 31 mcmaFF`iONx35TJDf{~$>vGK$j1r9??1p{L%W3!D*?3e(SRS3ZV delta 31 jcmaFF`iONx35S81f`NgRvBkt11u)y(%EVyf5<4aUmH`O6 diff --git a/languages/gravityview-da.po b/languages/gravityview-da.po index 18c04c2c3b..20104ea5e8 100644 --- a/languages/gravityview-da.po +++ b/languages/gravityview-da.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Danish (http://www.transifex.com/projects/p/gravityview/language/da/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-de_DE.mo b/languages/gravityview-de_DE.mo index 15f29f70b3ed162e69ad98ccb44bf31acb48c33b..4282e1d91cf49b17b54ac9701bcea811b684753a 100644 GIT binary patch delta 6665 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 delta 6883 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\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/gravityview/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -20,15 +20,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Oben" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Links" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Rechts" @@ -98,7 +98,7 @@ msgstr "Eintrag bearbeiten" msgid "Edit" msgstr "Bearbeiten" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Datenquelle" @@ -183,7 +183,7 @@ msgstr "Mehrere Einträge" msgid "Single Entry" msgstr "Einzelner Eintrag" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -263,7 +263,7 @@ msgid "" "shortcodes.%s" msgstr "Dieses Formular verwenden, um eine Ansicht in %s einzufügen. %sErfahren Sie mehr über die Verwendung von Shortcodes.%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "View wählen" @@ -271,8 +271,8 @@ msgstr "View wählen" msgid "— Select a View to Insert —" msgstr "— Eine Ansicht zum Einfügen auswählen —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(kein Titel)" @@ -281,13 +281,13 @@ msgid "Insert View" msgstr "Ansicht einfügen" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Abbruch" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "Wird geladen …" @@ -295,92 +295,92 @@ msgstr "Wird geladen …" msgid "Please select a View" msgstr "Bitte einen View auswählen" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "GravityView Felder" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Administratoren erlauben, Einträge zu genehmigen oder zurückzuweisen sowie Benutzern Opt-In oder Opt-Out für deren angezeigte Einträge zu erlauben." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Genehmigen/ Zurückweisen" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Benutzer-Opt-In" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Genehmigt (nur Administrator)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Genehmigt?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Genehmigt" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Eintrag auf Webseite anzeigen" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Opt-In" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Ja, meinen Eintrag auf der Webseite anzeigen" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d Einträge" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 Eintrag" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s genehmigt." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s abgelehnt." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Den Eintrag für GravityView zurückgewiesen" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Den Eintrag für GravityView genehmigt" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Genehmigen" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Ablehnen" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Eintrag für die Listung im View nicht genehmigt. Klicken, um zu genehmigen." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Eintrag für die Listung im View genehmigt. Klicken, um nachträglich abzulehnen." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "EIntrag im View anzeigen?" @@ -419,182 +419,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Verbundene Ansichten" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "GravityView Ansichten verwenden dieses Formular als Datenquelle" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "CSS-Merge-Tags" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Entwickler: Die CSS-Klassen werden über Funktion %ssanitize_title_with_dashes()%s sicherheitsgeprüft." -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Nicht verbunden." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Das verbundene Formular wurde nicht gefunden; es könnte nicht mehr vorhanden sein." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Formular bearbeiten" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Einträge" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Einstellungen" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Einstellungen für dieses Formular bearbeiten" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Formularvorschau" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Alle Felder hinzufügen" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Eintrags-ID" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Eintragsdatum" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "URL der Quelle" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP des Benutzers" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Benutzer" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Link zum Eintrag" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Widget hinzufügen" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Feld hinzufügen" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" oder bestehende %s hierherzziehen." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Trage den Namen des Views hier ein" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Schließen" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Fortfahren" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "OK" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Fehler beim Erstellen der Ansicht. Prüfen Sie die Einstellungen oder kontaktieren Sie den GravityView-Support." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Fehler beim Hinzufügen des Feldes. Bitte versuchen Sie es noch einmal oder kontaktieren Sie den GravityView-Support." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -636,19 +644,19 @@ msgstr "Liste von Änderungen" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView wird herausgegeben von:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Beitragende Entwickler" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Wollen Sie mitwirken?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -752,37 +760,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s Ansicht aus dem Papierkorb wiederhergestellt." msgstr[1] "%s Ansichten aus dem Papierkorb wiederhergestellt." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView erfordert das Plugin Gravity Forms in Version 1.8 oder höher.%s \n\nSie verwenden derzeit Version %s. Bitte aktualisieren Sie Gravity Forms oder kaufen Sie eine (neue) Lizenz. %sKaufen Sie Gravity Forms%s - ab 39 US-Dollar%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView erfordert es, dass das Plugin Gravity Forms aktiviert ist. %sAktivieren Sie Gravity Forms%s, um das Plugin GravityView verwenden zu können." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -880,11 +898,11 @@ msgstr "Transaktions-ID" msgid "Transaction Type" msgstr "Transaktionsart" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Standard" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Erstellungsdatum" @@ -892,26 +910,26 @@ msgstr "Erstellungsdatum" msgid "Email hidden; Javascript is required." msgstr "E-Mail-Adresse verborgen; JavaScript ist erforderlich." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -919,155 +937,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "Ansichts-ID" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Anzahl von Einträgen pro Seite" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Lightbox für Bilder aktivieren" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Nur genehmigte Einträge anzeigen" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Leere Felder ausblenden" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Benutzerbearbeitungen erlauben" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Es angemeldeten Benutzern erlauben, von ihnen erstellte Einträge zu bearbeiten." -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Sortieren nach dem Feld" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Richtung" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "aufsteigend" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "absteigend" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Nach Erstellungsdatum filtern" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Nach diesem Datum eingereichte Einträge anzeigen. Relative Datumsangaben werden unterstützt, zum Beispiel \"-1 week\" (-1 Woche) oder \"-1 month\" (-1 Monat)." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Nach Ablaufdatum filtern" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Vor diesem Datum eingereichte Einträge anzeigen. Relative Datumsangaben werden unterstützt, zum Beispiel \"now\" (jetzt) oder \"-3 days\" (-3 Tage)." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "CSS-Klasse" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "CSS-Klasse, welche dem umgebenden HTML-Container (Wrapper) hinzugefügt wird." -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Suchwert" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Legen Sie einen Standardsuchwert für die Ansicht fest" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Suchfeld" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Falls ein Suchwert gesetzt ist, können Sie ein spezifisches Feld festlegen, in dem gesucht wird. Ansonsten wird in allen Felder gesucht." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Einzeleintragstitel" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Wird ein einzelner Eintrag angezeigt, kann der Seitentitel auf diese Einstellung hier geändert werden. Ansonsten wird sich der Seitentitel bei den Ansichten für mehrere und einzelne Einträge nicht ändern." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Beschriftung Zurück-Link" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "Der Linktext für die Rückkehr zur Mehreintragsansicht." @@ -1088,50 +1106,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Leer" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1142,22 +1160,22 @@ msgstr "Die %s Erweiterung konnte nicht aktiviert werden; GravityView ist derzei msgid "The %s Extension requires GravityView Version %s or newer." msgstr "Die %s Erweiterung benötigt GravityView Version %s oder höher." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1350,7 +1368,11 @@ msgstr "Einschalten, um Darstellungsprobleme im Theme und Funktionseinstellungen msgid "GravityView Settings" msgstr "GravityView Einstellungen" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "FOlge uns auf Google+" @@ -1665,37 +1687,37 @@ msgstr "Eintrag aktualisiert. %sZurück zum Eintrag%s" msgid "Update" msgstr "Aktualisieren" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "Sie haben eine Berechtigung, diesen Beitrag zu bearbeiten." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "Erlaubte Dateien" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Dateien hier herziehen oder" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Dateien auswählen" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Datei herunterladen" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Datei löschen" @@ -1948,6 +1970,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Zu verlinkende URL:" @@ -1994,76 +2062,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-el_GR.mo b/languages/gravityview-el_GR.mo index 5ecf18237391e770e5d7ca88db77667c29549507..e9ec9f50a0c0ffa8087a2ea2b472c6058d9be837 100644 GIT binary patch delta 31 mcmeys`hj&q35TJDf{~$>vGK$j1r9??1p{L%W3!D*e3$^4xd`h3 delta 31 jcmeys`hj&q35S81f`NgRvBkt11u)y(%EVyf5+5c2nPmv& diff --git a/languages/gravityview-el_GR.po b/languages/gravityview-el_GR.po index 60c291b5da..506325de7a 100644 --- a/languages/gravityview-el_GR.po +++ b/languages/gravityview-el_GR.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Greek (Greece) (http://www.transifex.com/projects/p/gravityview/language/el_GR/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-en_US.mo b/languages/gravityview-en_US.mo index 814d7738430e2821fc68973153a682f142722157..3c1adb2ba6daf1df21df5f778c56c641cbcdfe7c 100644 GIT binary patch delta 31 mcmey#`jd4+35TJDf{~$>vGK$j1r9??1p{L%W3!D*LYV-Y=LrS? delta 31 jcmey#`jd4+35S81f`NgRvBkt11u)y(%EVyfl29f9o0ACu diff --git a/languages/gravityview-en_US.po b/languages/gravityview-en_US.po index 0fa00d2c8f..8e54a80901 100644 --- a/languages/gravityview-en_US.po +++ b/languages/gravityview-en_US.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: English (United States) (http://www.transifex.com/projects/p/gravityview/language/en_US/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-es_AR.mo b/languages/gravityview-es_AR.mo index 81f528f57bbea7c14f01c344567f1c45b1d40872..766b2ba83118e36f04962ae7b48d6691fc25cd38 100644 GIT binary patch delta 31 mcmey$`jvG;35TJDf{~$>vGK$j1r9??1p{L%W3!D*0+|4s?+E$; delta 31 jcmey$`jvG;35S81f`NgRvBkt11u)y(%EVyfl0YT^nwtpp diff --git a/languages/gravityview-es_AR.po b/languages/gravityview-es_AR.po index 9cf749edb5..772172ff53 100644 --- a/languages/gravityview-es_AR.po +++ b/languages/gravityview-es_AR.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/gravityview/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-es_MX.mo b/languages/gravityview-es_MX.mo index ebcc9859ec414649c75380df387255ee58a77c38..9585842a39169db768e8b24a14dea523870e8b12 100644 GIT binary patch delta 8985 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 delta 9257 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 RW?YMP!y|*s=BDp#|3AC&fl>ef diff --git a/languages/gravityview-es_MX.po b/languages/gravityview-es_MX.po index 016840cb57..d32357ede9 100644 --- a/languages/gravityview-es_MX.po +++ b/languages/gravityview-es_MX.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/gravityview/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -22,15 +22,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Arriba" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Izquierda" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Derecha" @@ -100,7 +100,7 @@ msgstr "Editar Entrada" msgid "Edit" msgstr "Editar" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Fuente de Data" @@ -185,7 +185,7 @@ msgstr "Entradas Múltiples" msgid "Single Entry" msgstr "Entrada Individual" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -265,7 +265,7 @@ msgid "" "shortcodes.%s" msgstr "Use este formulario para incrustar una Vista en este %s. %sAprenda más del uso de shortcodes.%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Seleccione una Vista" @@ -273,8 +273,8 @@ msgstr "Seleccione una Vista" msgid "— Select a View to Insert —" msgstr "— Seleccione una Vista para Insertar —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(sin título)" @@ -283,13 +283,13 @@ msgid "Insert View" msgstr "Insertar Vista" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Cancelar" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "Cargando…" @@ -297,92 +297,92 @@ msgstr "Cargando…" msgid "Please select a View" msgstr "Por favor seleccione una Vista" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "Campos de GravityView" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Permitir a los administradores aprobar o rechazar las entradas y a los usuarios seleccionar si desean sus entradas sean mostradas." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Aprobar/Rechazar" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Opt-In de Usuario" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "¿Aprobada? (solo Admin)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "¿Aprobada?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Aprobada" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Mostrar Entrada en Website" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Opt-In" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Si, mostrar mi entrada en el website" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d entradas" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 entrada" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s aprobadas." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s no aprobadas." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Desaprobar la Entrada para GravityView" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Aprobar la Entrada para Gravity View" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Aprobar" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Desaprobar" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Entrada no aprobada para vista de directorio. Clic para aprobar esta entrada." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Entrada aprobada para vista de directorio. Clic para desaprobar esta entrada." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "¿Mostrar entrada en vista directorio?" @@ -421,182 +421,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "Campo #%s (Sin Etiqueta)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Vistas Conectadas" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "Vista GravityView usando este formulario como fuente de data" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "Etiqueta de Fusión CSS" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Desarrolladores: Las clases CSS serán usando la función %ssanitize_title_with_dashes()%s" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "No conectada." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "El formulario conectado no puede ser encontrado; puede que ya no exista." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Editar Formulario" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Entradas" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Ajustes" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Editar ajustes de este formulario" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Vista previa de este formulario" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Agregar Todos los Campos" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "Agregue todos los campos disponibles a la vez." -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "ID de Entrada" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "El ID único de la entrada" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Fecha de Entrada" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "Fecha en que se creó la entrada." -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "URL de Fuente" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "URL de la página donde se envió el formulario." -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP de Usuario" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "Dirección IP del usuario que creó la entrada." -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Usuario" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "Detalles del usuario que ha iniciado sesión y que creó la entrada (si existe) ." -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "Contenido Personalizado" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "Inserte texto personalizado o HTML" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Enlace a Entrada" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "Enlace dedicado a la entrada única con texto personalizado." -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Agregar Widget" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Agregar Campo" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" o arrastre %ss existentes aquí." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Ingresar nombre aquí" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Cerrar" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Continuar" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Error mientras se creaba la Vista. Revise los ajustes o contacte al soporte de GravityView" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "Hubo un error cargando el contenido dinámico." -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Error al agregar el campo . Por favor, inténtelo de nuevo o contacte a soporte de GravityView ." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -638,19 +646,19 @@ msgstr "Lista de cambios" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView es traído para Ud. por:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Colaboradores" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "¿Desea colaborar?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -754,37 +762,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s Vistas restauradas de la Papelera" msgstr[1] "%s Vistas restauradas de la Papelera" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "Desechar" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "Conflicto Potencial" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "GravityView y el Directorio de Gravity Forms están activos. Esto puede causar problemas. Si experimenta conflictos, deshabilite el plugin de Directorio de Gravity Forms." -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView requiere Gravity Forms versión 1.8 o más reciente.%s\n\nEstá utilizando la versión %s. Por favor actualize Gravity Forms o adquiera una licencia. %sAdquiera Gravity Forms%s - desde $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView requiere Gravity Forms estar activado. %sActivar Gravity Forms%s para usar el plugin GravityView." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -882,11 +900,11 @@ msgstr "ID Transacción" msgid "Transaction Type" msgstr "Tipo de Transacción" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Defecto" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Fecha Creada" @@ -894,26 +912,26 @@ msgstr "Fecha Creada" msgid "Email hidden; Javascript is required." msgstr "Email oculto; Se requiere Javascript ." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -921,155 +939,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "ID de Vista" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Número de entradas por página" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Habilitar lightbox para imágenes" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Mostrar solo entradas aprobadas" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Ocultar campos vacíos" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Permitir Edición de Usuario" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Permitir a usuarios logueados editar sus entradas creadas" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "Mostrar \"Editar Entrada\" a los usuarios que no sean administradores si ellos crearon la entrada . Editar campos de entrada siempre se mostrarán a los administradores del sitio ." -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "Permitir al usuario borrar" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "Permitir a usuarios registrados borrar entradas creadas por ellos." -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "Mostrar campos de \"Borrar Entrada\" a usuarios no administradores si crearon la entrada. Eliminar campos de entrada siempre se mostrarán a los administradores del sitio." -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Ordenar por campo" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Ordenar dirección" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "ASC" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "DESC" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Filtrar por Fecha de Inicio" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Mostrar entradas enviadas luego de esta fecha. Soporta fechas relativas, como \"-1 semana\" o \"-1 mes\"." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Filtrar por Fecha Final" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Mostrar entradas enviadas antes de esta fecha. Sporta fechas relativas, como \"ahora\" o \"-3 días\"." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "Clase CSS" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "Clase CSS a agregar al contenedor HTML" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Buscar valor" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Define un valor de búsqueda por defecto para la Vista" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Campo de búsqueda" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Si el Campo de Búsqueda esta habilitado, Ud. puede definir un campo específico para buscar. De otro modo, la búsqueda será sobre todos los campos." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Título de Entrada Individual" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Al ver una sola entrada, cambiar el título de la página a este ajuste. De lo contrario, el título no va a cambiar entre Entradas Múltimples y Entradas Individuales.." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Etiqueta Enlace" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "El texto del enlace que devuelve a la vista de múltiples entradas." @@ -1090,50 +1108,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Vacío" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "Ha intentado ver una entrada que no es visible o no existe." + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "Ha intentado ver una entrada que no es visible o no existe." - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1144,22 +1162,22 @@ msgstr "La extensión %s no pudo ser activada; GravityView no está activo." msgid "The %s Extension requires GravityView Version %s or newer." msgstr "La %s extensión requiere GravityView versión %s o más reciente." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1352,7 +1370,11 @@ msgstr "Active esta función para evitar que scripts y estilos extraños se impr msgid "GravityView Settings" msgstr "Ajustes de GravityView" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Síganos en Google+" @@ -1667,37 +1689,37 @@ msgstr "Entrada Actualizada. %sRegresar a Entrada%s" msgid "Update" msgstr "Actualizar" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "No tiene permisos para editar este post." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "Campos Permitidos" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Suelte archivos aquí o" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Archivos seleccionados" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Descargar archivo" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Borrar archivo" @@ -1950,6 +1972,52 @@ msgstr "Mostrar como Enlace:" msgid "Display the uploaded files as links, rather than embedded content." msgstr "Visualizar los archivos cargados como enlaces, en lugar de contenido incrustado ." +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Enlace a URL:" @@ -1996,76 +2064,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Título:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-fi.mo b/languages/gravityview-fi.mo index 42ce06273ab303ea78d6201cec88771460cf545f..d78683afeef3df1e441e73c11948a17867948bb9 100644 GIT binary patch delta 4271 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 diff --git a/languages/gravityview-fi.po b/languages/gravityview-fi.po index d6353a02cd..7dbb942fcd 100644 --- a/languages/gravityview-fi.po +++ b/languages/gravityview-fi.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/gravityview/language/fi/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Alkuun" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Vasen" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Oikea" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Tietolähde" @@ -182,7 +182,7 @@ msgstr "Monta merkintää" msgid "Single Entry" msgstr "Yksittäinen merkintä" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Valitse näkymä" @@ -270,8 +270,8 @@ msgstr "Valitse näkymä" msgid "— Select a View to Insert —" msgstr "— Valitse näkymä lisätäksesi —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(ei otsikkoa)" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "Lisää näkymä" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Peru" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "Ole hyvä valitse näkymä" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Hyväksytty (vain Ylläpitäjälle)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Hyväksytty?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Hyväksytty" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d merkintää" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "yksi merkintä" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s hyväksytty." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s hyväksymätön." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Hylätty merkintä GravityViewille" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Hyväksytty merkintä GravityViewille" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Hyväksy" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Hylkää" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Merkintää ei hyväksytty tiedostolistaukseen. Klikkaa hyväksyäksesi tämä merkintä." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Merkintä hyväksyttiin tiedostolistaukseen. Klikkaa hylkääksesi tämä merkintä." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Näytä merkintä hakemistonäkymänä?" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "ei yhteydessä." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Yhdistettyä lomaketta ei löydy; sitä ei ehkä enää ole olemassa." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Asetukset" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ lisää kaikki kentät" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Merkinnän ID" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Merkintäpäivä" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "Lähteen URL" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "Käyttäjän IP" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Käyttäjä" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Linkki merkintään" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Lisää vimpain" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Lisää kenttä" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Lisää näkymän nimi tähän" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Sulje" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Jatka" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Virhe kun näkymä luotiin sinulle. Tarkista asetukset tai ota yhteyttä GravityView tukeen." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "Gravityformin on tehnyt sinulle:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Avustajat" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Haluatko avustaa?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -751,37 +759,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s näkymä palautettu roskakorista." msgstr[1] "%s näkymää palautettu roskakorista." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView vaatii Gravity Forms - version 1.8 tai uudemman.%s \n\n\nKäytät versiota %s. Päivitä Gravity Forms tai osata lisenssi. %sHanki Gravity Forms%s - alkaen $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView vaatii Gravity Forms aktivoimiseksi. %sAktivoi Gravity Forms%s käyttääksesi GravityView lisäosaa." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -879,11 +897,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Oletus" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Luontipäivä" @@ -891,26 +909,26 @@ msgstr "Luontipäivä" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -918,155 +936,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Aseta Lightbox määritys kuville" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Näytä vain hyväksytyt merkinnät" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Piilota tyhjät kentät" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Järjestä kentän mukaan" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Järjestyssuunta" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "Nouseva" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "Laskeva" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Suodata aloituspäivän mukaan" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Näytä merkinnät jotka luotu tämän päivämäärän jälkeen. Tukee suhteellisia päiviä, kuten \"-1 viikko\" tai \"-1 kuukausi\"." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Suodata lopetuspäivän mukaan" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Näytä merkinnät jotka luotu ennen tätä päivämäärä. Tukee suhteellisia päiviä, kuten \"nyt\" tai \"-3 päivää\"." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Yksittäisen merkinnän otsikko" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Katsoaksesi yhtä merkintää vaihda sivun otsikko tähän asetukseen. Muutoin otsikko ei vaihdu monen näkymän ja yksittäisen näkymän osalta." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Takaisin linkin otsikko" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "Linkin tekstit joka näytetään monen merkinnän näkymässä." @@ -1087,50 +1105,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1141,22 +1159,22 @@ msgstr "Ei voitu aktivoida %s laajennusta; GravityView ei ole aktiivinen." msgid "The %s Extension requires GravityView Version %s or newer." msgstr "Tämä %s laajennus vaatii GravityView version %s tai uudemman." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1349,7 +1367,11 @@ msgstr "Asenna ON asentoon estääksesi lisäskriptien ja tyylien ajamisen Gravi msgid "GravityView Settings" msgstr "GravityView asetukset" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Seuraa meitä Google+:ssa" @@ -1664,37 +1686,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1947,6 +1969,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1993,76 +2061,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-fr_FR.mo b/languages/gravityview-fr_FR.mo index 4ff2109a506c96be2ea5f8da74ebc3e8a2f61410..3f915b03cb632b22ce65fa3b69e911a5ccbf894c 100644 GIT binary patch delta 34 pcmaE#^FC*TuRMpLg@Tcxm9g>UP\n" "Language-Team: French (France) (http://www.transifex.com/projects/p/gravityview/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Haut" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Gauche" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Droit" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Source des données" @@ -182,7 +182,7 @@ msgstr "Entrées multiples" msgid "Single Entry" msgstr "Entrée unique" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Sélectionner une Vue" @@ -270,8 +270,8 @@ msgstr "Sélectionner une Vue" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Annuler" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "Veuillez sélectionner une Vue" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Approuvé ? (Admin-seulement)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Approuvé ?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Approuvé" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d entrées" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 entrée" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s approuvé." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s désapprouvé." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Désapprouver l'entrée pour GravityView" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Approuver l'entrée pour GravityView" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Approuver" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Désapprouver" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Entrée non approuvée pour l'affichage sur l'annuaire. Cliquer pour approuver cette entrée." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Entrée approuvée pour l'affichage sur l'annuaire. Cliquer pour désapprouver cette entrée." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Afficher l'entrée dans la vue de l'annuaire ?" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Non connecté." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Le formulaire connecté ne peut pas être trouvé; il pourrait ne plus exister." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Paramètres" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Ajouter tous les champs" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "ID de l'entrée" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Date de l'entrée" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "URL source" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP de l'utilisateur" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Utilisateur" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Lien vers l'entrée" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Ajouter un Widget" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Ajouter un Champ" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Entrer le nom de la Vue ici" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Fermer" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Continuer" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "OK" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Erreur lors de la création de la Vue. Vérifiez les paramètres ou bien contactez le support GravityView." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView vous est proposé par:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Contributeurs" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Voulez-vous contribuer ?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -751,37 +759,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView requiert l'activation Gravity Forms pour fonctionner correctement. %sActivez Gravity Forms%s pour utiliser l'extension GravityView." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -879,11 +897,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Défaut" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Date de création" @@ -891,26 +909,26 @@ msgstr "Date de création" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -918,155 +936,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Afficher seulement les entrées approuvées" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Trier par champ" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Direction du tri" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "Asc" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "Desc" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Filtrer par Date de début" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Filtrer par Date de fin" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1087,50 +1105,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1141,22 +1159,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1349,7 +1367,11 @@ msgstr "Choisissez l'option ON pour empêcher des scripts et feuilles de style e msgid "GravityView Settings" msgstr "Paramètres GravityView" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Suivez nous sur Google+" @@ -1664,37 +1686,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1947,6 +1969,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1993,76 +2061,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-hu_HU.mo b/languages/gravityview-hu_HU.mo index 09df88209508cfa1cbfc73b99eed93cdc953bb42..1cc26070b43ba4e9e40f947743024c9ef8155d28 100644 GIT binary patch delta 9037 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 delta 9373 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\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/gravityview/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -20,15 +20,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Fent" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Bal" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Jobb" @@ -98,7 +98,7 @@ msgstr "Bejegyzés szerkesztése" msgid "Edit" msgstr "Szerkesztés" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Adatforrás" @@ -183,7 +183,7 @@ msgstr "Több bejegyzés" msgid "Single Entry" msgstr "Egyetlen bejegyzés" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -263,7 +263,7 @@ msgid "" "shortcodes.%s" msgstr "Használd ezt az űrlapot, hogy beágyazz egy View-t a %s. %sTudj meg többet a rövid kódok használatáról.%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Nézet kiválasztása" @@ -271,8 +271,8 @@ msgstr "Nézet kiválasztása" msgid "— Select a View to Insert —" msgstr "— View kiválasztása beillesztéshez —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(nincs cím)" @@ -281,13 +281,13 @@ msgid "Insert View" msgstr "View beillesztése" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Mégse" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "Betöltés…" @@ -295,92 +295,92 @@ msgstr "Betöltés…" msgid "Please select a View" msgstr "Kérlek, válassz nézetet" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "GravityView Fields" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Engedélyezi az adminisztrátoroknak, hogy felhasználók és bejegyzések fel- és leiratkozásainak mutatását fogadják vagy utasítsák el." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Jóváhagy/Elutasít" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Felhasználó feliratkozás" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Jóváhagyva? (csak admin)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Jóváhagyva?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Jóváhagyva" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Bejegyzés mutatása az oldalon" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Hírlevél feliratkozás" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Mutassa a bejegyzésem az oldalon" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d bejegyzés" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 bejegyzés" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s jóváhagyva." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s elutasítva." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "A bejegyzés elutasításra került a GravityView számára." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "A bejegyzés elfogadásra került a GravityView -nak." -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Jóváhagy" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Elutasít" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "A bejegyzés nem lett jóváhagyva könyvtárszerű megtekintésre. Klikkelj a bejegyzés jóváhagyásához." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "A bejegyzés jóvá lett hagyva könyvtárszerű megtekintésre. Klikkelj a bejegyzés jóváhagyásának visszavonásához." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Bejegyzés mutatása könyvtárszerűen?" @@ -419,182 +419,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "Mező #%s (Nincs címke)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Összekapcsolt Views -ok." -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "A Gravity View View-ja használja ezt az űrlapot, mint adatforrás." -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "CSS egyesítő címkék" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Fejlesztők: A CSS osztályok ellenőrizve lesznek a %ssanitize_title_with_dashes()%s funkcióval." -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Nem kapcsolódik" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Az űrlap nem található, lehet, hogy már nem létezik" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Űrlap szerkesztése" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Bejegyzések" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Beállítások" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Az űrlap beállításainak szerkesztése" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "Az űrlap előnézete" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Az űrlap előnézete" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "Minden mező hozzáadása" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "Minden elérhető mező hozzáadása" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Bejegyzés AZ" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "A bejegyzés azonosítója" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Bejegyzés dátuma" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "A dátum, melyen a bejegyzést készítették" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "Forrás URL" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "Az oldal linkje, melyen az űrlapot benyújtották" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "Felhasználó IP" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "A bejegyzést közzétevő felhasználó IP-címe" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Felhasználó" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "A belépett, bejegyzést közzétevő felhasználó adatai (ha van ilyen)" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "Egyedi tartalmak" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "Egyedi szöveg vagy HTML kód bevitele" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Link a bejegyzéshez" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "Egy dedikált link a single entry számára testreszabható szöveggel." -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Widget hozzáadása" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Mező hozzáadása" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+%s\" vagy húzd a meglévő %ss ide." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "Ez a Nézet a %s nézettípust használná, ami ki van kapcsolva." -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Írd be ide a Nézet nevét:" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Bezár" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Folytatás" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "OK" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Hiba történt miközben a View elkészítése során. Ellenőrizd a beállításokat vagy vedd fel a kapcsolatot a GravityView csapattal." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "Hiba a dinamikus tartalmak betöltése közben" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Hiba történt a mező kitöltése során. Kérjük próbálja meg újra, vagy vegye fel a kapcsolatot a GravityView csapatával." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -636,19 +644,19 @@ msgstr "A változások listája" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "A GravityView -t elhozták neked:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Közreműködők:" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Szeretnél bekapcsolódni?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -752,37 +760,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s View helyre lett állítva." msgstr[1] "%s Views helyre lett állítva." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "Elutasít" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "Lehetséges összeférhetetlenség." -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "A GravityView és a Gravity Forms könyvtár is aktív. Ez gondokat okozhat. Ha problémát tapasztalsz, kacsold ki a Gravity Forms Könyvtár bővítmény." -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView -nak szüksége van a Gravity Form 1.8 vagy újabb verziójára.%s\n\nAz általad használt verzió %s. Kérlek frissítsd a Gravity Form -ot, vagy vedd meg a licencet. %sGravity Forms beszerzése%s - kezdő ár $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView -nak szüksége van aktív Gravity Forms -ra. %sGravity Forms aktiválása%s a GravityView bővítmény használatához." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -880,11 +898,11 @@ msgstr "Tranzakciós aznonosító" msgid "Transaction Type" msgstr "Tranzakció típusa" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Alapértelmezett" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Létrehozás dátuma" @@ -892,26 +910,26 @@ msgstr "Létrehozás dátuma" msgid "Email hidden; Javascript is required." msgstr "Rejtett e-mail; Javascript szükséges." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -919,155 +937,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "View azonosító" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Bejegyzések száma oldalanként" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Lightbox bekapcsolása képek számára" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Csak jóváhagyott bejegyzések mutatása" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Üres mezők elrejtése" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Szerkesztés engedélyezése a felhasználónak" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Engedélyezi a belépett felhasználóknak, hogy az általuk készített bejegyzéseket szerkessze." -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "Mutassa a \"Bejegyzés szerkesztése\" mezőt a nem admin felhasználóknak is, ha létrehoztak egy bejegyzést. Ez a mező mindig látható lesz az oldal adminisztrátorainak." -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "Felhasználó törlésének engedélyezése" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "Engedi a belépett felhasználóknak, hogy töröljék a bejegyzéseket, amiket készítettek." -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "Mutassa a \"bejegyzés törlése\" mezőt a nem admin felhasználóknak az általuk létrehozott bejegyzésekhez. A bejegyzés törlése mező az oldal adminisztrátorainak mindig látható." -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Rendezés alapja" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Rendezés iránya" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "Növ." -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "Csökk." -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Szűrés: kezdés dátuma" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Mutassa a megadott dátum után közzétett bejegyzéseket. Támogatja a relatív dátumokat, mint \"-1 hét\" vagy \"-1 hónap\"." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Szűrés: befejezés dátuma" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Mutassa az ezen dátum előtt közzétett bejegyzéseket. Valós dátumok támogatása, mint \"most\" vagy \"-3 napja\"" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "CSS Class" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "CSS osztály hozzáadása a HTML konténerhez." -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Keresési érték" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Határozd meg az alapértelmezett keresési értéket a View számára." -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Keresési mező" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Ha a keresési értéke beállításra került, meghatározhatsz specifikus mezőt, melyben a keresés történik. Máskülönben minden mezőn keresve lesz." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Egyszerű beléptetés címe" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Egy bejegyzés megtekintésekor változtasd erre az oldal címét, különben a cím nem fog megváltozni több vagy egy bejegyzés megtekintése esetén." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "\"Vissza\" link cimkéje" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "A több bejegyzés megtekintéséhez visszavezető link szövege." @@ -1088,50 +1106,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Üres" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "Olyan bejegyzést kíséreltél meg megtekinteni, mely nem látható vagy nem létezik." + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "Olyan bejegyzést kíséreltél meg megtekinteni, mely nem látható vagy nem létezik." - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1142,22 +1160,22 @@ msgstr "Nem lehet a bővítményt aktiválni a %s Bővítmény; GravityView nem msgid "The %s Extension requires GravityView Version %s or newer." msgstr "A %s bővítménynek szüksége van a GravitView verzió %s vagy újabbra." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1350,7 +1368,11 @@ msgstr "Kapcsold be, ha a GravityView ütközik más bővítményekkel vagy sabl msgid "GravityView Settings" msgstr "A GravityView beállításai" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Kövess minket Google+-on" @@ -1665,37 +1687,37 @@ msgstr "Bejegyzés frissítve. %sVisszatérés a bejegyzéshez%s" msgid "Update" msgstr "Frissít" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "Nincs engedélyed a hozzászólás szerkesztéséhez." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "Engedélyezett fájlok" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Dobj ide fájlokat vagy" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Válaszd ki a fájlokat" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Fájl letöltése" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Fájl törlése" @@ -1948,6 +1970,52 @@ msgstr "Link-ként mutassa:" msgid "Display the uploaded files as links, rather than embedded content." msgstr "A feltöltött fájlokat linkekként mutassa, beágyazott tartalmak helyett." +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Link URL címhez:" @@ -1994,76 +2062,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Cím:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-id_ID.mo b/languages/gravityview-id_ID.mo index ecc295d0927e5af5016cb7fd6738868b6b92731e..d4f235e2e73805d373b82ca697a3fb40715fc7aa 100644 GIT binary patch delta 34 qcmaFI|Bipd31$vM3k4%XD`Vry7nl_|3@sH5jIE5#HveG$#tZ<%2@1~u delta 34 ncmaFI|Bipd31$uhGX(\n" "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/gravityview/language/id_ID/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Atas" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Kiri" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Kanan" @@ -97,7 +97,7 @@ msgstr "Sunting entri ini" msgid "Edit" msgstr "Sunting" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Sumber Data" @@ -182,7 +182,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -270,8 +270,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -746,37 +754,47 @@ msgid "%s View restored from the Trash." msgid_plural "%s Views restored from the Trash." msgstr[0] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -874,11 +892,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -886,26 +904,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -913,155 +931,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1082,50 +1100,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1136,22 +1154,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1344,7 +1362,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1659,37 +1681,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1942,6 +1964,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1988,76 +2056,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-it_IT.mo b/languages/gravityview-it_IT.mo index ae610ea8f9b0f81b0969a8d2c5f514df6b95325f..8e4bf7ec57381430e56187e43f3b9faf737ac7bc 100644 GIT binary patch delta 34 pcmdn!ztMj~kQj%dg@Tcxm9g>UC@}>NLrVn%V=H5`%}rwZf&i{S2=f2{ delta 34 mcmdn!ztMj~kQj%7nSz0Vm9fR-C@}>v$K1-qU~`k0z90at\n" "Language-Team: Italian (http://www.transifex.com/projects/p/gravityview/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Alto" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Sinistra" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Destra" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Informazioni sulle fonti" @@ -182,7 +182,7 @@ msgstr "Contenuti multipli" msgid "Single Entry" msgstr "Contenuti singoli" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Selezione una visualizzazione" @@ -270,8 +270,8 @@ msgstr "Selezione una visualizzazione" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Cancella" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "Per favore seleziona una visualizzazione" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Autorizzato? (solo per il gestore)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Autorizzato?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Autorizzato" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d contenuti" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 accesso" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s approvato." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s non approvato." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Approva" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Disapprova" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Contenuto non approvato per la visione dell'elenco. Premi per approvare questo contenuto." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Contenuto approvato per la visione dell'elenco. Premi per disapprovare questo contenuto." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Mostra contenuti nell'elenco visualizzazzioni" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Contenuti" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Impostazioni" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Inserisci ID" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Inserisci la data" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "Fonte URL" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP dell' Utente" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Utente" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Collegamento del contenuto" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Aggiungi dispositivo" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Aggiungi campo" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Inserisci qui il nome della visualizzazione" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Chiudi" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Continua" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -751,37 +759,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -879,11 +897,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Giustificato" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Data di creazione" @@ -891,26 +909,26 @@ msgstr "Data di creazione" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -918,155 +936,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Mostra solo i contenuti approvati" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Seleziona per campo" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Selezione la direzione" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "ASC" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "DESC" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Seleziona per data di inizio" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Seleziona per data finale" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1087,50 +1105,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1141,22 +1159,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1349,7 +1367,11 @@ msgstr "Imposta questo su ON per prevenire la stampa di caratteri e formati estr msgid "GravityView Settings" msgstr "Impostazioni di GravityView" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Seguici su Google+" @@ -1664,37 +1686,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1947,6 +1969,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1993,76 +2061,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-lt_LT.mo b/languages/gravityview-lt_LT.mo index b8ef95370e70e9b0dd40b3a5169666f19b8711ce..a0e053a2002d6ca1cfae75a58b7d4c71881ccca8 100644 GIT binary patch delta 83 zcmX@gww-N)3e#VviE4fvh87A&hE~SL6KkZ+Omz*6bqy^Q42-Re&9n`GfXgSbxI{Ok lC^4@%C$S{I$Vwq9F*zf#s8Yc@v7}1DrYbQxd*kgaCIHsB8F~N! delta 97 zcmdnac9d;`3KKW;L^VGS12Y8!11n>Ti8azLCb|Zux`rkSh89)^#@Yrzz~z%zT%sFN zl$ckXlUR~pWToJpSW=}Bo|>c(oLW?tnVedzqu`mBtfyd8Tv||&UsSU3Y!(v$`{W%w diff --git a/languages/gravityview-lt_LT.po b/languages/gravityview-lt_LT.po index 7fbc32a763..d116a593c1 100644 --- a/languages/gravityview-lt_LT.po +++ b/languages/gravityview-lt_LT.po @@ -3,9 +3,9 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2014-05-14 18:03+0000\n" -"Last-Translator: Katz Web Services, Inc. \n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" +"Last-Translator: Zachary Katz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/gravityview/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -755,37 +763,47 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -883,11 +901,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -895,26 +913,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -922,155 +940,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1091,50 +1109,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1145,22 +1163,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1353,7 +1371,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1668,37 +1690,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1951,6 +1973,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1997,76 +2065,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-nb_NO.mo b/languages/gravityview-nb_NO.mo index 9cca121187da6268859fc0666011b7640f18b93a..3a6fb5b10e30dbca4b2f700239015d033034d256 100644 GIT binary patch delta 34 pcmdnMzkz>)Aq$70g@Tcxm9g<;OBMwVLrVn%V=H5`&511j%m9>d2kHO- delta 34 mcmdnMzkz>)Aq$6rnSz0Vm9fQSOBMw%$K1-qU~?jiKQjQ76$j)1 diff --git a/languages/gravityview-nb_NO.po b/languages/gravityview-nb_NO.po index a107689569..49f2cf42a7 100644 --- a/languages/gravityview-nb_NO.po +++ b/languages/gravityview-nb_NO.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/gravityview/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Topp" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Venstre" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Høyre" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "Editer" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -270,8 +270,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Lukk" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -751,37 +759,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -879,11 +897,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -891,26 +909,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -918,155 +936,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1087,50 +1105,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1141,22 +1159,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1349,7 +1367,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1664,37 +1686,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1947,6 +1969,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1993,76 +2061,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Tittel:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-nl.mo b/languages/gravityview-nl.mo index 4d19b94209978ff27c576eaa840e89c75c598c5b..b6495ef95892b2524406c9c3f4c51507c31a4053 100644 GIT binary patch delta 31 mcmaFJ`jB-(35TJDf{~$>vGK$j1r9??1p{L%W3!D*Y?%O-7YM!p delta 31 jcmaFJ`jB-(35S81f`NgRvBkt11u)y(%EVyf5?dw!mBR?Q diff --git a/languages/gravityview-nl.po b/languages/gravityview-nl.po index 0f9db244dd..052c32501d 100644 --- a/languages/gravityview-nl.po +++ b/languages/gravityview-nl.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/gravityview/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-pt.mo b/languages/gravityview-pt.mo index 87c9c796270d6b751551422e0051b04d07b8313e..bba4e3229048bd3e9f59d7caa347232e92d4cc92 100644 GIT binary patch delta 31 mcmaFH`iyl#35TJDf{~$>vGK$j1r9??1p{L%W3!D*oR|QYO$f~Z delta 31 jcmaFH`iyl#35S81f`NgRvBkt11u)y(%EVyf5+^1AmiY+B diff --git a/languages/gravityview-pt.po b/languages/gravityview-pt.po index 62056ee57d..8f29c7acba 100644 --- a/languages/gravityview-pt.po +++ b/languages/gravityview-pt.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Portuguese (http://www.transifex.com/projects/p/gravityview/language/pt/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-pt_BR.mo b/languages/gravityview-pt_BR.mo index f48ed3e7fbdf7edda2763b5006179772bfd33416..3ffc0c5a0e20ee234d948186e9f601d7c212f9e2 100644 GIT binary patch delta 31 mcmeyu`h|5u35TJDf{~$>vGK$j1r9??1p{L%W3!D*0+;}ru?Y77 delta 31 jcmeyu`h|5u35S81f`NgRvBkt11u)y(%EVyfk^m+Enq3I- diff --git a/languages/gravityview-pt_BR.po b/languages/gravityview-pt_BR.po index df457c5eb4..23d10b4729 100644 --- a/languages/gravityview-pt_BR.po +++ b/languages/gravityview-pt_BR.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/gravityview/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-pt_PT.mo b/languages/gravityview-pt_PT.mo index 8ed61514828a1b93e56df521d28f9d3558994e44..3753732f0b36e1240a364eff2f14df70f390c1fd 100644 GIT binary patch delta 10183 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 delta 10498 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\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" +"Last-Translator: Zachary Katz \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/gravityview/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,15 +20,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Topo" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Esquerda" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Direita" @@ -98,7 +98,7 @@ msgstr "Editar esta entrada" msgid "Edit" msgstr "Editar" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Fonte dos dados" @@ -183,7 +183,7 @@ msgstr "Directório" msgid "Single Entry" msgstr "Entrada Individual" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -263,7 +263,7 @@ msgid "" "shortcodes.%s" msgstr "Utilize este formulário para inserir a Vista neste %s. %sSaiba mais sobre como utilizar shortcodes.%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Escolher Vista" @@ -271,8 +271,8 @@ msgstr "Escolher Vista" msgid "— Select a View to Insert —" msgstr "— Escolha uma Vista para inserir —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(sem título)" @@ -281,13 +281,13 @@ msgid "Insert View" msgstr "Inserir Vista" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Anular" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "A carregar…" @@ -295,92 +295,92 @@ msgstr "A carregar…" msgid "Please select a View" msgstr "Por favor escolha uma Vista" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "Campos GravityView" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Permitir que os administradores aprovem ou rejeitem entradas; e que os utilizadores optem que as suas entradas apareçam." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Aprovar/Rejeitar" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Opção Utilizador" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Aprovado? (Admin-only)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Aprovado?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Aprovado" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Mostrar Entrada no Site" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Incluir" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Sim, quero mostrar a minha entrada no site" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d entradas" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 entrada" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s aprovado." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s não aprovado." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Entrada Desaprovada para o GravityView" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Entrada Aprovada para o GravityView" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Aprovar" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Desaprovar" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Entrada não aprovada para aparecer no directório. Clique para aprovar esta entrada." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Entrada aprovada para aparecer no directório. Clique para desaprovar esta entrada." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Mostrar esta entrada no directório?" @@ -419,182 +419,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "Campo #%s (sem título)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Vistas Associadas" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "Vistas GravityView que utilizam este formulário como fonte de dados" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "CSS Merge Tags" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Programadores: As classes CSS serão filtradas utilizando a função %ssanitize_title_with_dashes()%s." -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Sem Ligação." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "O formulário associado não foi encontrado; pode já não existir." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Editar Formulário" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Entradas" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Configurações" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Editar as configurações deste formulário" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "Previsão do formulário" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Previsão do formulário" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Adicionar Todos" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "Adicionar todos os campos disponíveis." -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "ID da Entrada" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "O identificador único de uma entrada." -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Data da Entrada" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "A data em que a entrada foi criada." -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "URL origem" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "O URL da página onde o formulário foi submetido." -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP do utilizador" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "O endereço IP do utilizador que criou a entrada." -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Utilizador" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "Detalhes do utilizador registado que criou a entrada (se existirem)." -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "Conteúdo Personalizado" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "Inserir texto personalizado ou HTML" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Link para entrada" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "Link dedicado para a entrada individual com texto personalizado." -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Adicionar Widget" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Adicionar Campo" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"%s\" ou arrastar %ss para aqui." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "Esta Vista foi configurada para utilizar o template %s que se encontra desactivado." -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "A configuração anterior encontra-se guardada na base de dados. Active novamente o plugin e a configuração aparece novamente." -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Nome da Vista" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Fechar" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Continuar" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Foi encontrado um erro enquanto criávamos esta Vista para si. Verifique as configurações ou contacte o suporte GravityView." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "Existiu um erro ao carregar o conteúdo dinâmico." -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Existiu um erro ao adicionar o campo. Por favor tente novamente ou contacte o suporte do GravityView." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -636,19 +644,19 @@ msgstr "Lista de Alterações" msgid "What’s New" msgstr "Novidades" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView desenvolvido para si por:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Contributors" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Deseja contribuir?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -752,37 +760,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s vista reposta a partir do Lixo" msgstr[1] "%s vista reposta a partir do Lixo" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "Dispensar" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "Conflicto" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "Os plugins GravityView e o Gravity Forms Directory estão os dois activos e podem existir interferências no funcionamento. Se verificar algum problema, sugerimos que desactive o plugin Gravity Forms Directory." -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sO GravityView necessita da versão 1.8 ou mais recente do Gravity Forms.%s\n\nNeste momento está a utilizar a versão %s. Por favor actualize o plugin Gravity Forms ou compre uma nova licença. %sObtenha o Gravity Forms%s - a partir de $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sO GravityView necessita do plugin Gravity Forms activo. %sActive-o%s para utilizar o plugin GravityView." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -880,11 +898,11 @@ msgstr "ID da Transação" msgid "Transaction Type" msgstr "Tipo de Transação" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Default" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Data de Criação" @@ -892,26 +910,26 @@ msgstr "Data de Criação" msgid "Email hidden; Javascript is required." msgstr "Email escondido; É necessário Javascript." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "O ID é obrigatório." -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "Não foi introduzido um número. O valor introduzido tem de ser numérico e deve coincidir com o ID do artigo ou da página onde a Vista foi embebida." -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "Saiba mais…" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "Não existe nenhum artigo ou página com o ID introduzido." -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -919,155 +937,155 @@ msgid "" "following shortcode: %s" msgstr "O ID introduzido não é válido. Poderá ter introduzido um artigo ou página que não contem a Vista escolhida. Verifique novamente que introduziu o seguinte shortcode: %s" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "O ID introduzido já é uma Vista." -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "ID da Vista" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Número de entradas por página" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Activar lightbox para Imagens" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Mostrar apenas entradas aprovadas" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "Esconder a Vista até efectuar pesquisa" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "Mostra as entradas da Vista apenas depois de efectuar uma pesquisa." -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Esconder campos vazios" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Permitir Edição de Utilizador" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Permitir que utilizadores registados editem as suas entradas." -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "Mostrar o campo \"Editar Entrada\" para os utilizadores não administradores se foram autores da entrada. Os campos \"Editar Entrada\" serão sempre visíveis para administradores." -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "Permitir Apagar Entradas" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "Permitir que utilizadores registados apaguem as suas entradas." -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "Mostrar o link \"Apagar Entrada\" nas entradas cujo o autor não seja administrador do site. O link \"Apagar Entrada\" será sempre mostrado para administradores do site." -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Ordenar por campo" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Ordenação" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "ASC" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "DESC" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "Activar a possibilidade de ordenar por coluna." -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "Ordenar por Coluna" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Filtrar por Data de Início" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Mostrar entradas submetidas depois desta data. Pode definir datas relativas como \"-1 week\" ou \"-1 month\"" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Filtrar por Data de Fim" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Mostrar entradas submetidas antes desta data. Pode definir datas relativas como \"now\" ou \"-3 days\"" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "Classe CSS" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "Classe CSS a adicionar ao elemento HTML envolvente." -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Conteúdo a Pesquisar" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Definir o conteúdo a pesquisar por omissão para esta Vista" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Campo de Pesquisa" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Se o Conteúdo a Pesquisar estiver definido pode definir um campo específico como alvo da pesquisa, caso contrário a pesquisa incidirá sobre todos os campos." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Título para entrada individual" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Utilize esta configuração para personalizar o título da vista de entrada individual. Ou deixe em branco e o título será igual ao do directório." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Título do link para voltar para trás" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "O texto do link para voltar para trás na vista de entrada individual." @@ -1088,50 +1106,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Vazio" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "Tentou ver uma entrada que não existe ou não está visível." + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "Apagar" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "Reset" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "Clonar" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "Clonar esta Vista" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "Novo Rascunho" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "Clonar Vista" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "Copiar a Vista como Rascunho" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "Não foi indicado nenhum artigo para ser duplicado!" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "Ocorreu um erro: não foi possível encontrar a Vista original com o ID #%d." -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "Tentou ver uma entrada que não existe ou não está visível." - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "Apagar" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "Reset" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1142,22 +1160,22 @@ msgstr "Não foi possível activar a extensão %s. O plugin GravityView não est msgid "The %s Extension requires GravityView Version %s or newer." msgstr "A extensão %s necessita do GravityView com a versão %s ou superior." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "Vai gostar mais de ver quando o conteúdo estiver embebido." -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "Não se preocupe se o conteúdo em baixo não estiver formatado. Os estilos não foram carregados na previsão." -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "A Entrada %d foi embebida" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "Esta entrada será formatada de acordo com as definições da Vista %d" @@ -1350,7 +1368,11 @@ msgstr "Active este modo para prevenir que scripts e estilos de outros plugins n msgid "GravityView Settings" msgstr "Configuração GravityView" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Siga-nos no Google+" @@ -1665,37 +1687,37 @@ msgstr "Entrada Actualizada. %sVoltar à Entrada%s" msgid "Update" msgstr "Actualizar" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "Não tem permissões para editar este artigo." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." +msgstr "Este campo não é editável. O artigo já não existe." + +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 #, php-format msgid "You can %sedit this value%s from the post page." msgstr "Pode %seditar este artigo%s a partir da página do artigo." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." -msgstr "Este campo não é editável. O artigo já não existe." - -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "Ficheiros Autorizados" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Arrastar os ficheiros para aqui ou" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Escolher Ficheiros" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Descarregar ficheiro" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Remover ficheiro" @@ -1948,6 +1970,52 @@ msgstr "Apresentar como um Link:" msgid "Display the uploaded files as links, rather than embedded content." msgstr "Apresentar os ficheiros carregados como links em vez de conteúdo embebido." +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "Texto no link da entrada (obrigatório)" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "Entrada #{entry_id}" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "Texto ou HTML visível depois do link (opcional)" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Link para o URL:" @@ -1994,76 +2062,64 @@ msgstr "GravityView Entradas Recentes" msgid "Display the most recent entries for a View" msgstr "Mostrar as entradas mais recentes de uma Vista" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "Entradas Recentes" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "Entrada #{entry_id}" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Título:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "Por favor escolha uma Vista para ser pesquisada" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "— Escolha uma Vista como origem das entradas —" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "Se embebida, ID página:" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "Para que os resultados da pesquisa sejam visíveis na página onde a Vista foi embebida, introduza o ID do artigo ou da página onde a Vista foi embebida." -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "Número de entradas visíveis:" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "Texto no link da entrada (obrigatório)" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "Texto ou HTML visível depois do link (opcional)" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "Formulário de pesquisa para uma vista GravityView específica." -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "GravityView - Pesquisa" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "Este widget não pode ser configurado a partir deste ecrã. Por favor configure-o na %spágina dos Widgets%s." -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "Vista:" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "— Escolha uma Vista —" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "Campos pesquisáveis:" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "Campos de Pesquisa" diff --git a/languages/gravityview-ro_RO.mo b/languages/gravityview-ro_RO.mo index 5ab00b747b9760152d639d0224bf818161e00846..ec6768d940941a8083ec5384d0cb4c5d694679a3 100644 GIT binary patch delta 4609 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\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/gravityview/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Sus" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Stânga" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Dreapta" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "Editare" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Sursă de Date" @@ -182,7 +182,7 @@ msgstr "Înregistrări Multiple" msgid "Single Entry" msgstr "O singură Înregistrare" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Selectează o Vizualizare" @@ -270,8 +270,8 @@ msgstr "Selectează o Vizualizare" msgid "— Select a View to Insert —" msgstr "— Selectați o Vizualizare pentru a Introduce —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(fără titlu)" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "Inserează Vizualizare" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Anulare" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "Încărcare date…" @@ -294,92 +294,92 @@ msgstr "Încărcare date…" msgid "Please select a View" msgstr "Te rugăm să selectezi o Vizualizare" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Aprobată? (Numai-Administrator)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Aprobată?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Aprobată" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d înregistrări" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 înregistrare" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s aprobate." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s respinse." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Înregistrare pentru GravityView Respinsă" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Înregistrare pentru GravityView Aprobată" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Aprobă" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Respinge" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Înregistrare neaprobată pentru vizualizarea directorului. Apasă pentru a aproba această înregistrare." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Înregistrare aprobată pentru vizualizarea directorului. Apasă pentru a respinge această înregistrare." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Afișează înregistrarea în vizualizare director?" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Neconectat." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Formularul conectat nu poate fi găsit; este posibil să nu mai existe." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Editare Formular" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Configurări" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "Previzualizare Formular" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Adaugă Toate Câmpurile" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "ID Înregistrare" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Dată Înregistrare" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "URL Sursă" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "IP Utilizator" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Utilizator" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Legătură către Înregistrare" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Adăugă Widget" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Adaugă Câmp" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" sau trage aici %ss existent." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Introdu aici numele Vizualizarii" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Închide" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Continuă" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Eroare la crearea Vizualizării pentru tine. Verifică configurările sau contactează asistența GravityView." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "Gravity Forms vă este adus de către:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Contribuitori:" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Dorești să contribui?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -756,37 +764,47 @@ msgstr[0] "%s Vizualizare restaurată de la Gunoi." msgstr[1] "%s Vizualizări restaurate de la Gunoi." msgstr[2] "%s de Vizualizări restaurate de la Gunoi." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView necesită Gravity Forms Versiunea 1.8 ori mai recentă.%s \n\nFolosiți Versiunea %s. Te rugăm să actualizezi Gravity Forms ori să achiziționezi o licență. %sGet Gravity Forms%s - începând cu $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView necesită ca Gravity Forms să fie activ. %sActivate Gravity Forms%s pentru a utiliza modulul GravityView." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -884,11 +902,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Implicit" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Data creării" @@ -896,26 +914,26 @@ msgstr "Data creării" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -923,155 +941,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "ID Vizualizare" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Numărul de înregistrări de afișat pe pagină" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Activează lightbox pentru imagini" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Afișează doar înregistrările aprobate" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Ascunde câmpurile goale" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Sortează după câmp" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Direcția de Sortare" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "ASC" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "DESC" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Filtrare după Data Începerii" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Afișează înregistrările transmise după această dată. Sunt suportate datele relative, precum \"-1 săptămână\" ori \"-1 lună\"." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Filtrare după Data Finalizării" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Afișează înregistrările transmise până în această dată. Sunt suportate datele relative, precum \"acum\" ori \"-3 zile\"." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "Clasă CSS:" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Titlu pentru O Înregistrare" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Când vizualizezi o singură înregistrare, schimbă titlul paginii cu această configurare. Altfel, titlul nu se va schimba în funcție de vizualizările de Înregistrări Multiple sau Unice" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Etichetă Legătură Inversă" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "Textul legăturii ce returnează către vizualizarea înregistrărilor multiple." @@ -1092,50 +1110,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1146,22 +1164,22 @@ msgstr "Nu se poate activa Extensia %s; GravityView nu este activat." msgid "The %s Extension requires GravityView Version %s or newer." msgstr "Extensia %s necesită Versiunea GravityView %s sau mai recentă." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1354,7 +1372,11 @@ msgstr "Stabilește aceasta ca PORNIT pentru a preveni ca scripturile și stilur msgid "GravityView Settings" msgstr "Configurări GravityView" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Urmăriți-ne pe Google+" @@ -1669,37 +1691,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1952,6 +1974,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1998,76 +2066,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-ru.mo b/languages/gravityview-ru.mo index 294ec9af88c1995c0f53a81dae5f31265a104104..bd4272989744fec83d3f39587d564eede5038f7c 100644 GIT binary patch delta 31 mcmZ3>ww7%|35TJDf{~$>vGK$j1r9??1p{L%W3!D*I+*~9xd@~H delta 31 jcmZ3>ww7%|35S81f`NgRvBkt11u)y(%EVyfl1?T7ie(6% diff --git a/languages/gravityview-ru.po b/languages/gravityview-ru.po index eb48d19061..c9b8ceba4f 100644 --- a/languages/gravityview-ru.po +++ b/languages/gravityview-ru.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Russian (http://www.transifex.com/projects/p/gravityview/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -755,37 +763,47 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -883,11 +901,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -895,26 +913,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -922,155 +940,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1091,50 +1109,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1145,22 +1163,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1353,7 +1371,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1668,37 +1690,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1951,6 +1973,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1997,76 +2065,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-sv_SE.mo b/languages/gravityview-sv_SE.mo index 65c466bdb8ceec0858ef142e1f17cd1396761ee0..ce61a8cbab41051849abfa54cbacc096308dcf0f 100644 GIT binary patch delta 8989 zcmYk?2V9rc9>?(mG87RUhyz4K0YOEEijv|2!;P!l1H~;Wu5$fzlx2>TRLaU!v`lk^ zb%5tTeUhC{6F@`#;Cm%jeaP_c`Zzp0m$`R(m%1?q28X`L?p(D#P`% zk1>%LS;3e_zF1SG#+-;TrVgIOAp8TH;~gA`>2;0Cz-O@?9!GAO%Jqy1#-)w2aBU@4B){Uke(#i)T6C9(e0Wj0gbkDp^0evRtsRn%1a zHMTE?VKDhx*cubD8;(UL(Y%Qo$oHs$UB(c+gB7p>qshhy^uuAv%zt?jBV9ous(~4( z9xg=PUxV5U8&M5>jB4;Cw!zz|8EKVb-_OE|qIL;+3eWU61PUF?atARw92FHG`G- zEULrxPy=j%)3Ku~KZxaZ{=X!lioQej@G9zsn|c7tK42>hLsb}$YzNa4*Wg6dCpwVN zViG1`B=$vhXc}rJ7NKTtB~HMD=wX>m5?k^)9D$mFJJ=unGVR(8K~*pb)uCA!fs3#` zZbWtXM`V`G4b*@db4In+El~sOgpA4bMm@j0HS@2{wT=Q+T!I?mPE>=3F&s~zD*6#s z@io+QzHMwrs-c!F4Yk?kqfSc^YCvzHmhd2I3BSjh_(vO$?MX;md;FqM4P~Kv*b~*k zJXFJ@uo_Oq1-Jw?#T7YI>}C^#bub45a4gow$yfzfpz7U(>gXO13GMO^P`mWMsHwex zYRHHAjlvojjm=RF^+Q$QL3Q{U=S!%m-i8|KUerhrqc5IA_NVzD)g!WCA zd!QF;w~t0W=)qyQ3J2j0)SC6_$nS8Rf?C@*P!%3U&A=(t`xj6%cniH9?qruP67_ro z^k^-ck*iVT7lXtrPu~fpk|^{SANxEF1E%Es8e(v z6Y!3+em6!hR0PEq?7>zqoGjtNE+nhoj*SK8! zhtEt5A>R%wVh=2fd8qfsVRd+``j!Q5J4`VX^>GH7;+4A0)O8ElhK$yL_ROjD3Y?ojeYHBxO5bi?F$lF*A zKS3?cdEDa5FC$b3R`j>e??qMoE{?VOSHDZ;X|&6>76}#}q6;jqGLA``1x>DKO9Ojc`=Q(oyfV#mYDo zXXBJS=0AqSuN1VzD#NY0m_U9hs)PGbd*egY2);vg?2^mhL@kBS2-{#BDxZvX>ApM$!&7!Y-)IGypY#Wf+OOQ0My?s=hCA zGG4)kIAo-)e+jZ3%<~=+ER(s8YT%(!wt=D8jQm6lz|GFrQ6t!mnt`LJ_s*cs^#yE= zzdKV$+m05Zp4)^Pzz(NpKMB2f6x-oxEQ__q*j*im{^V0o4X2~_LN4mG}F0b}ipm9aZFB9H@M#-Sg6gsSi;s)1i{2Hr${4<>Qe zbpI08!{G6D=~A#R`L-B``KTpXf(clHwRHZEktwbHRi&6Dn z!bH4_+7q5c&X6ij#fsP)!!h4E8|#xVa{0GWBmW$AuFs=JbP?6yb)1h?XWEVxV=Vct z7>y@UoBVg=xO&V@5^Av4EIY+bP*d6htKx&G7Y3mk9FF?rjzyj8rKoeh8#RDaSOqVl zI`$80X@dBTqY;Or@=+MB^PfnRge#d#OivCuho=Auy@YmDB%|FD zDXQYjsE+;R^qXrt9*U|r0#$DeddiWAC!r}zL5(mQRo=tp2RKK$@+qi>=b%Qs9<@}j zpx%GS`7!EPe~GNM@n^QTV=eeJ?x&)5Zx+_TemDZB z;2=DO>Oix3{A$K7SPP#+)wd6|B=4g-{spSNoAYQ;Bd;>w?$&tJ$TOT-sD`_trgS)J z3JXvporYSvd8oa!7`0apq4vZlsOL|i>OG4Z&_&b|-13kZN<#lOAp?eC1AGA+;YX+u zT}O?){X*NJLC!*~P5B~>z*n#{zK0z!^l{tKhp+|tJk)?*zy$Q{B9Tnu3~B_yPuLGc z7S<&{5tFb8x4OFXp56$Y_kh*{I#S7E|#xjKgnGOW?QIexRaJ&$mbIl{}2c0<4a!(fj*< z2MJa90hYrrQ6o8v>d0@Xif-Um41e1Gjpq=yBYz7=V&)RQmbeKu@+;ULD=oFReLjvlT3T@q=Syv+VpYXmMQzXvt)Y%=AspEDnI+$N(&vcYY_*m7=bFI7wTQ-~C%YFl6KzRf#D0XX8x}K-@?OL#mk%J#FEsNyp{2|re-58P zU4g`W(mL}x1?sH5Z2R8PJ>eeKjpyC%+4q%oq3jP=-kb7bVgvcNh>D~q5=Y(rdwg{- zflqN?8+Hs)lk~qZx-UO|A$0X1MsXt)2NT*<9f;qFd6bVM7Laa?y1pgKkseC?m-M5= z4x&8y;YGV5s(7AvPg3aJ8RwPYDxzEqJCpcO1zdC8vza*87J2`uGl6tZ${G^8NGA~d zMl&0U5XyAOb(JA>Ty!N8>}ZeoFLfW0iQ&Nmy2BM|@t&0#q>s70@bH|jBpisr#2bXa zE04sNh`vNMqBHR$_lpQ0(v478KI!Lt9^@>M(HUw&!6QT}5k$Thp{p!0jIveOnwUa* z7BQOmoO~eu>7C2v9s$Tfm^j`%_u zu0ihIsifZ{J|I?8mPhQ3W3+hAU6JKtvNui22;lBVH!0 zOW!D6m53TdS;~93dnd^^Cq@#w>JeLsR@@(@03w*Mc$P>a))QSRuSC=)bUjQIxU{#x{WyMq#@l5c%BJvbViM`@ z?tzEydpX~gO>u_0dykV}>C$c8y=E?-;OtHL%R~nGcx*=WAx7xF4(d7*S>D6Al-vcv zkCIYcinH+kD@w0%Rj`Z4!P+oW1=y~8+_2d+^NgatU7xOdGV@gyKXGoeoL=16> zNTmE#%p|@ibakNY6ZFNE81KXHm^!+{wSs8RjbvO#Y$6tte++*j`jmbX^O{f5&e(v` vj_G$kIi9R0{ delta 9257 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 Wnv~*N_hVA{xD>UxBL&$n|Ry+ diff --git a/languages/gravityview-sv_SE.po b/languages/gravityview-sv_SE.po index b1b1ea88bc..041438a182 100644 --- a/languages/gravityview-sv_SE.po +++ b/languages/gravityview-sv_SE.po @@ -4,8 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/gravityview/language/sv/)\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Uppe" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Vänster" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Höger" @@ -97,7 +97,7 @@ msgstr "Redigera detta inlägg" msgid "Edit" msgstr "Redigera" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Datakälla" @@ -182,7 +182,7 @@ msgstr "Flera inlägg" msgid "Single Entry" msgstr "Enskilt inlägg" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "Använd detta formulär för att bädda in en Vi i denna %s. %sLäs mer om att använda shortcodes.%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Välj en Vy" @@ -270,8 +270,8 @@ msgstr "Välj en Vy" msgid "— Select a View to Insert —" msgstr "— Välj en Vy att lägga in —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(ingen titel)" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "Lägg in Vy" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "Avbryt" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "Laddar…" @@ -294,92 +294,92 @@ msgstr "Laddar…" msgid "Please select a View" msgstr "Välj en Vy" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "GravityView-fält" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Tillåt administratörer att godkänna eller neka inlägg och användare att välja om deras inlägg skall visas eller inte." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Godkänn/neka" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Användarsamtycke" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Godkänd? (Endast administratörer) " -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Godkänd?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Godkänd" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Visa inlägg på webbsidan" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Samtycke" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Ja, visa mitt inlägg på webbsidan" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d inlägg" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 inlägg" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s godkända." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s nekade." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "Nekade inlägget för GravityView" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "Godkände inlägget för GravityView" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Godkänn" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Neka" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Inlägget är inte godkänt för visning. Klicka för att godkänna inlägget." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Inlägget godkänt för visning. Klicka för att neka inlägget." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Visa inlägget i Vyn?" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "Fält #%s (Ingen etikett)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Kopplade Vyer" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "GravityView Vyer använder detta fält som datakälla" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "CSS Merge Tags" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Utvecklare: CSS-klasserna kommer att rensas med %ssanitize_title_with_dashes()%s-funktionen." -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Ej kopplat." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Det kopplade formuläret kan inte hittas; det kanske inte längre existerar." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Redigera formulär" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Inlägg" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Inställningar" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Redigera inställningar för detta formulär" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Förhandsgranska detta formulär" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Lägg till alla fält" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "Lägg till allt tillgängliga fält på en gång." -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Fält-ID" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "Inläggets unika ID." -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Inläggsdatum" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "Datum inlägget skapades." -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "Käll-URL" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "URL:en till sidan där formuläret fylldes i." -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "Användar-IP" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "Användarens IP-adress som skapade fältet." -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Användare" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "Detaljer för den inloggade användare som skapade inlägget (om några finns)." -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "Eget innehåll" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "Lägg in text eller HTML." -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Länk till inlägg" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "En länk till det enskilda inlägget med valbar text." -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Lägg till Widget" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Lägg till fält" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" eller dra existerande %s hit." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Namn på Vyn" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Stäng" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Fortsätt" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Ok" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Ett fel uppstod när Vyn skapades. Kolla instöllningarna eller kontakta GravityViews support." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "Ett fel uppstod när dynamiskt innehåll skulle laddas." -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Ett fel uppstod när fältet skulle läggas till. Försök igen eller kontakta GravityViews support." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "Lista över ändringar" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView untvecklas av:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Medhjälpare" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Vill du bidra?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -751,37 +759,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "%s Vy återställdes från papperskorgen." msgstr[1] "%s Vyer återställdes från papperskorgen." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "Avfärda" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "Möjlig konflikt" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "Både GravityView och Gravity Forms Directory är aktiva. Detta kan orsaka problem. Om du stöter på några konstigheter så inaktivera Gravity Forms Directory," -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView kräver Gravity Forms Version 1.8 eller senare.%s \n\nDu använder version %s. Uppdatera Gravity Forms or eller köp en licens. %sSkaffa Gravity Forms%s - från $39%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView kräver att Gravity Forms är aktiverat. %sAktivera Gravity Forms%s för att använda GravityView." -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -879,11 +897,11 @@ msgstr "Transaktions-ID" msgid "Transaction Type" msgstr "Transaktionstyp" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Standard" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Datum inlägget skapades" @@ -891,26 +909,26 @@ msgstr "Datum inlägget skapades" msgid "Email hidden; Javascript is required." msgstr "E-post dold; Javascript krävs." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -918,155 +936,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "Vy-ID" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Antal inlägg per sida" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Aktivera lightbox för bilder" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Visa endast godkända inlägg" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Dölj tomma fält" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Tillåt redigering" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Tillåt inloggade användare att redigera inlägg de skapat." -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "Visa \"Redigera inlägg\" för inläggets skapare även om hen inte är administratör. Visas alltid för administratörer." -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "Tillåt radering av användare" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "Tillåt inloggade användare att redigera inlägg de skapat." -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "Visa \"Radera inlägg\" för inläggets skapare även om hen inte är administratör. Visas alltid för administratörer." -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Sortera efter fält" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Sorteringsriktning" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "Stigande" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "Fallande" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Filtrera på startdatum" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Visa inlägg gjorda efter detta datum. Stödjer relativa datum så som \"-1 vecka\" eller \"-1 månad\"." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Filtrera på inläggsdatum" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Visa inlägg gjorda före detta datum. Stödjer relativa datum så som \"nu\" eller \"-3 dagar\"." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "CSS-klass" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "CSS-klass att lägga till på wrapperns container." -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Sök värde" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Definiera ett sökvärde för Vyn" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Sökfält" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Om ett sökvärde är satt kan du definiera ett specifikt fält att söka i. Annars görs sökningen i alla fält." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Titel för enskilt inlägg" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Välj en titel på sidan när en enskild Vy visas. Om du inte gör något val kommer titeln att vara samma både för listan över inlägg och för det enskilda inlägget." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Text för tillbakalänk" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "Text för länken som leder tillbaka till inläggslistan." @@ -1087,50 +1105,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Tom" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "Du försökte visa ett inlägg som inte är synligt eller kanske inte existerar." + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "Du försökte visa ett inlägg som inte är synligt eller kanske inte existerar." - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1141,22 +1159,22 @@ msgstr "Kunde inte aktivera tillägget %s; GravityView är inte aktivt." msgid "The %s Extension requires GravityView Version %s or newer." msgstr "Tillägget %s kräver GravityView version %s eller senare." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1349,7 +1367,11 @@ msgstr "Sätt på detta för att hindra ovidkommande script och stilmallar från msgid "GravityView Settings" msgstr "GravityView-inställningar" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Följ oss på Google+" @@ -1664,37 +1686,37 @@ msgstr "Inlägg uppdaterat. %sTillbaka till inlägg%s" msgid "Update" msgstr "Uppdatera" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "Du har inte tillåtelse att redigera detta inlägg." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "Tillåtna filer" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Släpp filer här eller" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Välj filer" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Ladda ner fil" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Ta bort fil" @@ -1947,6 +1969,52 @@ msgstr "Visa som länk:" msgid "Display the uploaded files as links, rather than embedded content." msgstr "Visa de uppladdade filerna som länkar istället för inbäddat innehåll." +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Länk till URL:" @@ -1993,76 +2061,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Titel:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-tr.mo b/languages/gravityview-tr.mo index 0e011f712e05741f89b47b8902bb300903d483b6..fd802d3b1c0aa4056ad954a2fecd48a4209c6a81 100644 GIT binary patch delta 31 mcmaFF`iONx35TJDf{~$>vGK$j1r9??1p{L%W3!D*?3e(SRS3ZV delta 31 jcmaFF`iONx35S81f`NgRvBkt11u)y(%EVyf5<4aUmH`O6 diff --git a/languages/gravityview-tr.po b/languages/gravityview-tr.po index b57b828547..1bfa9d118a 100644 --- a/languages/gravityview-tr.po +++ b/languages/gravityview-tr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/gravityview/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,15 +18,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -96,7 +96,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -181,7 +181,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -261,7 +261,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -269,8 +269,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -279,13 +279,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -293,92 +293,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -417,182 +417,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -634,19 +642,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -750,37 +758,47 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -878,11 +896,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -890,26 +908,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -917,155 +935,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1086,50 +1104,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1140,22 +1158,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1348,7 +1366,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1663,37 +1685,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1946,6 +1968,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1992,76 +2060,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" diff --git a/languages/gravityview-tr_TR.mo b/languages/gravityview-tr_TR.mo index c60efecc87606ef2ae4a5e2e13c45078ed6d6804..300198d4c90d6e112c893416124701b02c5203d3 100644 GIT binary patch delta 10001 zcmYk?2Ut+$9>?)l1q2j91wjnO0pei0Kuts~P*dDH6*VzO=E_`0ac^^^l{-VxEX}&^ zGWAyOvT|o$t!`PF?X0fd?~nK8c|6bk_xZo?Ip;m^ItRG5=1R$5E|m1HSMXV7IL?+Z z<{?~E&X{2(jrm&zj*YR#RL4yih{v!Ap2facy0$UtI2bc=1J=NsSQdTbj0wgHI09?n zBwUKmlrWwNtYge>D)Q?Z!?R6;dd5UyD@??JNL%JPR0sBB2p-4M_$fBS&rltRtZz&j z_CuO9tC2^TqgV>R!!W#yAw1vs#TyeqML3ql>Zk`Kpg*=iJva*^unWfE2-Hk0M~(0l z2H{nV#&1yV1|}F&9z#*r#o`!jgmFCI6p}Q=^O%bM44c$6Lp3-YE8w%J5ii1WxDwUD zmr+yxD(Zpfuo7NI&B$F>pPFO`)*LmX9ncFVnLwf`nS*-ZT2zm>qaJt&)$noDgU=%W zGoSH~s#q@B8jpUI+oRg+f`f1v*2FWYc7DW>_*XLXpQj5_>`2a|MtT)}@eXQazaYzH z!kHe`w?-{VThsu$x%wd(N_jY{1Jm94=TS3NfLh|$QA>F!mHB^|PWW2-W`6NFU8C zWX3#mkVHK`g4!IXP*eP=tN+5)|A1AfzlU1$u%>oKVo>)tLOrM@YHB;8+8K|!eimve zR$?S>!Z5x6he)(J&SNNE#dy4nn$oI#U8dj+)KuO_HSEW{YfprsI#3(cP6}!uO|b^H zLG6(|)PrBcNALvt>irL42X??p*b9fCmf#)KgKnXw{wLH3s0?#%V*fV6N_pm1wHk&1&MCRMs2QMs0N3idOXpUSD+qHfGKzoSK}Sj&xkoK z?T2d{K1BHSz=jL^G9$n&I?J=0A)ikBX5v4cYkSJA46aw6gE}A?!{0DC#YU zYHb@zKy^3`wVT^u6&!(FYUZH^b{g66<{E0`p{$4YO7%9LU8_VY(y2&8-7pR{1GCTv zSEC-Z7BvIgP$M~vmGA>pgP)@w@IC6fKT#bDX2G?@^-u$tgzE4@kHnYc4Xla#P-}h- zHTB=3I^_4L-PM&)4{C<0Z;R?+Z`6bPV>ph$nK%nI_5NA*{z$A&IRpLB%O$BsG7Kx? zd{o2hP(9s=TB5g6d*u`K$Lpw({TKDXQrY%#TcB4YOfGAfCE;~d_WRF z#Rb&JZ=gp0gEO$LF(oO-Am0`fhf$b|8o_kb(#%E8zzWpVZ^S@+%hex2wSUHyuN9S9 z|8LxhKTsnt-Oe@?j%uhDYKGFV4)(%ioQWFQTd3WB)%ge3r5x7Y?x75*RmfbV=i{Xm8kE`ZLEwjUKe{o3oM}GX;+TuN@JAUqGn<)Y7>5my3v=`v;@^q z?{h2ECLDqpn2-FpFvpNSo08q_FF0LMukA{VMQ<00cJ)PPi5`5VDA&Wf*u$BRNtAcG z@^xoGPdhUWFp=}mpsw4BP4N=e!q8s!dys~YQ|^tl@0tB1n))wr1b&O`H`BAX{jd~Z zDavo7HqTMiRDXopbT?7=e~Vg*pRf|%M`qcC^|4ElhdMtJBk)-)&GXH2cj86VW-CCw zug6iZiSlwP1qT=bOT&@I>u36g0*T8tOI8Ms;We>Qg-i!*Gr(uSIoi7ixy~yYnYe?cH$oe`0&eWmpGq z3rSCsH2fdtVB`Kw56;6ZEIGigVLNO>c{C8zKAGHr!RGikregYV+u$hF z5==!+{R(V@YcT_FqB>TSovoRegmrNzYAG*yB#|W7Q4QV001O^!KarKOJmmz`UdX^8 z%)x5-IM&8#sHH1FwevfwouEGSk9m~Zsn2#FZ64cBTqVD?v8JK5&BheK5KW%$d7qweE zU|Gy_j>izn`51~TP$SufariFQ$J>~M;bZKBvakx}j>zPi;TVsXFi`Km-&lSRqoO=c z!F8yfM~<^M#$sv8na;MTx1cj>%@?Akd?l(w+fi$K%z47qpF>^uHR`_mSdr(O(&OzK zRY7gCme>qEY=?(18U0zOa+r>xnC;4sqn2PKYJ`(fQ~b3%{{yN+_pu`SJY(Ok2=ppY zkwl``tQBhHS(t)du_?~QQg{rt#_yxn^gL>leUDnI-?26NOte2mvr!%1gZ1zzY9{aC z9{g=0^S^^+J71ev>^{lklb?NIkk#u(g;>i7rv82*J# zFq?Ii`KSRNM12?DpThiWYQLgFYZ5WlzGl@?Jx@k;B*T>lU?s{=pwIdQ+oi* z<5|>_+(32wjyqpvnypVn&3to@L_N>J2%O+9Sc-b^I?TkwI0Lm|=R!Ve>I0|S4uzr` ztcQB=!>IG^QA^ex)!~8I4QFF5^sbV0CsFI#13hpM_C@xKIfA;ealU>1`d}T(BT!TM zJjUT>R0mFB6kbQ&_cw-N^i2C#ZzHTic`7np?{y)n!2_tx^qwn!jB4O>du=;w!Ri-Q%=W|I1BZFj)?7{|k67}}{gT9*1&^dN9MWTA%7Dr=H8 z4j74pQ6uuO6uyLNXaiQoU8oVAbLB5wxzqyNp$H7;d>q!o4D5?T(9>={O41N7qc%_Q zLVIBpszaGr9lN6*G!g6KV$@RXLv7xZ7>Kt}Gjj*);9s~2V;0$^cpn>6{?8)jKZd08 zVmqQ1s42@qJ#Zuj;Zo;1)Qs%FGWZ^9%FknIyos@R8*5_uCAOmtQ6nFKx_&llAgh)z z|Jt?NsR+Wu7=Wi-`BSV<`4-l|kfnAHq+%P&X{Zr;=#PaMjBj8$Jc{b@N2n$J4mG1C zm)Ywoc_eyptgC3?%B@iy>+H%yP`h|6CgNh$6dy*-#7R`gFQD4Hfm(_?n1=UI4^Dl~ z&d8&v4tir;G6OY*%P<(%UGjZj`%FMRzS5I z?My;C=$Q->^{gG%!~U+k5cPl!sNK5-)xaU=Y1CR@!+0#Ug1-SU88wiom3GNuP;XBb z>h&IsYA3&_%=#~P7wkg44X06SeGA8--zw{5R0DUhC6;^MUYCPva4c#DW@05=hI%Wu zq6T;bH8Y=}mgY+g)BAr{3Hq(J7e0jg&?Mn>Y=mlfFKVriqdp)XqL!xO8oQe#Q4dVS zYM6x;Fb~zI+H3Ls>wo5(1BdJQo0#rkV z7>fH)ug@8*g;!AzFfZFrZU7dI1huxUP-~ryT9Uq~`^TUu4E!>|O-C3Kvmu#=cf?vEu2t$A1C zO`;K@<6Gi3p-vSa4LmN6qx3GmLKGjqr-G1`x?&K=!Iuu`s zKN3}`J4U?ju78WV;SXFBLVZ3l%+;ll>n-^Yah?cCawjh0EKb%Y-XQ-M{)GDYlpsHZ zI!>;bQLUo4maIOtI_ly(IGQ-@>e}P?lv@${8l0d!0d))}qKSuz%G8g*;n<&8LC)J? z9wxtq4<1ia7)|{XdTAdbd6QT`l;=cW;xxhc*`!mKLfjzlf(>yhevW)(ijJ9-2NMq- zdWoA7dx<*4t3*$t_(!ZkCPXoKDIh)5otx4{gu|G zMPHQZT)TrvBy>dM7()L~)Dy05CEnxQqM|D}k6uasF~wC(%42t8iYu?h9@KwI)FT3k_FDf4 zB9xQiIFZni;BK-d`xnA{6oyj&37#R6i84e>>K0-rcTYLYbve~V|6b*Qk_V1`oX?=F z=bMfC2S-QZbz%`G&k!%TMt-4gyvwU&0A(F@$bD>D^v`2lvqREOV|iYdG&Y4|RE8@=N5$h(C!+#5U@5l)+Xm-{71^ zeKPsixC9%!`nRo~*-Y{(@e&b9yhfBIo>7Y&TZn0tf51%QHR8cz356Wa?izL^w_}+>L&C7US?Dj=|uTj?)eEun+FS=6DPJ zu|X@x3Bcxf2s>g1-o#ms<8el}cAUp){5sE#bg zI=B*ja5HwtS5O_fie0gFq~o-~WTXja1y;oa*nsw(QW8Dr4A#JJ(I3lg{ay5>TrT;uq5 zFc0j4bt(5pjd&E+#tEnnW}~M52~>j{FbH2l%}A-O{|oC-t`W`rYf2lD1YjR*fWuHD zn2doq1J&SC)Pq-|8eWe)%XtNx;sxs+tWG(kqj_E^CR6T&EpQ#`Ifpwk|CuE3Q!!Z= zFl>$FMXZb4(Hjqm3pPfTTcH|^L=CK) zJ)htq(I$En)qu)sumF4Eo2aS$8TEj>sI~LyVj2iR-4}*EupLgsDX6#PH0t@EqptfC z*J5>cY!P~jNqCi=Sl*S^I2zT%#i+Gfi> zWIA_IGu8fn^ZXvjSUgS=iKeIk)#K%;&9MeG#hY#Y8@B!s-beij)S6yK&B#xv`@Q%G zsG(Y@k>7`UPH)upNvN5efQ|J2XOc9aVkuT^KCDl9J4RwDYD)iwb1;E<)>NKCJ@^c2 zPh3WI;Ahlx{zMJLhmF-715tY<78~I#9H94qHHkNViHZ0PK8n%oL@mM7sD^f-rv3i0g(zoxi)U$X?Um`Qms@+LV4 za2?)6&Ct?*j`J9A@v0OCtA9k_FBtOBR^Yl0Y5gV2mOeeA@6wer3}Yt%0p2jTY%c_+pT5T zhVo_99`a8xGZTvblpnxA+INPK=)q&r8|R{WxDYiXtB^Owc>#6f*Qo1mV0FBO8sQyO z$EzipwXTo4J_2iDjJ3C|ABq+4{}__yT#%0H>2lPAi&4LhFQXoC6!pN3diC>)LMr;WPYYQ zqxMEV>VYd!9ovAqzXUaqBdCslf@<(<)b%%Q`OZVke@!ZUhnW-gQ6mqYOm}@-S-J<39h5w=YSDr6Gme%%8AI&iSsNnXy+sBiLR06we?IOiJ)Q* zw#Kd2)7X~suh<4#j4~!-2g);Td585=)XeCYt3C8ZU6+geGCSKa3@@Pzy&vN*X1)Ir zBx+zWYU4BU?i7&h8`SaPr`!|zpqn6?b2H`1WRh-MHrHCD4 z&UeKS+IRYsXl=*Y6O&MzEeEyBSE63GU8silVnZxLHGC24;x*JJyo-9C59_7t15kUU zDQfB3*>XI#qJ8Hv5>3rQ)Ebtc3s0dMx{d+p&3x%KZGh@f9M;1JumKLU<;kdy%|Xr3 zVtf91)bn=Q`uETiPsL{>+c0dr`Lv$IB+6AMu+BIf2jWMljt0BUzj(T16yV&iCToM{Ujz zCz&tgZ>X|Y8h`Cz6lyasMs;WxHpNS*CHV_AGqoo(|DTbBPUiE9zhW^K@$x@Yh0QXB zUpUI|PBk}VvNM}eo`*ef6UN|0)Pw70nx$xlT7oXvAA4ahT!QN0`=}Xd>d7*@{~^?x z&cR0bBx+4JVh!Ab`cfXoKsa$4Ma3jfEJ9>rqp@6V;)QP`maP`lElYu_3Ah5vZBzf*MFXw!&0whbyoH z9zwNq1MkD1F+=ZvK%V(Ke-5h0JMd}Ti*vAdzWtz}ZajrPc-49n<0$`vTJ!cZ%#_EW zI+Tc7+B9pXtkTK}C#Z^a^1$5+|&M?Ln$S=7{DMy>sA48cb8 z&5bb_O1U@oK{qbIZCHR26g2g(qdIf|^}LT!4S!?L|A<<$yQmI(yq`3Gk+jAzRp1ER zhS~$aV>0Sr5$r=J1$E;WsMqf=Y>jmmnVIZ{di@5VI*^S`@JZBto3H_v;Q+n=7fAG4 zHCt?^t_SMD38iy3m(d)Anz3~8QGaW(o{3cFA|D|R#&c&B>9qRgVPw{6Nrl2}{05#<&P}HC+hmX*c6AO29#^d zOKo{Oszary*Zo8Egpph!8G|*Jo6R!`J5ipC8p$5ib;nR0x{A&4E~=r%&zK*vXw*`S zL2ceF^uq%5$5q%Gi*Ylae1`egT1;JG{$0Kp!zmv|jp$p{l-))(82GGx8?3!iGcpuw z;uH+P8R&ycP~U?UsLi(*+u%P?1FE)?`41pzz0!=ND{9v!Vl8xI4a~OXnb?kU0XE0C zPM78Vrj6_p%9o562LSr~;3S&_n>yC9W z9;@S6R0Ank7qhS$EZolzGI#~_@B zTI&ML!yVSpHRk#v>`ncfsOxT{Iu^Xv%s@-jb7E0%#Sqj0Q?TOwe}Y6Ke+soJimW?O z7rukqWan@`UO-Ll=yhhTC!@X}d8nn?kM;2ghTvHY#T%%l@?USB7m6PBJe-7m<)mQ} z-a*a8;0xP&3hPlUb5%>u&5x{mJ##_x)w?l2p7}OHRq28jt=!?Tp z_m9S4OhtXr=3*|c_mF4?YHu@Z-3XgfjzT>s0kxK6P_NH)3_}m9fo&Lwuc2n@C~B`< zL#=f=YES7GOZNw%IvR$0uBSaobCQ0j&6b8ea5l!^+t>!nF&aZ&HXRs@8c{aJVgYI( zrKsn9fZ7AsF%*5ao0({d`W{51H|;xpNSaVF5Y@9u_y|tNFY$fUCf!zI{xNzLr&FHr ziurHBXE1_tnse@`@fN75Es0QZ=gS0T~l`$>7ny? z)Eb^gf4qbmQ91fyt=Al<3N9sd{Efovgc`4bRS9)KgW5}UA#~gzuG4343Bo+|Ih_2MXMEpcP1@E9{_BlfBJDZ5l zh+he<tvg8mwLSSfbwevJ#9Krtb!EgG_WFI)W!!U3 zAoUB0DYmX#FA9w*d_$Zi0_};iApX^w4_xzB-ZA>S&Aa z;B?}MtxLe0l=~6-DLO^@anzAYG$VQvji}GW44gm|k@HqKJ;|@&y~k7v)2UC>CTc>m zmw1}cyEB$JP4NA8?x!w>xJ*7AJL5dOgnXSUjzyGHiF*%y(7O`{h&IG)#G^#z5zF-> zC@j_@hLN1AJcGk*z6jsr!bk1HeJRHi58Lwts6TG=W%wNB#>4^QN#cS%HyX!L)^R@( zPhO;JR6+aBe~7BY45A(h@xVQ2t5F_8G@`BtF2qlWN#r%{b@Rz}tih*< zV)DND2SyNjP5y-+ppI?0+N93rD$M^i3QrNG#1F&{E|`r&2py5cL}EDc6%j+sBJ#Md zHnEnxKk-i@nm9zAj=DIKm}|=$aTN9EiFSk^k)ZW&NHpMN2+kyQw6`~zQpLY_o%bnB zrv6j>i0DZ86Md*#j>GId0hnxasw@8Apof&)bG*&@-jvn8v)P_VLj8>CKVN=CtS5B* zo0wtq=2)YmmRF0sn$1N!drf84gOne;r*0%CQf%25OVoZSmG4l{|B7fk`N#HdH+mCu zsMqnA!O5h2+Sb*luD8vXT9;!Bo4<)ui2!?V9rFF;*~IROx{C3ev(q@)l9*3%C$XMb zNvxyp1?+-8c#haY-UqAT(^wPNU?NV#@x*R&9b*j6Xj@kCiOO8<53DSZCllWi?-Ki{ zPsbN=65dA)Rvj^qyeSSP3dvUyI$kFVsXK!&6CV&Qi7e`Ji0b5i%29_WoI>R>$R=BG z4E4X*@&@wBHXlp=5ArhNcOsa0#XiFy``LVxRRiou{yjd6akl=b(c^3-d5w61xR2OH z)FPhX1|2UE9?CyrUt$+=@9`{!hd6(bXh_tioQ;*ogEsN8bq`=?VlC0MVs7jOEA0gz zT7#_vIUl`eW5kXs=_68ea?`W3T+vZ+uIwCFR_f!aIZ@%cEB*^C zxv7O;w(77atX1m$z8yNdI&|n36Ib|Lva6!drCV%=J#Qy(uUgnCIv_sxcxle@(#(n; z&2*=@UB^pv^NyFg(o%C$r{<;Sq^o~^enavzGTd1yWxLCY%XVj#?VjbTyit9OKVF(Q zDK)Fmofb4QD}7eFEA4n`R&r`aM(WJ;tSA=){QoYWC{E8zNq6PC^LUucoxuf>uCSP{ nt`v8cYohx^afW*)*`)ND?z{|lPKG-?x3D}da?jkfU;F+Sy=6-! diff --git a/languages/gravityview-tr_TR.po b/languages/gravityview-tr_TR.po index 4a041b3272..dc904a3c42 100644 --- a/languages/gravityview-tr_TR.po +++ b/languages/gravityview-tr_TR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 07:40+0000\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-19 03:36+0000\n" "Last-Translator: Zachary Katz \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/gravityview/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -21,15 +21,15 @@ msgstr "" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SourceCharset: UTF-8\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "Üst" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "Sol" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "Sağ" @@ -99,7 +99,7 @@ msgstr "Kaydı düzenle" msgid "Edit" msgstr "Düzenle" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "Veri Kaynağı" @@ -184,7 +184,7 @@ msgstr "Çoklu Kayıt" msgid "Single Entry" msgstr "Tekil Kayıt" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -264,7 +264,7 @@ msgid "" "shortcodes.%s" msgstr "%s 'a Görünüm eklemek için bu formu kullanın. %sKısakodların kullanımı hakkında daha fazla bilgi edinin%s" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "Görünüm Seç" @@ -272,8 +272,8 @@ msgstr "Görünüm Seç" msgid "— Select a View to Insert —" msgstr "— Eklemek için bir Görünüm seçin —" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "(başlıksız)" @@ -282,13 +282,13 @@ msgid "Insert View" msgstr "Görünüm Ekle" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "İptal" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "data… yükleniyor" @@ -296,92 +296,92 @@ msgstr "data… yükleniyor" msgid "Please select a View" msgstr "Lütfen Görünüm seçin" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "GravityView Alanları" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or " "opt-out of their entries being displayed." msgstr "Yöneticilere kayıtları onaylama yada reddetme ve kullanıcılara kayıtlarını gösterme yada gizleme yetkisi ver." -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "Onayla/Reddet" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "Kullanıcı Seçmeli" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "Onaylandı? (Sadece-admin)" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "Onaylandı?" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "Onaylandı" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "Kaydı Site üzerinde göster" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "Seçmeli" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "Evet, kaydımı site üzerinde göster" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "%d kayıt" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "1 kayıt" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "%s onaylandı." -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "%s onaylanmadı." -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "GravityView için kaydın onayını geri al" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "GravityView için kaydı onayla" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "Onayla" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "Onayı Geri Al" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "Kayıt dizin görüntülemesi için onaylanmamış. Kaydı onaylamak için tıklayın." -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "Kayıt dizin görüntülemesi için onaylanmış. Onayı geri almak için tıklayın." -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "Kaydı dizin içinde göster?" @@ -420,182 +420,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "Alan #%s (Etiket Yok)" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "Bağlı Görünümler" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "GravityView Görünümleri veri kaynağı olarak bu formu kullanmaktadır" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "CSS Kaynaşma Etiketleri" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "Geliştiriciler için: CSS sınıfları %ssanitize_title_with_dashes()%s fonksiyonu ile ayıklanacaktır." -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "Bağlanmadı." -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "Bağlantı yapılan form bulunamadı; form silinmiş olabilir." -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "Formu Düzenle" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "Kayıtlar" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "Ayarlar" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "Bu formun ayarlarını değiştirin" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "Form Önizleme" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "Form Önizleme" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "+ Tüm Alanları Ekle" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "Mevcut tüm alanları tek seferde ekle." -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "Kayıt NO" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "Kaydın eşsiz NO bilgisi." -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "Kayıt Tarihi" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "Kaydın oluşturulduğu tarih." -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "Kaynak URL" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "Formun gönderildiği sayfanın URL adresi." -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "Kullanıcı IP" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "Kaydı oluşturan kullanıcının IP adresi." -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "Kullanıcı" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "Kaydı oluşturan kayıtlı kullanıcının bilgileri (eğer varsa)." -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "Özel İçerik" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "Özel yazı yada HTML girin." -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "Kayıt Bağlantısı" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "Sadece tekil kayda giden ve yazısı özelleştirilebilir bağlantı." -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "Bileşen Ekle" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "Alan Ekle" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "\"+ %s\" yada mevcut %ss buraya sürükleyin." -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "Görünüm, kullanılmayan %s Görünüm türü ile ayarlanmış." -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "Veriler kaybolmadı; alakalı eklentiyi yeniden etkinleştirdiğinizde yapılandırma seçenekleri yeniden görüntülenecektir." -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "Görünüm Adını buraya girin" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "Kapat" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "Devam Et" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "Tamam" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "Görünüm oluşturulurken hata oluştu. Lütfen ayarları kontrol edin yada GravityView destek bölümüne başvurun." -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "Dinamik içeriği yüklerken bir hata oluştu." -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "Alanı eklerken hata oluştu. Lütfen tekrar deneyin yada GravityView destek bölümüne başvurun." -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -637,19 +645,19 @@ msgstr "Değişiklik Listesi" msgid "What’s New" msgstr "Yenilikler" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "GravityView'i çıkaranlar:" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "Katkıda Bulunanlar" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "Katkıda bulunmak istermisiniz?" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -748,37 +756,47 @@ msgid "%s View restored from the Trash." msgid_plural "%s Views restored from the Trash." msgstr[0] "%s Görünümler çöp kutusundan çıkarıldı." -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "Boşver" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "Muhtemel Çakışma" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "GravityView ve Gravity Forms Directory eklentilerinin ikiside etkin. Bu durum bazı sorunlara yol açabilir. Eğer bir sorunla karşılaşırsanız Gravity Forms Directory eklentisini etkisizleştirin." -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms" +" plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a license. %sGet Gravity Forms%s - starting at $39%s%s" -msgstr "%sGravityView Gravity Forms sürüm 1.8 yada üstü gerektirir.%s\n\nKullandığınız sürüm %s. Lütfen Gravity Forms eklentinizi güncelleyin. %s Gravity Forms şimdi satın al%s - $39 dan başlayan fiyatlarla%s%s" +msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity " "Forms%s to use the GravityView plugin." msgstr "%sGravityView, Gravity Forms eklentisinin etkin olmasını gerektirmektedir. GravityView eklentisini kullanabilmek için %sGravity Forms'u etkinleştirin.%s" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -876,11 +894,11 @@ msgstr "İşlem NO" msgid "Transaction Type" msgstr "İşlem Türü" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "Varsayılan" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "Oluşturulma Tarihi" @@ -888,26 +906,26 @@ msgstr "Oluşturulma Tarihi" msgid "Email hidden; Javascript is required." msgstr "Eposta gizlenmiş; Javascript etkin olmalı." -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "Bir sayı girmediniz. Girdiğiniz değer gömülü Görünümü içinde barındıran sayfa yada yazının NO su olmalıdır." -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "Daha fazlası için…" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "Girdiğiniz NO herhangi bir sayfa yada yazıya ait değil." -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -915,155 +933,155 @@ msgid "" "following shortcode: %s" msgstr "Girilen NO geçerli değil. Seçili Görünümü barındırmayan bir sayfa yada yazı NO su girmiş olabilirsiniz. Lütfen %s kısakodunu içeren yazıya ait NO yu giriniz." -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "NO zaten bir Görünüme ait." -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "Görünüm NO" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "Sayfa başına gösterilecek kayıt sayısı" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "Resimler için Lightbox etkinleştir." -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "Sadece onaylı kayıtları göster" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "Arama gerçekleşmeden Görünüm verisini gösterme" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "Etkinleştirildiğinde arama yapıldıktan sonra Görünüm kayıtlarını gösterir." -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "Boş Alanları Gizle" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "Kullanıcı Müdahalesine İzin Ver" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "Giriş yapmış kullanıcılara kendi kayıtlarını düzenleme izni ver." -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the" " entry. Edit Entry fields will always be displayed to site administrators." msgstr "Eğer yönetici olmayan kullanıcılar tarafından oluşturulduysa \"Kayıt Düzenle\" seçeneğini göster. Bu seçenek site yöneticilerine sürekli görünür olacaktır." -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "Kayıt Silmeye İzin Ver" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "Giriş yapmış kullanıcılara, sahibi oldukları kayıtları silmelerine izin ver." -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "Yönetici olmayan kullanıcılara, sahibi oldukları kayıtlar için \"Kayıt Sil\" menüsünü görünür yap. Ayrıca yöneticiler için Kayıt Sil menüsü her zaman görünür." -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "Alana göre sırala" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "Sıralama yönü" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "Artan" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "Azalan" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "Başlangıç Tarihine Göre Sırala" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "Bu tarihten sonra gönderilen kayıtları göster. Önceki tarihler desteklenmektedir. \"-1 hafta\" yada \"-1 ay\" gibi." -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "Bitiş Tarihine Göre Sırala" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "Bu tarihten önce gönderilen kayıtları göster. Önceki tarihler desteklenmektedir. \"şimdi\" yada \"-3 gün\" gibi." -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "Özel CSS Sınıfı:" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "HTML bloğunu çevreleyen CSS sınıfı." -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "Değer Ara" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "Görünüm için varsayılan arama değeri belirle" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "Alanlarda Ara" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "Eğer Arama Değeri atandıysa, belirli bir alanda arama yapabiliriniz. Aksi takdirde tüm alanlar aranacaktır." -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "Tekil Kayıt Başlığı" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single" " Entry views." msgstr "Tekil kayıtları görüntülerken sayfanın başlığını bu ayarı kullanarak değiştirebilirsiniz. Aksi takdirde Çoklu Kayıt ve Tekil Kayıt görünümleri arasında geçiş yaptığınızda başlık aynı kalır." -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "Geri Dönüş Bağlantısı Etiketi" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "Çoklu kayıt görünümüne dönüş yapan bağlantının yazısı." @@ -1084,50 +1102,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "Boş" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "Görünür olmayan yada var olmayan bir kaydı görüntülemek istediniz." + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "Temizle" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "Sıfırla" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "Çoğalt" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "Bu Görünümü Çoğalt" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "Yeni Taslak" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "Görünümü Çoğalt" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "Yeni taslak Görünüm olarak kopyala" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "Suret oluşturacak yazı tedarik edilmedi!" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "Kopyalama yapılamadı, #%d NO lu esas Görünüm bulunamadı" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "Görünür olmayan yada var olmayan bir kaydı görüntülemek istediniz." - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "Temizle" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "Sıfırla" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1138,22 +1156,22 @@ msgstr "%s eklentisi etkinleştirilemiyor; GravityView etkin değil." msgid "The %s Extension requires GravityView Version %s or newer." msgstr "%s eklentisi en az GravityView %s sürümü yada daha yenisini gerektirmektedir." -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "Gömüldüğünde daha iyi görünecektir." -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look" " strange. Don't be concerned!" msgstr "Önizleme esnasında stil dosyası yüklenmediği için aşağıdaki içerik biraz garip görünebilir. Lütfen kaygılanmayın!" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "Gömülü Kayıt %d" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "BU kayıt %d Görünümünde ayarlandığı şekilde görüntülenecektir." @@ -1346,7 +1364,11 @@ msgstr "Arkaplanda farklı betik ve sitil dosyalarının GravityView yönetim sa msgid "GravityView Settings" msgstr "GravityView Ayarları" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "Bizi Google+ 'da takip edin" @@ -1661,37 +1683,37 @@ msgstr "Kayıt güncellendi. %sKayda Dön%s" msgid "Update" msgstr "Güncelle" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "Bu yazıyı düzenleme yetkiniz yok." -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "İzinli Dosyalar" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "Dosyaları buraya ekleyin yada" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "Dosyaları seç" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "Dosya indir" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "Dosya sil" @@ -1944,6 +1966,52 @@ msgstr "Bağlantı olarak görüntüle:" msgid "Display the uploaded files as links, rather than embedded content." msgstr "Yüklenen dosyaları gömülü içerik yerine bağlantı olarak görüntüle." +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "Kayıt bağlantı yazısı (zorunlu)" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "#{entry_id} Kayıt" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "Bağlantıdan sonra görünecek yazı yada HTML (isteğe bağlı)" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide" +" if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "Bağlantı URL:" @@ -1990,76 +2058,64 @@ msgstr "GravityView En Son Kayıtlar" msgid "Display the most recent entries for a View" msgstr "Görünüme ait en son kayıtları görüntüleyin" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "En Son Kayıtlar" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "#{entry_id} Kayıt" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "Başlık:" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "Arama yapmak için lütfen Görünüm seçiniz." -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "— Kayıt Kaynağı olacak Görünümü seçiniz —" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "Eğer Gömülüyse, Sayfa NO:" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "Gömülü bir Görünüm üzerinde arama yapmak istiyorsanız lütfen Görünümün gömülü olduğu sayfa yada yazı NO sunu giriniz." -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "Görüntülenecek kayıt sayısı:" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "Kayıt bağlantı yazısı (zorunlu)" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "Bağlantıdan sonra görünecek yazı yada HTML (isteğe bağlı)" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "Belirli bir Görünüme özel arama formu." -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "GravityView Arama" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the" " %sWidgets page%s." msgstr "Bileşeni bu ekrandan ayarlayamazsınız. Lütfen %sEklentiler sayfasına%s gidiniz." -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "Görünüm:" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "— Görünüm Seçin —" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "Aranabilir alanlar:" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "Arama Alanları" diff --git a/languages/gravityview.mo b/languages/gravityview.mo index af8933af9874e9df0d9cc06d678a87adc0d80906..d53df89c0d8d5552b505be0f639b72cd25b1a49e 100644 GIT binary patch delta 31 gcmX@ddX9BM35TJDf{~$>vGK$j1sL08;}R_<0Fi14f&c&j delta 31 gcmX@ddX9BM35S81f`NgRvBkt11sL0M;}R_<0Ff97fB*mh diff --git a/languages/gravityview.pot b/languages/gravityview.pot index 59cfb5c8c9..bd26f745c4 100644 --- a/languages/gravityview.pot +++ b/languages/gravityview.pot @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: GravityView\n" -"POT-Creation-Date: 2015-03-06 00:38-0700\n" -"PO-Revision-Date: 2015-03-06 00:39-0700\n" +"POT-Creation-Date: 2015-03-18 21:33-0700\n" +"PO-Revision-Date: 2015-03-18 21:34-0700\n" "Last-Translator: Katz Web Services, Inc. \n" "Language-Team: Zack Katz \n" "Language: en_US\n" @@ -19,15 +19,15 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: .\n" -#: gravityview.php:260 +#: gravityview.php:261 msgid "Top" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Left" msgstr "" -#: gravityview.php:261 +#: gravityview.php:262 msgid "Right" msgstr "" @@ -97,7 +97,7 @@ msgstr "" msgid "Edit" msgstr "" -#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:303 +#: includes/admin/metaboxes.php:47 includes/class-admin-views.php:313 msgid "Data Source" msgstr "" @@ -182,7 +182,7 @@ msgstr "" msgid "Single Entry" msgstr "" -#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:296 +#: includes/admin/metaboxes.php:255 includes/class-frontend-views.php:299 #: includes/extensions/edit-entry/class-edit-entry.php:224 #: includes/extensions/edit-entry/class-edit-entry.php:295 #: includes/extensions/edit-entry/class-edit-entry.php:312 @@ -262,7 +262,7 @@ msgid "" "shortcodes.%s" msgstr "" -#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:328 +#: includes/class-admin-add-shortcode.php:97 includes/widgets.php:313 msgid "Select a View" msgstr "" @@ -270,8 +270,8 @@ msgstr "" msgid "— Select a View to Insert —" msgstr "" -#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:334 -#: includes/widgets.php:568 +#: includes/class-admin-add-shortcode.php:103 includes/widgets.php:319 +#: includes/widgets.php:553 msgid "(no title)" msgstr "" @@ -280,13 +280,13 @@ msgid "Insert View" msgstr "" #: includes/class-admin-add-shortcode.php:130 -#: includes/class-admin-views.php:879 +#: includes/class-admin-views.php:897 #: includes/extensions/edit-entry/class-edit-entry.php:1440 msgid "Cancel" msgstr "" #: includes/class-admin-add-shortcode.php:176 -#: includes/class-admin-views.php:883 +#: includes/class-admin-views.php:901 msgid "Loading…" msgstr "" @@ -294,92 +294,92 @@ msgstr "" msgid "Please select a View" msgstr "" -#: includes/class-admin-approve-entries.php:55 +#: includes/class-admin-approve-entries.php:66 msgid "GravityView Fields" msgstr "" -#: includes/class-admin-approve-entries.php:56 +#: includes/class-admin-approve-entries.php:67 msgid "" "Allow administrators to approve or reject entries and users to opt-in or opt-" "out of their entries being displayed." msgstr "" -#: includes/class-admin-approve-entries.php:78 +#: includes/class-admin-approve-entries.php:89 msgid "Approve/Reject" msgstr "" -#: includes/class-admin-approve-entries.php:84 +#: includes/class-admin-approve-entries.php:95 msgid "User Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:107 +#: includes/class-admin-approve-entries.php:119 msgid "Approved? (Admin-only)" msgstr "" -#: includes/class-admin-approve-entries.php:109 +#: includes/class-admin-approve-entries.php:121 msgid "Approved?" msgstr "" -#: includes/class-admin-approve-entries.php:116 +#: includes/class-admin-approve-entries.php:128 msgid "Approved" msgstr "" -#: includes/class-admin-approve-entries.php:129 +#: includes/class-admin-approve-entries.php:141 msgid "Show Entry on Website" msgstr "" -#: includes/class-admin-approve-entries.php:131 +#: includes/class-admin-approve-entries.php:143 msgid "Opt-In" msgstr "" -#: includes/class-admin-approve-entries.php:139 +#: includes/class-admin-approve-entries.php:151 msgid "Yes, display my entry on the website" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 #, php-format msgid "%d entries" msgstr "" -#: includes/class-admin-approve-entries.php:210 +#: includes/class-admin-approve-entries.php:221 msgid "1 entry" msgstr "" -#: includes/class-admin-approve-entries.php:215 +#: includes/class-admin-approve-entries.php:226 #, php-format msgid "%s approved." msgstr "" -#: includes/class-admin-approve-entries.php:220 +#: includes/class-admin-approve-entries.php:231 #, php-format msgid "%s disapproved." msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Disapproved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:292 +#: includes/class-admin-approve-entries.php:303 msgid "Approved the Entry for GravityView" msgstr "" -#: includes/class-admin-approve-entries.php:444 +#: includes/class-admin-approve-entries.php:457 msgid "Approve" msgstr "" -#: includes/class-admin-approve-entries.php:445 +#: includes/class-admin-approve-entries.php:458 msgid "Disapprove" msgstr "" -#: includes/class-admin-approve-entries.php:447 +#: includes/class-admin-approve-entries.php:460 msgid "Entry not approved for directory viewing. Click to approve this entry." msgstr "" -#: includes/class-admin-approve-entries.php:448 +#: includes/class-admin-approve-entries.php:461 msgid "Entry approved for directory viewing. Click to disapprove this entry." msgstr "" -#: includes/class-admin-approve-entries.php:449 +#: includes/class-admin-approve-entries.php:462 msgid "Show entry in directory view?" msgstr "" @@ -418,182 +418,190 @@ msgctxt "Label in field picker for empty label" msgid "Field #%s (No Label)" msgstr "" -#: includes/class-admin-views.php:110 +#: includes/class-admin-views.php:112 msgid "Connected Views" msgstr "" -#: includes/class-admin-views.php:112 +#: includes/class-admin-views.php:114 msgid "GravityView Views using this form as a data source" msgstr "" -#: includes/class-admin-views.php:186 +#: includes/class-admin-views.php:188 msgid "CSS Merge Tags" msgstr "" -#: includes/class-admin-views.php:187 +#: includes/class-admin-views.php:189 #, php-format msgid "" "Developers: The CSS classes will be sanitized using the " "%ssanitize_title_with_dashes()%s function." msgstr "" -#: includes/class-admin-views.php:211 +#: includes/class-admin-views.php:221 msgid "Not connected." msgstr "" -#: includes/class-admin-views.php:220 +#: includes/class-admin-views.php:230 msgid "The connected form can not be found; it may no longer exist." msgstr "" -#: includes/class-admin-views.php:252 +#: includes/class-admin-views.php:262 msgid "Edit Form" msgstr "" -#: includes/class-admin-views.php:257 +#: includes/class-admin-views.php:267 msgid "Entries" msgstr "" -#: includes/class-admin-views.php:262 includes/class-settings.php:254 +#: includes/class-admin-views.php:272 includes/class-settings.php:254 #: includes/class-settings.php:255 msgid "Settings" msgstr "" -#: includes/class-admin-views.php:262 +#: includes/class-admin-views.php:272 msgid "Edit settings for this form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview Form" msgstr "" -#: includes/class-admin-views.php:267 +#: includes/class-admin-views.php:277 msgid "Preview this form" msgstr "" -#: includes/class-admin-views.php:480 +#: includes/class-admin-views.php:490 msgid "+ Add All Fields" msgstr "" -#: includes/class-admin-views.php:481 +#: includes/class-admin-views.php:491 msgid "Add all the available fields at once." msgstr "" -#: includes/class-admin-views.php:531 +#: includes/class-admin-views.php:541 #: includes/extensions/search-widget/class-search-widget.php:205 msgid "Entry ID" msgstr "" -#: includes/class-admin-views.php:533 +#: includes/class-admin-views.php:543 msgid "The unique ID of the entry." msgstr "" -#: includes/class-admin-views.php:536 +#: includes/class-admin-views.php:546 #: includes/extensions/search-widget/class-search-widget.php:204 msgid "Entry Date" msgstr "" -#: includes/class-admin-views.php:537 +#: includes/class-admin-views.php:547 msgid "The date the entry was created." msgstr "" -#: includes/class-admin-views.php:541 +#: includes/class-admin-views.php:551 msgid "Source URL" msgstr "" -#: includes/class-admin-views.php:543 +#: includes/class-admin-views.php:553 msgid "The URL of the page where the form was submitted." msgstr "" -#: includes/class-admin-views.php:546 +#: includes/class-admin-views.php:556 msgid "User IP" msgstr "" -#: includes/class-admin-views.php:548 +#: includes/class-admin-views.php:558 msgid "The IP Address of the user who created the entry." msgstr "" -#: includes/class-admin-views.php:551 +#: includes/class-admin-views.php:561 msgid "User" msgstr "" -#: includes/class-admin-views.php:553 +#: includes/class-admin-views.php:563 msgid "Details of the logged-in user who created the entry (if any)." msgstr "" -#: includes/class-admin-views.php:560 includes/default-widgets.php:198 +#: includes/class-admin-views.php:570 includes/default-widgets.php:198 #: includes/default-widgets.php:213 includes/fields/custom.php:22 msgid "Custom Content" msgstr "" -#: includes/class-admin-views.php:562 +#: includes/class-admin-views.php:572 msgid "Insert custom text or HTML." msgstr "" -#: includes/class-admin-views.php:570 +#: includes/class-admin-views.php:579 +msgid "Other Entries" +msgstr "" + +#: includes/class-admin-views.php:581 +msgid "Display other entries created by the entry creator." +msgstr "" + +#: includes/class-admin-views.php:589 msgid "Link to Entry" msgstr "" -#: includes/class-admin-views.php:571 +#: includes/class-admin-views.php:590 msgid "A dedicated link to the single entry with customizable text." msgstr "" -#: includes/class-admin-views.php:648 +#: includes/class-admin-views.php:667 msgid "Add Widget" msgstr "" -#: includes/class-admin-views.php:650 +#: includes/class-admin-views.php:669 msgid "Add Field" msgstr "" -#: includes/class-admin-views.php:731 +#: includes/class-admin-views.php:750 #, php-format msgid "\"+ %s\" or drag existing %ss here." msgstr "" -#: includes/class-admin-views.php:799 +#: includes/class-admin-views.php:818 #, php-format msgid "This View is configured using the %s View type, which is disabled." msgstr "" -#: includes/class-admin-views.php:800 +#: includes/class-admin-views.php:819 msgid "" "The data is not lost; re-activate the associated plugin and the " "configuration will re-appear." msgstr "" -#: includes/class-admin-views.php:877 +#: includes/class-admin-views.php:895 msgid "Enter View name here" msgstr "" -#: includes/class-admin-views.php:878 +#: includes/class-admin-views.php:896 msgid "Close" msgstr "" -#: includes/class-admin-views.php:880 +#: includes/class-admin-views.php:898 msgid "Continue" msgstr "" -#: includes/class-admin-views.php:881 +#: includes/class-admin-views.php:899 msgid "Ok" msgstr "" -#: includes/class-admin-views.php:882 +#: includes/class-admin-views.php:900 msgid "" "Error while creating the View for you. Check the settings or contact " "GravityView support." msgstr "" -#: includes/class-admin-views.php:884 +#: includes/class-admin-views.php:902 msgid "There was an error loading dynamic content." msgstr "" -#: includes/class-admin-views.php:885 +#: includes/class-admin-views.php:903 msgid "" "Error while adding the field. Please try again or contact GravityView " "support." msgstr "" -#: includes/class-admin-views.php:886 +#: includes/class-admin-views.php:904 msgid "" "Would you like to remove all fields in this zone? (You are seeing this " "message because you were holding down the ALT key)" @@ -635,19 +643,19 @@ msgstr "" msgid "What’s New" msgstr "" -#: includes/class-admin-welcome.php:759 +#: includes/class-admin-welcome.php:477 msgid "GravityView is brought to you by:" msgstr "" -#: includes/class-admin-welcome.php:784 +#: includes/class-admin-welcome.php:502 msgid "Contributors" msgstr "" -#: includes/class-admin-welcome.php:809 +#: includes/class-admin-welcome.php:527 msgid "Want to contribute?" msgstr "" -#: includes/class-admin-welcome.php:810 +#: includes/class-admin-welcome.php:528 #, php-format msgid "" "If you want to contribute to the code, you can %srequest access to the " @@ -755,38 +763,48 @@ msgid_plural "%s Views restored from the Trash." msgstr[0] "" msgstr[1] "" -#: includes/class-admin.php:482 +#: includes/class-admin.php:491 msgid "Dismiss" msgstr "" -#: includes/class-admin.php:516 +#: includes/class-admin.php:529 msgid "Potential Conflict" msgstr "" -#: includes/class-admin.php:517 +#: includes/class-admin.php:530 msgid "" "GravityView and Gravity Forms Directory are both active. This may cause " "problems. If you experience issues, disable the Gravity Forms Directory " "plugin." msgstr "" -#: includes/class-admin.php:542 +#: includes/class-admin.php:538 +msgid "GravityView will soon require Gravity Forms 1.9 or higher." +msgstr "" + +#: includes/class-admin.php:539 +msgid "" +"You are using an older version of Gravity Forms. Please update Gravity Forms " +"plugin to the latest version." +msgstr "" + +#: includes/class-admin.php:563 #, php-format msgid "" -"%sGravityView requires Gravity Forms Version 1.8 or newer.%s \n" +"%sGravityView requires Gravity Forms Version %s or newer.%s \n" "\n" "You're using Version %s. Please update your Gravity Forms or purchase a " "license. %sGet Gravity Forms%s - starting at $39%s%s" msgstr "" -#: includes/class-admin.php:551 +#: includes/class-admin.php:572 #, php-format msgid "" "%sGravityView requires Gravity Forms to be active. %sActivate Gravity Forms" "%s to use the GravityView plugin." msgstr "" -#: includes/class-admin.php:553 +#: includes/class-admin.php:574 #, php-format msgid "" "%sGravityView requires Gravity Forms to be installed in order to run " @@ -882,11 +900,11 @@ msgstr "" msgid "Transaction Type" msgstr "" -#: includes/class-common.php:783 includes/class-data.php:565 +#: includes/class-common.php:783 includes/class-data.php:566 msgid "Default" msgstr "" -#: includes/class-common.php:796 includes/class-data.php:566 +#: includes/class-common.php:796 includes/class-data.php:567 msgid "Date Created" msgstr "" @@ -894,26 +912,26 @@ msgstr "" msgid "Email hidden; Javascript is required." msgstr "" -#: includes/class-data.php:407 +#: includes/class-data.php:408 msgid "The ID is required." msgstr "" -#: includes/class-data.php:415 +#: includes/class-data.php:416 msgid "" "You did not enter a number. The value entered should be a number, " "representing the ID of the post or page the View is embedded on." msgstr "" -#: includes/class-data.php:418 includes/widgets.php:362 -#: includes/widgets.php:596 +#: includes/class-data.php:419 includes/widgets.php:347 +#: includes/widgets.php:581 msgid "Learn more…" msgstr "" -#: includes/class-data.php:426 +#: includes/class-data.php:427 msgid "There is no post or page with that ID." msgstr "" -#: includes/class-data.php:436 +#: includes/class-data.php:437 #, php-format msgid "" "The Post ID entered is not valid. You may have entered a post or page that " @@ -921,155 +939,155 @@ msgid "" "following shortcode: %s" msgstr "" -#: includes/class-data.php:444 +#: includes/class-data.php:445 msgid "The ID is already a View." msgstr "" -#: includes/class-data.php:496 +#: includes/class-data.php:497 msgid "View ID" msgstr "" -#: includes/class-data.php:504 +#: includes/class-data.php:505 msgid "Number of entries per page" msgstr "" -#: includes/class-data.php:512 +#: includes/class-data.php:513 msgid "Enable lightbox for images" msgstr "" -#: includes/class-data.php:520 +#: includes/class-data.php:521 msgid "Show only approved entries" msgstr "" -#: includes/class-data.php:527 +#: includes/class-data.php:528 msgid "Hide View data until search is performed" msgstr "" -#: includes/class-data.php:530 +#: includes/class-data.php:531 msgid "" "When enabled it will only show any View entries after a search is performed." msgstr "" -#: includes/class-data.php:535 +#: includes/class-data.php:536 msgid "Hide empty fields" msgstr "" -#: includes/class-data.php:542 +#: includes/class-data.php:543 msgid "Allow User Edit" msgstr "" -#: includes/class-data.php:544 +#: includes/class-data.php:545 msgid "Allow logged-in users to edit entries they created." msgstr "" -#: includes/class-data.php:546 +#: includes/class-data.php:547 msgid "" "Display \"Edit Entry\" fields to non-administrator users if they created the " "entry. Edit Entry fields will always be displayed to site administrators." msgstr "" -#: includes/class-data.php:551 +#: includes/class-data.php:552 msgid "Allow User Delete" msgstr "" -#: includes/class-data.php:553 +#: includes/class-data.php:554 msgid "Allow logged-in users to delete entries they created." msgstr "" -#: includes/class-data.php:555 +#: includes/class-data.php:556 msgid "" "Display \"Delete Entry\" fields to non-administrator users if they created " "the entry. Delete Entry fields will always be displayed to site " "administrators." msgstr "" -#: includes/class-data.php:560 +#: includes/class-data.php:561 msgid "Sort by field" msgstr "" -#: includes/class-data.php:571 +#: includes/class-data.php:572 msgid "Sort direction" msgstr "" -#: includes/class-data.php:576 +#: includes/class-data.php:577 msgid "ASC" msgstr "" -#: includes/class-data.php:577 +#: includes/class-data.php:578 msgid "DESC" msgstr "" -#: includes/class-data.php:582 +#: includes/class-data.php:583 msgid "Enable sorting by column" msgstr "" -#: includes/class-data.php:583 +#: includes/class-data.php:584 msgid "Column Sorting" msgstr "" -#: includes/class-data.php:592 +#: includes/class-data.php:593 msgid "Filter by Start Date" msgstr "" -#: includes/class-data.php:594 +#: includes/class-data.php:595 msgid "" "Show entries submitted after this date. Supports relative dates, such as " "\"-1 week\" or \"-1 month\"." msgstr "" -#: includes/class-data.php:601 +#: includes/class-data.php:602 msgid "Filter by End Date" msgstr "" -#: includes/class-data.php:603 +#: includes/class-data.php:604 msgid "" "Show entries submitted before this date. Supports relative dates, such as " "\"now\" or \"-3 days\"." msgstr "" -#: includes/class-data.php:610 +#: includes/class-data.php:611 msgid "CSS Class" msgstr "" -#: includes/class-data.php:611 +#: includes/class-data.php:612 msgid "CSS class to add to the wrapping HTML container." msgstr "" -#: includes/class-data.php:618 +#: includes/class-data.php:619 msgid "Search Value" msgstr "" -#: includes/class-data.php:619 +#: includes/class-data.php:620 msgid "Define a default search value for the View" msgstr "" -#: includes/class-data.php:626 +#: includes/class-data.php:627 #: includes/extensions/search-widget/class-search-widget.php:133 msgid "Search Field" msgstr "" -#: includes/class-data.php:627 +#: includes/class-data.php:628 msgid "" "If Search Value is set, you can define a specific field to search in. " "Otherwise, all fields will be searched." msgstr "" -#: includes/class-data.php:634 +#: includes/class-data.php:635 msgid "Single Entry Title" msgstr "" -#: includes/class-data.php:636 +#: includes/class-data.php:637 msgid "" "When viewing a single entry, change the title of the page to this setting. " "Otherwise, the title will not change between the Multiple Entries and Single " "Entry views." msgstr "" -#: includes/class-data.php:643 +#: includes/class-data.php:644 msgid "Back Link Label" msgstr "" -#: includes/class-data.php:645 +#: includes/class-data.php:646 msgid "The text of the link that returns to the multiple entries view." msgstr "" @@ -1090,50 +1108,50 @@ msgctxt "Debugging output data is empty." msgid "Empty" msgstr "" -#: includes/class-duplicate-view.php:221 +#: includes/class-frontend-views.php:620 +msgid "" +"You have attempted to view an entry that is not visible or may not exist." +msgstr "" + +#: includes/class-frontend-views.php:1053 +msgctxt "Clear all data from the form" +msgid "Clear" +msgstr "" + +#: includes/class-frontend-views.php:1054 +msgctxt "Reset the search form to the state that existed on page load" +msgid "Reset" +msgstr "" + +#: includes/class-gravityview-admin-duplicate-view.php:221 msgid "Clone" msgstr "" -#: includes/class-duplicate-view.php:222 +#: includes/class-gravityview-admin-duplicate-view.php:222 msgid "Clone this View" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "New Draft" msgstr "" -#: includes/class-duplicate-view.php:227 +#: includes/class-gravityview-admin-duplicate-view.php:227 msgid "Clone View" msgstr "" -#: includes/class-duplicate-view.php:228 +#: includes/class-gravityview-admin-duplicate-view.php:228 msgid "Copy as a new draft View" msgstr "" -#: includes/class-duplicate-view.php:296 +#: includes/class-gravityview-admin-duplicate-view.php:296 msgid "No post to duplicate has been supplied!" msgstr "" -#: includes/class-duplicate-view.php:319 +#: includes/class-gravityview-admin-duplicate-view.php:319 #, php-format msgid "Copy creation failed, could not find original View with ID #%d" msgstr "" -#: includes/class-frontend-views.php:615 -msgid "" -"You have attempted to view an entry that is not visible or may not exist." -msgstr "" - -#: includes/class-frontend-views.php:1042 -msgctxt "Clear all data from the form" -msgid "Clear" -msgstr "" - -#: includes/class-frontend-views.php:1043 -msgctxt "Reset the search form to the state that existed on page load" -msgid "Reset" -msgstr "" - #: includes/class-gravityview-extension.php:175 #, php-format msgid "Could not activate the %s Extension; GravityView is not active." @@ -1144,22 +1162,22 @@ msgstr "" msgid "The %s Extension requires GravityView Version %s or newer." msgstr "" -#: includes/class-oembed.php:197 +#: includes/class-oembed.php:199 msgid "This will look better when it is embedded." msgstr "" -#: includes/class-oembed.php:198 +#: includes/class-oembed.php:200 msgid "" "Styles don't get loaded when being previewed, so the content below will look " "strange. Don't be concerned!" msgstr "" -#: includes/class-oembed.php:248 +#: includes/class-oembed.php:250 #, php-format msgid "Embed Entry %d" msgstr "" -#: includes/class-oembed.php:250 +#: includes/class-oembed.php:252 #, php-format msgid "This entry will be displayed as it is configured in View %d" msgstr "" @@ -1352,7 +1370,11 @@ msgstr "" msgid "GravityView Settings" msgstr "" -#: includes/class-settings.php:320 +#: includes/class-settings.php:258 +msgid "Thank you." +msgstr "" + +#: includes/class-settings.php:323 msgid "Follow us on Google+" msgstr "" @@ -1667,37 +1689,37 @@ msgstr "" msgid "Update" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:32 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:36 msgid "You don’t have permission to edit this post." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:35 -#, php-format -msgid "You can %sedit this value%s from the post page." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:45 +msgid "This field is not editable; the post no longer exists." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:40 -msgid "This field is not editable; the post no longer exists." +#: includes/extensions/edit-entry/class-gv-gfcommon.php:48 +#, php-format +msgid "You can %sedit this value%s from the post page." msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:276 -#: includes/extensions/edit-entry/class-gv-gfcommon.php:295 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:291 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:310 msgid "Allowed Files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Drop files here or" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:308 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:323 msgid "Select files" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Download file" msgstr "" -#: includes/extensions/edit-entry/class-gv-gfcommon.php:334 +#: includes/extensions/edit-entry/class-gv-gfcommon.php:349 msgid "Delete file" msgstr "" @@ -1950,6 +1972,52 @@ msgstr "" msgid "Display the uploaded files as links, rather than embedded content." msgstr "" +#: includes/fields/other-entries.php:29 includes/widgets.php:360 +msgid "Entry link text (required)" +msgstr "" + +#: includes/fields/other-entries.php:30 includes/widgets.php:266 +msgid "Entry #{entry_id}" +msgstr "" + +#: includes/fields/other-entries.php:36 includes/widgets.php:367 +msgid "Text or HTML to display after the link (optional)" +msgstr "" + +#: includes/fields/other-entries.php:37 +msgid "This content will be displayed below each entry link." +msgstr "" + +#: includes/fields/other-entries.php:45 +msgid "Entries to Display" +msgstr "" + +#: includes/fields/other-entries.php:46 +msgid "What is the maximum number of entries that should be shown?" +msgstr "" + +#: includes/fields/other-entries.php:53 +msgid "Hide if no entries" +msgstr "" + +#: includes/fields/other-entries.php:54 +msgid "Don't display this field if the entry creator has no other entries" +msgstr "" + +#: includes/fields/other-entries.php:60 +msgid "No Entries Text" +msgstr "" + +#: includes/fields/other-entries.php:61 +msgid "" +"The text that is shown if the entry creator has no other entries (and \"Hide " +"if no entries\" is disabled)." +msgstr "" + +#: includes/fields/other-entries.php:62 +msgid "This user has no other entries." +msgstr "" + #: includes/fields/source-url.php:22 msgid "Link to URL:" msgstr "" @@ -1996,76 +2064,64 @@ msgstr "" msgid "Display the most recent entries for a View" msgstr "" -#: includes/widgets.php:277 +#: includes/widgets.php:262 msgid "Recent Entries" msgstr "" -#: includes/widgets.php:281 -msgid "Entry #{entry_id}" -msgstr "" - -#: includes/widgets.php:291 includes/widgets.php:545 +#: includes/widgets.php:276 includes/widgets.php:530 msgid "Title:" msgstr "" -#: includes/widgets.php:320 includes/widgets.php:555 +#: includes/widgets.php:305 includes/widgets.php:540 msgid "Please select a View to search." msgstr "" -#: includes/widgets.php:330 +#: includes/widgets.php:315 msgid "— Select a View as Entries Source —" msgstr "" -#: includes/widgets.php:358 includes/widgets.php:592 +#: includes/widgets.php:343 includes/widgets.php:577 msgid "If Embedded, Page ID:" msgstr "" -#: includes/widgets.php:361 includes/widgets.php:595 +#: includes/widgets.php:346 includes/widgets.php:580 msgid "" "To have a search performed on an embedded View, enter the ID of the post or " "page where the View is embedded." msgstr "" -#: includes/widgets.php:368 +#: includes/widgets.php:353 msgid "Number of entries to show:" msgstr "" -#: includes/widgets.php:375 -msgid "Entry link text (required)" -msgstr "" - -#: includes/widgets.php:382 -msgid "Text or HTML to display after the link (optional)" -msgstr "" - -#: includes/widgets.php:410 +#: includes/widgets.php:395 msgid "A search form for a specific GravityView." msgstr "" -#: includes/widgets.php:417 +#: includes/widgets.php:402 msgid "GravityView Search" msgstr "" -#: includes/widgets.php:513 +#: includes/widgets.php:498 #, php-format msgid "" "This widget is not configurable from this screen. Please configure it on the " "%sWidgets page%s." msgstr "" -#: includes/widgets.php:563 +#: includes/widgets.php:548 msgid "View:" msgstr "" -#: includes/widgets.php:565 +#: includes/widgets.php:550 msgid "— Select a View —" msgstr "" -#: includes/widgets.php:604 +#: includes/widgets.php:589 msgid "Searchable fields:" msgstr "" -#: includes/widgets.php:605 +#: includes/widgets.php:590 msgid "Search Fields" msgstr "" From 7e512fc2f53a78aad581c99be0ba36b6cc2adfad Mon Sep 17 00:00:00 2001 From: Zack Katz Date: Wed, 18 Mar 2015 21:39:03 -0600 Subject: [PATCH 32/32] Docblock --- includes/fields/other-entries.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/fields/other-entries.php b/includes/fields/other-entries.php index 54574c9b87..c9d30dd2ea 100644 --- a/includes/fields/other-entries.php +++ b/includes/fields/other-entries.php @@ -2,6 +2,8 @@ /** * A field that displays other entries by the entry_creator for the same View in a list format + * + * @since 1.7.2 */ class GravityView_Field_Other_Entries extends GravityView_Field { @@ -9,6 +11,7 @@ class GravityView_Field_Other_Entries extends GravityView_Field { /** * @inheritDoc + * @since 1.7.2 */ function field_options( $field_options, $template_id, $field_id, $context, $input_type ) {