Changeset 1423096
- Timestamp:
- 05/24/2016 11:59:14 AM (10 years ago)
- Location:
- playbuzz/trunk
- Files:
-
- 8 edited
-
css/admin.css (modified) (4 diffs)
-
index.php (modified) (1 diff)
-
js/playbuzz-tinymce.js (modified) (23 diffs)
-
lang/playbuzz-he_IL.mo (modified) (previous)
-
lang/playbuzz-he_IL.po (modified) (24 diffs)
-
lang/playbuzz.pot (modified) (24 diffs)
-
readme.txt (modified) (5 diffs)
-
scripts-styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
playbuzz/trunk/css/admin.css
r1195284 r1423096 957 957 border: 1px solid #009CFF; 958 958 color: #fff; 959 text-shadow: none; 959 960 } 960 961 #playbuzz_search_results .playbuzz_grid_view div.playbuzz_present_item_buttons .button-primary:hover, … … 963 964 border: 1px solid #fff; 964 965 color: #009CFF; 966 text-shadow: none; 965 967 } 966 968 #playbuzz_search_results .playbuzz_grid_view div.playbuzz_present_item_buttons .button-secondary { … … 1081 1083 border: 1px solid #009CFF; 1082 1084 color: #009CFF; 1085 text-shadow: none; 1083 1086 } 1084 1087 #playbuzz_search_results .playbuzz_list_view div.playbuzz_present_item_buttons .button-primary:hover, … … 1087 1090 border: 1px solid #009CFF; 1088 1091 color: #fff; 1092 text-shadow: none; 1089 1093 } 1090 1094 #playbuzz_search_results .playbuzz_list_view div.playbuzz_present_item_buttons .button-secondary { -
playbuzz/trunk/index.php
r1195284 r1423096 4 4 Plugin URI: https://www.playbuzz.com/ 5 5 Description: Embed customized playful content from Playbuzz.com into your WordPress site 6 Version: 0.9. 06 Version: 0.9.1 7 7 Author: Playbuzz 8 8 Author URI: https://www.playbuzz.com/ -
playbuzz/trunk/js/playbuzz-tinymce.js
r1195284 r1423096 46 46 function playbuzz_item_type( type ) { 47 47 48 switch( type ) { 49 case "TestYourself" : name = translation.personality_quiz; break; 50 case "List" : name = translation.list; break; 51 case "multipleChoice" : name = translation.trivia; break; 52 case "Poll" : name = translation.poll; break; 53 case "RankList" : name = translation.ranked_list; break; 54 case "Gallery" : name = translation.gallery_quiz; break; 55 default : name = ""; break; 48 switch( type && type.toLowerCase() ) { 49 case "personality-quiz" : 50 case "testyourself" : name = translation.personality_quiz; break; 51 case "list" : name = translation.list; break; 52 case "trivia" : 53 case "multiplechoice" : name = translation.trivia; break; 54 case "poll" : 55 case "playbuzzpoll" : name = translation.poll; break; 56 case "ranked-list" : 57 case "ranklist" : name = translation.ranked_list; break; 58 case "gallery-quiz" : 59 case "gallery" : name = translation.gallery_quiz; break; 60 case "flip-cards" : 61 case "reveal" : name = translation.flip_cards; break; 62 case "swiper" : name = translation.swiper; break; 63 case "countdown" : name = translation.countdown; break; 64 case "video-snaps" : 65 case "videosnaps" : name = translation.video_snaps; break; 66 default : name = ""; break; 56 67 } 57 68 return name; … … 132 143 (jQuery)("<select></select>").attr("name", "playbuzz_search_type").attr("id", "playbuzz_search_type").addClass("playbuzz_search_type").appendTo(".playbuzz_search_fields").change( function(){ playbuzz_show_screen(); } ); 133 144 (jQuery)("<option></option>").attr("value", "" ).appendTo(".playbuzz_search_type").text( translation.all_types ); 134 (jQuery)("<option></option>").attr("value", "List" ).appendTo(".playbuzz_search_type").text( translation.list ); 135 (jQuery)("<option></option>").attr("value", "TestYourself" ).appendTo(".playbuzz_search_type").text( translation.personality_quiz ); 136 (jQuery)("<option></option>").attr("value", "Poll" ).appendTo(".playbuzz_search_type").text( translation.poll ); 137 (jQuery)("<option></option>").attr("value", "RankList" ).appendTo(".playbuzz_search_type").text( translation.ranked_list ); 138 (jQuery)("<option></option>").attr("value", "multipleChoice" ).appendTo(".playbuzz_search_type").text( translation.trivia ); 139 (jQuery)("<option></option>").attr("value", "Gallery" ).appendTo(".playbuzz_search_type").text( translation.gallery_quiz ); 145 (jQuery)("<option></option>").attr("value", "list" ).appendTo(".playbuzz_search_type").text( translation.list ); 146 (jQuery)("<option></option>").attr("value", "personality-quiz" ).appendTo(".playbuzz_search_type").text( translation.personality_quiz ); 147 (jQuery)("<option></option>").attr("value", "poll" ).appendTo(".playbuzz_search_type").text( translation.poll ); 148 (jQuery)("<option></option>").attr("value", "ranked-list" ).appendTo(".playbuzz_search_type").text( translation.ranked_list ); 149 (jQuery)("<option></option>").attr("value", "trivia" ).appendTo(".playbuzz_search_type").text( translation.trivia ); 150 (jQuery)("<option></option>").attr("value", "gallery-quiz" ).appendTo(".playbuzz_search_type").text( translation.gallery_quiz ); 151 (jQuery)("<option></option>").attr("value", "flip-cards" ).appendTo(".playbuzz_search_type").text( translation.flip_cards ); 152 (jQuery)("<option></option>").attr("value", "swiper" ).appendTo(".playbuzz_search_type").text( translation.swiper ); 153 (jQuery)("<option></option>").attr("value", "countdown" ).appendTo(".playbuzz_search_type").text( translation.countdown ); 154 (jQuery)("<option></option>").attr("value", "video-snaps" ).appendTo(".playbuzz_search_type").text( translation.video_snaps ); 140 155 (jQuery)("<label></label>" ).attr("for", "playbuzz_search_sort").addClass("playbuzz_search_label").appendTo(".playbuzz_search_fields").text( translation.sort_by ); 141 156 (jQuery)("<select></select>").attr("name", "playbuzz_search_sort").attr("id", "playbuzz_search_sort").addClass("playbuzz_search_sort").appendTo(".playbuzz_search_fields").change( function(){ playbuzz_show_screen(); } ); 142 157 (jQuery)("<option></option>").attr("value", "" ).appendTo(".playbuzz_search_sort").text( translation.relevance ); 143 (jQuery)("<option></option>").attr("value", "view s").appendTo(".playbuzz_search_sort").text( translation.views );144 (jQuery)("<option></option>").attr("value", "publish _date").appendTo(".playbuzz_search_sort").text( translation.date );158 (jQuery)("<option></option>").attr("value", "viewCount" ).appendTo(".playbuzz_search_sort").text( translation.views ); 159 (jQuery)("<option></option>").attr("value", "publishDate" ).appendTo(".playbuzz_search_sort").text( translation.date ); 145 160 (jQuery)("<div></div>").attr("id", "playbuzz_search_for").appendTo("#playbuzz_search_sub_header"); 146 161 (jQuery)("<p></p>").appendTo("#playbuzz_search_for").text( translation.discover_playful_content ); … … 308 323 .addClass("playbuzz_present_item_thumb") 309 324 .append( 310 (jQuery)("<img>",{ src:val.im g_medium } )325 (jQuery)("<img>",{ src:val.imageMedium } ) 311 326 ) 312 327 ) … … 326 341 .append ( 327 342 (jQuery)("<span></span>" ) 328 .text( val.c reator_name )343 .text( val.channelName ) 329 344 ) 330 .append( translation.on + " " + item_date( val.published_date ) )345 .append( " " + translation.on + " " + item_date( val.publishDate ) ) 331 346 ) 332 347 ) … … 337 352 .append( 338 353 (jQuery)("<span></span>") 339 .text( playbuzz_item_type( val. item_type) )354 .text( playbuzz_item_type( val.format ) ) 340 355 ) 341 356 ) … … 346 361 .append( 347 362 (jQuery)("<span></span>") 348 .text( val. total_views)363 .text( val.viewCount ) 349 364 ) 350 365 ) … … 357 372 .addClass("button button-secondary") 358 373 .attr("target", "_blank") 359 .attr("href", val.playbuzz _url)374 .attr("href", val.playbuzzUrl) 360 375 .text( translation.view ) 361 376 ) … … 366 381 .attr("value", translation.embed) 367 382 .click( function() { 368 return playbuzz_shortcode_embed( val.playbuzz _url )383 return playbuzz_shortcode_embed( val.playbuzzUrl ) 369 384 }) 370 385 ) … … 470 485 // Load items using the Playbuzz API 471 486 (jQuery).ajax({ 472 url : "http s://restapi.playbuzz.com/v1/items/?",487 url : "http://rest-api-v2.playbuzz.com/v2/items", 473 488 type : "get", 474 489 dataType : "json", 475 490 data : { 476 system_tags : "EditorsPick_Featured",477 item_type: (jQuery)("#playbuzz_search_type").val(),491 internalTags : "EditorsPick_Featured", 492 format : (jQuery)("#playbuzz_search_type").val(), 478 493 sort : (jQuery)("#playbuzz_search_sort").val(), 479 494 size : items_per_page, … … 489 504 490 505 // Set variables 491 var total_items = data. items.total,506 var total_items = data.payload.totalItems, 492 507 total_pages = ( ( total_items >= items_per_page ) ? Math.ceil(total_items / items_per_page) : 1 ), 493 508 results_pages = ( ( current_page > 1 ) ? " <span class='playbuzz_search_title_pagination'>(" + translation.page + " " + current_page + " / " + total_pages + ")" : "" ); 494 509 495 510 // Data output 496 if ( data.items.data.length> 0 ) {511 if ( total_items > 0 ) { 497 512 // Show Results 498 playbuzz_search_results( results_layout, data. items.data, results_title, results_pages );513 playbuzz_search_results( results_layout, data.payload.items, results_title, results_pages ); 499 514 // Pagination 500 515 if ( total_items > items_per_page ) { … … 527 542 // Load items using the Playbuzz API 528 543 (jQuery).ajax({ 529 url : "http s://restapi.playbuzz.com/v1/items/?",544 url : "http://rest-api-v2.playbuzz.com/v2/items", 530 545 type : "get", 531 546 dataType : "json", 532 547 data : { 533 548 q : (jQuery)("#playbuzz_search").val(), 534 item_type: (jQuery)("#playbuzz_search_type").val(),549 format : (jQuery)("#playbuzz_search_type").val(), 535 550 sort : (jQuery)("#playbuzz_search_sort").val(), 536 551 size : items_per_page, … … 546 561 547 562 // Set variables 548 var total_items = data. items.total,563 var total_items = data.payload.totalItems, 549 564 total_pages = ( ( total_items >= items_per_page ) ? Math.ceil(total_items / items_per_page) : 1 ), 550 565 results_pages = ( ( current_page > 1 ) ? " <span class='playbuzz_search_title_pagination'>(" + translation.page + " " + current_page + " / " + total_pages + ")" : "" ); 551 566 552 567 // Data output 553 if ( data.items.data.length> 0 ) {568 if ( total_items > 0 ) { 554 569 // Show Results 555 playbuzz_search_results( results_layout, data. items.data, results_title, results_pages );570 playbuzz_search_results( results_layout, data.payload.items, results_title, results_pages ); 556 571 // Pagination 557 572 if ( total_items > items_per_page ) { … … 590 605 // Load items using the Playbuzz API 591 606 (jQuery).ajax({ 592 url : "http s://restapi.playbuzz.com/v1/items/?",607 url : "http://rest-api-v2.playbuzz.com/v2/items", 593 608 type : "get", 594 609 dataType : "json", 595 610 data : { 596 item_type: (jQuery)("#playbuzz_search_type").val(),611 format : (jQuery)("#playbuzz_search_type").val(), 597 612 sort : (jQuery)("#playbuzz_search_sort").val(), 598 613 size : items_per_page, 599 614 from : (current_page*items_per_page)-items_per_page, 600 creator_name_seo : site_settings.pb_user, 601 moderation : false, 602 language : 'all' 615 channelAlias : site_settings.pb_user, 616 moderation : false 603 617 }, 604 618 error : function( data ) { … … 611 625 612 626 // Set variables 613 var total_items = data. items.total,627 var total_items = data.payload.totalItems, 614 628 total_pages = ( ( total_items >= items_per_page ) ? Math.ceil(total_items / items_per_page) : 1 ), 615 629 results_pages = ( " <span class='playbuzz_search_title_pagination'>(" + total_items + " " + translation.items + ")" ), 616 630 change_user = ( "<a href='options-general.php?page=playbuzz&tab=embed' target='_blank' class='playbuzz_change_username_link'>" + translation.change_user + "</a>" ); 617 create_but oon = ( "<div class='playbuzz_create_button'><a href='https://www.playbuzz.com/create' target='_blank'>" + translation.create_your_own + "</a></div>")631 create_button = ( "<div class='playbuzz_create_button'><a href='https://www.playbuzz.com/create' target='_blank'>" + translation.create_your_own + "</a></div>") 618 632 619 633 // Data output 620 if ( data. items.data.length> 0 ) {634 if ( data.payload.currentItemCount > 0 ) { 621 635 // Show Results 622 playbuzz_search_results( results_layout, data. items.data, results_title, results_pages+change_user );636 playbuzz_search_results( results_layout, data.payload.items, results_title, results_pages+change_user ); 623 637 // Pagination 624 638 if ( total_items > items_per_page ) { … … 627 641 } else { 628 642 // No Search Results 629 playbuzz_popup_message( results_title+results_pages+change_user, translation.you_dont_have_any_items_yet, translation.go_to_playbuzz_to_create_your_own_playful_content+create_but oon );643 playbuzz_popup_message( results_title+results_pages+change_user, translation.you_dont_have_any_items_yet, translation.go_to_playbuzz_to_create_your_own_playful_content+create_button ); 630 644 } 631 645 … … 657 671 // Load items using the Playbuzz API 658 672 (jQuery).ajax({ 659 url : "http s://restapi.playbuzz.com/v1/items/?",673 url : "http://rest-api-v2.playbuzz.com/v2/items", 660 674 type : "get", 661 675 dataType : "json", 662 676 data : { 663 677 q : (jQuery)("#playbuzz_search").val(), 664 item_type: (jQuery)("#playbuzz_search_type").val(),678 format : (jQuery)("#playbuzz_search_type").val(), 665 679 sort : (jQuery)("#playbuzz_search_sort").val(), 666 680 size : items_per_page, 667 681 from : (current_page*items_per_page)-items_per_page, 668 creator_name_seo : site_settings.pb_user, 669 moderation : false, 670 language : 'all' 682 channelAlias : site_settings.pb_user, 683 moderation : false 671 684 }, 672 685 error : function( data ) { … … 679 692 680 693 // Set variables 681 var total_items = data. items.total,694 var total_items = data.payload.totalItems, 682 695 total_pages = ( ( total_items >= items_per_page ) ? Math.ceil(total_items / items_per_page) : 1 ), 683 696 results_pages = ( ( current_page > 1 ) ? " <span class='playbuzz_search_title_pagination'>(" + translation.page + " " + current_page + " / " + total_pages + ")" : "" ); 684 697 685 698 // Data output 686 if ( data. items.data.length > 0 ) {699 if ( data.payload.items.length > 0 ) { 687 700 // Show Results 688 playbuzz_search_results( results_layout, data. items.data, results_title, results_pages );701 playbuzz_search_results( results_layout, data.payload.items, results_title, results_pages ); 689 702 // Pagination 690 703 if ( total_items > items_per_page ) { … … 758 771 // Get Item info 759 772 (jQuery).ajax({ 760 url : "http s://restapi.playbuzz.com/v1/items/?size=1",773 url : "http://rest-api-v2.playbuzz.com/v2/items", 761 774 type : "get", 762 775 dataType : "json", 763 776 data : { 764 creator_name_seo : creatorName, 765 item_name_seo : gameName, 766 moderation : false, 767 language : 'all' 777 size : 1, 778 alias : creatorName + "/" + gameName, 779 moderation : false 768 780 }, 769 781 success : function( data ) { 770 782 771 783 // Data output 772 if ( data.items.total > 0 ) { 784 if ( data.payload.totalItems > 0 ) { 785 786 var item = data.payload.items[0]; 773 787 774 788 // Set item image 775 789 (jQuery)(tinyMCE.activeEditor.dom.doc.body) 776 790 .find("#playbuzz_placeholder_" + id) 777 .attr("src", data.items.data[0].img_large);791 .attr("src", item.imageLarge); 778 792 779 793 // Set item info … … 785 799 (jQuery)("<p></p>") 786 800 .addClass("wp_playbuzz_title") 787 .text( data.items.data[0].title )801 .text( item.title ) 788 802 ) 789 803 .append( … … 794 808 (jQuery)("<span></span>" ) 795 809 .addClass("wp_playbuzz_author") 796 .text( data.items.data[0].creator_name )810 .text( item.channelName ) 797 811 ) 798 .append( translation.on + " " + item_date( data.items.data[0].published_date) )812 .append( " " + translation.on + " " + item_date( item.publishDate) ) 799 813 ); 800 814 … … 912 926 // Item Preview 913 927 (jQuery).ajax({ 914 url : "http s://restapi.playbuzz.com/v1/items/?size=1",928 url : "http://rest-api-v2.playbuzz.com/v2/items", 915 929 type : "get", 916 930 dataType : "json", 917 931 data : { 918 creator_name_seo : creatorName, 919 item_name_seo : gameName, 920 moderation : false, 921 language : 'all' 932 size : 1, 933 alias : creatorName + "/" + gameName, 934 moderation : false 922 935 }, 923 936 error : function( data ) { … … 929 942 success : function( data ) { 930 943 931 if ( data.items.total > 0 ) { 944 if ( data.payload.items.length > 0 ) { 945 946 var item = data.payload.items[0]; 932 947 933 948 // Create preview … … 946 961 // Add thumb 947 962 (jQuery)("<p></p>").addClass("playbuzz_item_thumb").appendTo("td.playbuzz_item_thumb"); 948 (jQuery)("<img>").attr("src", data.items.data[0].img_large ).appendTo("p.playbuzz_item_thumb");963 (jQuery)("<img>").attr("src", item.imageLarge ).appendTo("p.playbuzz_item_thumb"); 949 964 950 965 // Add info 951 (jQuery)("<p></p>").addClass("playbuzz_item_title").appendTo("td.playbuzz_item_info").text( data.items.data[0].title );966 (jQuery)("<p></p>").addClass("playbuzz_item_title").appendTo("td.playbuzz_item_info").text( item.title ); 952 967 (jQuery)("<p></p>").addClass("playbuzz_item_meta").appendTo("td.playbuzz_item_info").text( translation.created_by + " ").append( 953 (jQuery)("<span></span>" ).text( data.items.data[0].creator_name )954 ).append( translation.on + " " + item_date( data.items.data[0].published_date ) );955 (jQuery)("<p></p>").addClass("playbuzz_item_desc").appendTo("td.playbuzz_item_info").text( data.items.data[0].description );968 (jQuery)("<span></span>" ).text( item.channelName ) 969 ).append( translation.on + " " + item_date( item.publishDate ) ); 970 (jQuery)("<p></p>").addClass("playbuzz_item_desc").appendTo("td.playbuzz_item_info").text( item.description ); 956 971 (jQuery)("<p></p>").addClass("playbuzz_item_view_type_link").appendTo("td.playbuzz_item_info"); 957 (jQuery)("<span></span>").addClass("playbuzz_item_views").appendTo("p.playbuzz_item_view_type_link").text( data.items.data[0].total_views);958 (jQuery)("<span></span>").addClass("playbuzz_item_type" ).appendTo("p.playbuzz_item_view_type_link").text( playbuzz_item_type( data.items.data[0].item_type) );959 (jQuery)("<span></span>").addClass("playbuzz_item_link" ).appendTo("p.playbuzz_item_view_type_link") .text( data.items.data[0].preview_item );960 (jQuery)("<a></a>").attr("target", "_blank").attr("href", data.items.data[0].playbuzz_url ).appendTo(".playbuzz_item_link").text( translation.preview_item );972 (jQuery)("<span></span>").addClass("playbuzz_item_views").appendTo("p.playbuzz_item_view_type_link").text( item.viewCount ); 973 (jQuery)("<span></span>").addClass("playbuzz_item_type" ).appendTo("p.playbuzz_item_view_type_link").text( playbuzz_item_type( item.format ) ); 974 (jQuery)("<span></span>").addClass("playbuzz_item_link" ).appendTo("p.playbuzz_item_view_type_link"); 975 (jQuery)("<a></a>").attr("target", "_blank").attr("href", item.playbuzzUrl ).appendTo(".playbuzz_item_link").text( translation.preview_item ); 961 976 962 977 } -
playbuzz/trunk/lang/playbuzz-he_IL.po
r1195289 r1423096 2 2 msgstr "" 3 3 "Project-Id-Version: Playbuzz\n" 4 "Report-Msgid-Bugs-To: http s://wordpress.org/support/plugin/playbuzz\n"5 "POT-Creation-Date: 2015-0 7-09 11:53+0300\n"6 "PO-Revision-Date: 2015-0 7-09 11:53+0300\n"4 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/playbuzz\n" 5 "POT-Creation-Date: 2015-05-05 10:15:09+00:00\n" 6 "PO-Revision-Date: 2015-05-05 13:18+0200\n" 7 7 "Last-Translator: Rami Y <r_a_m_i@hotmail.com>\n" 8 8 "Language-Team: Playbuzz <publishers@playbuzz.com>\n" … … 12 12 "Content-Transfer-Encoding: 8bit\n" 13 13 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 "X-Generator: Poedit 1. 8.2\n"14 "X-Generator: Poedit 1.7.6\n" 15 15 "X-Poedit-SourceCharset: UTF-8\n" 16 16 "X-Poedit-Basepath: .\n" … … 21 21 #. Plugin Name of the plugin/theme 22 22 #. Author of the plugin/theme 23 #: admin.php:1 04 admin.php:105 scripts-styles.php:6423 #: admin.php:156 admin.php:256 24 24 msgid "Playbuzz" 25 25 msgstr "פלייבאז" 26 26 27 #: admin.php:128 27 #: admin.php:157 28 msgid "Playbuzz Content" 29 msgstr "תכנים מפלייבאז" 30 31 #: admin.php:158 admin.php:351 32 msgid "My Items" 33 msgstr "הפריטים שלי" 34 35 #: admin.php:159 36 msgid "+ Create Your Own" 37 msgstr "יצירת פריט חדש" 38 39 #: admin.php:160 40 msgid "Search Term" 41 msgstr "מילות חיפוש" 42 43 #: admin.php:161 44 msgid "Search my items" 45 msgstr "חיפוש בפריטים שלי" 46 47 #: admin.php:162 48 msgid "Results for" 49 msgstr "תוצאות חיפוש עבור" 50 51 #: admin.php:163 52 msgid "No results found" 53 msgstr "לא נמצאו תוצאות" 54 55 #: admin.php:164 56 msgid "Please try again with a different search." 57 msgstr "יש לנסות שנית עם מילות חיפוש חלופיות." 58 59 #: admin.php:165 60 msgid "Change User" 61 msgstr "החלפת משתמש" 62 63 #: admin.php:166 64 msgid "Server error" 65 msgstr "שגיאת שרת" 66 67 #: admin.php:167 68 msgid "Please try again in a few minutes." 69 msgstr "יש לנסות שנית בעוד מספר דקות." 70 71 #: admin.php:168 72 msgid "No user" 73 msgstr "לא הוגדר משתמש" 74 75 #: admin.php:169 76 msgid "Set User" 77 msgstr "הגדרת משתמש" 78 79 #: admin.php:170 80 msgid "" 81 "Go to the <a href=\"options-general.php?page=playbuzz&tab=embed\" target=" 82 "\"_blank\">Settings</a> and set your Playbuzz.com username." 83 msgstr "" 84 "יש לגשת למסך ה<a href=\"options-general.php?page=playbuzz&tab=embed\" target=" 85 "\"_blank\">הגדרות</a> כדי להגדיר את המשתמש שלך באתר Playbuzz.com." 86 87 #: admin.php:171 88 msgid "You don't have any items (yet!)." 89 msgstr "אין לך פריטים (עדיין!)" 90 91 #: admin.php:172 92 msgid "" 93 "Go to <a href=\"https://www.playbuzz.com/\" target=\"_blank\">Playbuzz.com</" 94 "a> to create your own playful content and embed on your site." 95 msgstr "" 96 "ניתן ליצור תכנים ויראליים חדשים באתר <a href=\"https://www.playbuzz.com/\" " 97 "target=\"_blank\">Playbuzz.com</a> ולהטמיע אותם באתר." 98 99 #: admin.php:173 100 msgid "page" 101 msgstr "עמוד" 102 103 #: admin.php:174 104 msgid "Jan" 105 msgstr "ינואר" 106 107 #: admin.php:175 108 msgid "Feb" 109 msgstr "פברואר" 110 111 #: admin.php:176 112 msgid "Mar" 113 msgstr "מרץ" 114 115 #: admin.php:177 116 msgid "Apr" 117 msgstr "אפריל" 118 119 #: admin.php:178 120 msgid "May" 121 msgstr "מאי" 122 123 #: admin.php:179 124 msgid "Jun" 125 msgstr "יוני" 126 127 #: admin.php:180 128 msgid "Jul" 129 msgstr "יולי" 130 131 #: admin.php:181 132 msgid "Aug" 133 msgstr "אוגוסט" 134 135 #: admin.php:182 136 msgid "Sep" 137 msgstr "ספטמבר" 138 139 #: admin.php:183 140 msgid "Oct" 141 msgstr "אוקטובר" 142 143 #: admin.php:184 144 msgid "Nov" 145 msgstr "נובמבר" 146 147 #: admin.php:185 148 msgid "Dec" 149 msgstr "דצמבר" 150 151 #: admin.php:186 152 msgid "Show" 153 msgstr "הצג" 154 155 #: admin.php:187 156 msgid "All Types" 157 msgstr "כל הסוגים" 158 159 #: admin.php:188 160 msgid "Personality Quiz" 161 msgstr "חידון אישיות" 162 163 #: admin.php:189 164 msgid "List" 165 msgstr "רשימה" 166 167 #: admin.php:190 168 msgid "Trivia" 169 msgstr "טריוויה" 170 171 #: admin.php:191 172 msgid "Poll" 173 msgstr "סקר" 174 175 #: admin.php:192 176 msgid "Ranked List" 177 msgstr "רשימה מדורגת" 178 179 #: admin.php:193 180 msgid "Gallery Quiz" 181 msgstr "גלריה" 182 183 #: admin.php:194 184 msgid "Sort By" 185 msgstr "סינון לפי" 186 187 #: admin.php:195 188 msgid "Relevance" 189 msgstr "רלוונטיות" 190 191 #: admin.php:196 192 msgid "Views" 193 msgstr "צפיות" 194 195 #: admin.php:197 196 msgid "Date" 197 msgstr "תאריך" 198 199 #: admin.php:198 200 msgid "Discover Playful Content" 201 msgstr "גלו תכנים ויראליים חדשים" 202 203 #: admin.php:199 204 msgid "Featured Items" 205 msgstr "פריטים מובחרים" 206 207 #: admin.php:200 208 msgid "Created by" 209 msgstr "מאת" 210 211 #: admin.php:201 212 msgid "by" 213 msgstr "מאת" 214 215 #: admin.php:202 216 msgid "By" 217 msgstr "מאת" 218 219 #: admin.php:203 220 msgid "on" 221 msgstr "בתאריך" 222 223 #: admin.php:204 224 msgid "items" 225 msgstr "פריטים" 226 227 #: admin.php:205 228 msgid "View" 229 msgstr "הצגה" 230 231 #: admin.php:206 232 msgid "Embed" 233 msgstr "הטמעה" 234 235 #: admin.php:207 236 msgid "Preview item" 237 msgstr "תצוגה מקדימה" 238 239 #: admin.php:208 240 msgid "Playbuzz item does not exist" 241 msgstr "הפריט אינו קיים" 242 243 #: admin.php:209 244 msgid "Check shortcode URL in the text editor." 245 msgstr "יש לבדוק את הכתובת שהוזנה בפקודת המקרו ולתקן אותה." 246 247 #: admin.php:210 248 msgid "Your item will be embedded here" 249 msgstr "הפריט יוטמע כאן" 250 251 #: admin.php:211 252 msgid "Playbuzz Item Settings" 253 msgstr "הגדרות תצוגה" 254 255 #: admin.php:212 256 msgid "Item Settings" 257 msgstr "הגדרות תצוגה" 258 259 #: admin.php:213 260 msgid "Embedded Item Appearance" 261 msgstr "תצוגה של הפריט המוטמע" 262 263 #: admin.php:214 264 msgid "Use site default settings" 265 msgstr "השתמש בהגדרות ברירת מחדל של האתר" 266 267 #: admin.php:215 268 msgid "Configure default settings" 269 msgstr "ערוך הגדרות ברירת מחדל" 270 271 #: admin.php:216 272 msgid "Custom" 273 msgstr "תצוגה יחודית לפריט זה" 274 275 #: admin.php:217 admin.php:368 276 msgid "Display item information" 277 msgstr "תצוגת פרטים" 278 279 #: admin.php:218 admin.php:370 280 msgid "Show item thumbnail, name, description, creator." 281 msgstr "הצגת תמונה, כותרת, תיאור ויוצר." 282 283 #: admin.php:219 admin.php:374 284 msgid "Display share buttons" 285 msgstr "תצוגת כפתורי שיתוף" 286 287 #: admin.php:220 admin.php:376 288 msgid "Show share buttons with links to YOUR site." 289 msgstr "הצגת כפתורי שיתוף עם קישורים לאתר שלך." 290 291 #: admin.php:221 admin.php:420 292 msgid "Display more recommendations" 293 msgstr "תצוגת תכנים מומלצים נוספים" 294 295 #: admin.php:222 admin.php:422 admin.php:612 admin.php:665 296 msgid "Show recommendations for more items." 297 msgstr "הצגת המלצות לפריטים נוספים" 298 299 #: admin.php:223 admin.php:380 300 msgid "Display Facebook comments" 301 msgstr "תצוגת תגובות פייסבוק" 302 303 #: admin.php:224 admin.php:382 304 msgid "Show Facebook comments in your items." 305 msgstr "הצגת תגובות פייסבוק בפריטים שהוטמעו." 306 307 #: admin.php:225 308 msgid "Site has fixed (sticky) top header" 309 msgstr "לאתר יש כותרת עליונה קבועה (דביקה)" 310 311 #: admin.php:226 admin.php:391 312 msgid "Height" 313 msgstr "גובה" 314 315 #: admin.php:227 admin.php:393 316 msgid "px" 317 msgstr "פיקסלים" 318 319 #: admin.php:228 admin.php:395 320 msgid "" 321 "Use this if your website has top header that's always visible, even while " 322 "scrolling down." 323 msgstr "" 324 "ניתן להשתמש באפשרות זו באתרים בהם הכותרת העליונה תמיד מוצגת, גם כשגוללים " 325 "למטה." 326 327 #: admin.php:229 328 msgid "Cancel" 329 msgstr "ביטול" 330 331 #: admin.php:230 332 msgid "Update Item" 333 msgstr "עדכון פריט" 334 335 #: admin.php:231 336 msgid "Feedback sent, thank you!" 337 msgstr "פידבק נשלח, תודה!" 338 339 #: admin.php:232 340 msgid "Something went wrong please try again..." 341 msgstr "ארעה שגיאה, יש לנסות שנית..." 342 343 #: admin.php:233 344 msgid "Some required fields are missing." 345 msgstr "חסרים שדות חובה מסוימים." 346 347 #: admin.php:275 28 348 msgid "Playbuzz Plugin" 29 349 msgstr "תוסף פלייבאז" 30 350 31 #: admin.php: 130351 #: admin.php:277 32 352 msgid "Getting Started" 33 353 msgstr "אופן שימוש" 34 354 35 #: admin.php: 131355 #: admin.php:278 36 356 msgid "Site Settings" 37 357 msgstr "הגדרות אתר" 38 358 39 #: admin.php: 132359 #: admin.php:279 40 360 msgid "Shortcodes" 41 361 msgstr "פקודות מאקרו" 42 362 43 #: admin.php: 133363 #: admin.php:280 44 364 msgid "Feedback" 45 365 msgstr "פידבק" 46 366 47 #: admin.php: 142367 #: admin.php:289 48 368 msgid "Embed Items from Playbuzz" 49 369 msgstr "הטמעת תכנים מתוך פלייבאז" 50 370 51 #: admin.php: 146371 #: admin.php:293 52 372 msgid "" 53 373 "Create a new post/page and click the blue Playbuzz button in the visual " … … 55 375 msgstr "צרו פוסט/עמוד חדש וליחצו על הכפתור הכחול של פלייבאז בעורך הויזואלי" 56 376 57 #: admin.php: 149377 #: admin.php:296 58 378 msgid "" 59 379 "Search for any item, browse our featured items or select one of your own " … … 62 382 "נווטו בפריטים המובחרים, חפשו מבין פריטים השונים או בחרו בין הפריטים שלכם" 63 383 64 #: admin.php: 152384 #: admin.php:299 65 385 msgid "To embed the item to your post click on the “Embed” button" 66 386 msgstr "להטמעת פריט כלשהו יש ללחוץ על הכפתור \"הטמעה\"" 67 387 68 #: admin.php: 162388 #: admin.php:309 69 389 msgid "Item Customization" 70 390 msgstr "התאמות תצוגה" 71 391 72 #: admin.php: 166392 #: admin.php:313 73 393 msgid "" 74 394 "After embedding the item in your post, click on the settings icon to open " … … 76 396 msgstr "אחרי הטמעת הפריט בפוסט, לחיצה על ה פריט תפתח חלון לביצוע התאמות תצוגה" 77 397 78 #: admin.php: 169398 #: admin.php:316 79 399 msgid "Apply default site settings" 80 400 msgstr "השתמשו בהגדרות ברירת המחדל של האתר" 81 401 82 #: admin.php: 172402 #: admin.php:319 83 403 msgid "Or select the \"custom\" option to apply customized settings" 84 404 msgstr "או בחרו לבצע התאמות תצוגה כדי להגדיר הגדרות ייחודיות לפריט" 85 405 86 #: admin.php: 180 admin.php:217406 #: admin.php:327 admin.php:364 87 407 msgid "Default Site Settings" 88 408 msgstr "הגדרות ברירת מחדל של האתר" 89 409 90 #: admin.php: 184410 #: admin.php:331 91 411 msgid "" 92 412 "You don’t have to manually set the options for each of your embeds! You can " … … 96 416 "לכל האתר דרך תפריט <a href=\"%s\">הגדרות האתר</a>" 97 417 98 #: admin.php: 187418 #: admin.php:334 99 419 msgid "" 100 420 "This panel is always available for you <a href=\"%s\">here</a> and at the " … … 104 424 "אתר" 105 425 106 #: admin.php: 190426 #: admin.php:337 107 427 msgid "" 108 428 "Your site default settings won't override any of your manual item-specific " … … 112 432 "לפריטים נבחרים!" 113 433 114 #: admin.php:204 scripts-styles.php:66 115 msgid "My Items" 116 msgstr "הפריטים שלי" 117 118 #: admin.php:207 434 #: admin.php:354 119 435 msgid "Playbuzz Username" 120 436 msgstr "שם משתמש בפלייבאז" 121 437 122 #: admin.php: 208438 #: admin.php:355 123 439 msgid "e.g. sarahpark10" 124 440 msgstr "למשל sarahpark10" 125 441 126 #: admin.php: 210442 #: admin.php:357 127 443 msgid "" 128 444 "You can find your username by going to your profile page on %s, and copying " … … 130 446 msgstr "ניתן למצוא את שם המשתמש בעמוד הפרופיל שלך באתר %s, בכתובת ה-URL." 131 447 132 #: admin.php: 211448 #: admin.php:358 133 449 msgid "Example:" 134 450 msgstr "דוגמא:" 135 451 136 #: admin.php:221 scripts-styles.php:125 137 msgid "Display item information" 138 msgstr "תצוגת פרטים" 139 140 #: admin.php:223 scripts-styles.php:126 141 msgid "Show item thumbnail, name, description, creator." 142 msgstr "הצגת תמונה, כותרת, תיאור ויוצר." 143 144 #: admin.php:227 scripts-styles.php:127 145 msgid "Display share buttons" 146 msgstr "תצוגת כפתורי שיתוף" 147 148 #: admin.php:229 scripts-styles.php:128 149 msgid "Show share buttons with links to YOUR site." 150 msgstr "הצגת כפתורי שיתוף עם קישורים לאתר שלך." 151 152 #: admin.php:233 scripts-styles.php:131 153 msgid "Display Facebook comments" 154 msgstr "תצוגת תגובות פייסבוק" 155 156 #: admin.php:235 scripts-styles.php:132 157 msgid "Show Facebook comments in your items." 158 msgstr "הצגת תגובות פייסבוק בפריטים שהוטמעו." 159 160 #: admin.php:241 452 #: admin.php:388 161 453 msgid "Sticky Header Preferences" 162 454 msgstr "הגדרות ריווח עליון" 163 455 164 #: admin.php:244 scripts-styles.php:134 165 msgid "Height" 166 msgstr "גובה" 167 168 #: admin.php:246 scripts-styles.php:135 169 msgid "px" 170 msgstr "פיקסלים" 171 172 #: admin.php:248 scripts-styles.php:136 173 msgid "" 174 "Use this if your website has top header that's always visible, even while " 175 "scrolling down." 176 msgstr "" 177 "ניתן להשתמש באפשרות זו באתרים בהם הכותרת העליונה תמיד מוצגת, גם כשגוללים " 178 "למטה." 179 180 #: admin.php:254 456 #: admin.php:401 181 457 msgid "Appearance Preferences" 182 458 msgstr "הגדרות תצוגה" 183 459 184 #: admin.php: 257460 #: admin.php:404 185 461 msgid "Display embedded items on" 186 462 msgstr "הצגת תכנים מוטמעים ב" 187 463 188 #: admin.php: 259464 #: admin.php:406 189 465 msgid "Posts & Pages Only" 190 466 msgstr "עמודי תוכן בלבד" 191 467 192 #: admin.php: 260468 #: admin.php:407 193 469 msgid "All pages (singular, archive, ect.)" 194 470 msgstr "בכל העמודים, כולל עמודי ארכיון" 195 471 196 #: admin.php: 263472 #: admin.php:410 197 473 msgid "" 198 474 "Whether to show the embedded content only in <a href=\"%s\" target=\"_blank" … … 203 479 "\"%s\">עמודי ארכיון</a>." 204 480 205 #: admin.php: 269481 #: admin.php:416 206 482 msgid "Item Recommendations" 207 483 msgstr "תכנים מומלצים" 208 484 209 #: admin.php:273 scripts-styles.php:129 210 msgid "Display more recommendations" 211 msgstr "תצוגת תכנים מומלצים נוספים" 212 213 #: admin.php:275 admin.php:465 admin.php:518 scripts-styles.php:130 214 msgid "Show recommendations for more items." 215 msgstr "הצגת המלצות לפריטים נוספים" 216 217 #: admin.php:283 widgets.php:181 485 #: admin.php:430 widgets.php:181 218 486 msgid "Tags" 219 487 msgstr "תגיות" 220 488 221 #: admin.php: 286widgets.php:182489 #: admin.php:433 widgets.php:182 222 490 msgid "All" 223 491 msgstr "הכל" 224 492 225 #: admin.php: 290widgets.php:183493 #: admin.php:437 widgets.php:183 226 494 msgid "Fun" 227 495 msgstr "כיף" 228 496 229 #: admin.php: 294widgets.php:184497 #: admin.php:441 widgets.php:184 230 498 msgid "Pop" 231 499 msgstr "פופולריים" 232 500 233 #: admin.php: 298widgets.php:185501 #: admin.php:445 widgets.php:185 234 502 msgid "Geek" 235 503 msgstr "גיקים" 236 504 237 #: admin.php: 302widgets.php:186505 #: admin.php:449 widgets.php:186 238 506 msgid "Sports" 239 507 msgstr "ספורט" 240 508 241 #: admin.php: 306widgets.php:187509 #: admin.php:453 widgets.php:187 242 510 msgid "Editor's Pick" 243 511 msgstr "בחירת העורכים" 244 512 245 #: admin.php: 311widgets.php:190513 #: admin.php:458 widgets.php:190 246 514 msgid "Custom Tags" 247 515 msgstr "תגיות מותאמות אישית" 248 516 249 #: admin.php: 312517 #: admin.php:459 250 518 msgid "Comma separated tags, e.g. food, rap, weather" 251 519 msgstr "תגיות מופרדות בפסיקים, כגון food, rap, weather" 252 520 253 #: admin.php: 320521 #: admin.php:467 254 522 msgid "Authentication" 255 523 msgstr "הזדהות" 256 524 257 #: admin.php: 322525 #: admin.php:469 258 526 msgid "API Key" 259 527 msgstr "מפתח API" 260 528 261 #: admin.php: 331529 #: admin.php:478 262 530 msgid "Related Content Customization" 263 531 msgstr "הגדרת המלצות בהתאמה אישית" 264 532 265 #: admin.php: 335widgets.php:162533 #: admin.php:482 widgets.php:162 266 534 msgid "Number of Items" 267 535 msgstr "מספר פריטים להצגה" 268 536 269 #: admin.php: 356widgets.php:154537 #: admin.php:503 widgets.php:154 270 538 msgid "Items layout" 271 539 msgstr "פריסת פריטים" 272 540 273 #: admin.php: 358widgets.php:156541 #: admin.php:505 widgets.php:156 274 542 msgid "Large Images" 275 543 msgstr "תמונות גדולות" 276 544 277 #: admin.php: 359widgets.php:157545 #: admin.php:506 widgets.php:157 278 546 msgid "Horizontal Images" 279 547 msgstr "תמונות אנכיות" 280 548 281 #: admin.php: 360widgets.php:158549 #: admin.php:507 widgets.php:158 282 550 msgid "No Images" 283 551 msgstr "ללא תמונות" 284 552 285 #: admin.php: 383553 #: admin.php:530 286 554 msgid "Open Items at" 287 555 msgstr "מיקום רשימת הפריטים" 288 556 289 #: admin.php: 385widgets.php:195557 #: admin.php:532 widgets.php:195 290 558 msgid "" 291 559 "<a href=\"%s\" target=\"_blank\">Create</a> a new page containing the " … … 297 565 "יפתחו פריטים שהוקלקו:" 298 566 299 #: admin.php: 392widgets.php:203567 #: admin.php:539 widgets.php:203 300 568 msgid "— Select —" 301 569 msgstr "— בחירה —" 302 570 303 #: admin.php: 403571 #: admin.php:550 304 572 msgid "Automatically Add Recommendations" 305 573 msgstr "הוספת המלצות באופן אוטומטי" 306 574 307 #: admin.php: 406575 #: admin.php:553 308 576 msgid "Active" 309 577 msgstr "הפעל" 310 578 311 #: admin.php: 409579 #: admin.php:556 312 580 msgid "Disable" 313 581 msgstr "כבה" 314 582 315 #: admin.php: 410583 #: admin.php:557 316 584 msgid "Enable" 317 585 msgstr "הפעל" 318 586 319 #: admin.php: 415587 #: admin.php:562 320 588 msgid "Location" 321 589 msgstr "מיקום" 322 590 323 #: admin.php: 418591 #: admin.php:565 324 592 msgid "Above the content" 325 593 msgstr "מעל התוכן" 326 594 327 #: admin.php: 419595 #: admin.php:566 328 596 msgid "Bellow the content" 329 597 msgstr "מתחת לתוכן" 330 598 331 #: admin.php: 435599 #: admin.php:582 332 600 msgid "Item Shortcode" 333 601 msgstr "קוד הטמעה לפריט" 334 602 335 #: admin.php: 436603 #: admin.php:583 336 604 msgid "Choose any Playful Content item from %s and easily embed it in a post." 337 605 msgstr "בחרו פריט כלשהו מאתר %s והטמיעו אותו בקלות באתר." 338 606 339 #: admin.php: 437607 #: admin.php:584 340 608 msgid "" 341 609 "For basic use, paste the item URL into your text editor and go to the visual " … … 345 613 "הוויזואלי כדי לוודא שהוא נטען." 346 614 347 #: admin.php: 438615 #: admin.php:585 348 616 msgid "" 349 617 "For more advance usage, use the following shortcode if you want to adjust " … … 351 619 msgstr "לשימוש מתקדם, השתמשו בקוד הטמעה הבא להתאמת התצוגה:" 352 620 353 #: admin.php: 440621 #: admin.php:587 354 622 msgid "" 355 623 "You can set default appearance settings in the <a href=\"%s\">Site Settings</" … … 359 627 "אתר</a>." 360 628 361 #: admin.php: 441629 #: admin.php:588 362 630 msgid "" 363 631 "Or you can override the default appearance and customize each item with the " … … 365 633 msgstr "או להגדיר לכל פריט תצוגה מותאמת אישית באמצעות הפרמטרים הבאים:" 366 634 367 #: admin.php: 445635 #: admin.php:592 368 636 msgid "The URL of the item that will be displayed." 369 637 msgstr "ה-URL של הפריט שיוצג." 370 638 371 #: admin.php: 446639 #: admin.php:593 372 640 msgid "Type: URL" 373 641 msgstr "סוג: URL" 374 642 375 #: admin.php: 450643 #: admin.php:597 376 644 msgid "Show item info (thumbnail, name, description, editor, etc)." 377 645 msgstr "הצגת פרטים כגון תמונה, כותרת, תיאור, ויוצר." 378 646 379 #: admin.php: 451 admin.php:456 admin.php:461 admin.php:466 admin.php:509380 #: admin.php: 514 admin.php:519647 #: admin.php:598 admin.php:603 admin.php:608 admin.php:613 admin.php:656 648 #: admin.php:661 admin.php:666 381 649 msgid "Type: Boolean (true/false) ; Default: true" 382 650 msgstr "סוג: בוליאני (כן/לא) ; ברירת מחדל: כן" 383 651 384 #: admin.php: 455 admin.php:508652 #: admin.php:602 admin.php:655 385 653 msgid "Show sharing buttons." 386 654 msgstr "הצגת כפתורי שיתוף." 387 655 388 #: admin.php: 460 admin.php:513656 #: admin.php:607 admin.php:660 389 657 msgid "Show comments control from the item page." 390 658 msgstr "הצגת כפתורי שיתוף בעמוד הפריט." 391 659 392 #: admin.php: 470 admin.php:523660 #: admin.php:617 admin.php:670 393 661 msgid "" 394 662 "Destination page, containing the [playbuzz-section] shortcode, where new " … … 398 666 "חדשים." 399 667 400 #: admin.php: 471 admin.php:524668 #: admin.php:618 admin.php:671 401 669 msgid "Type: URL ; Default: https://www.playbuzz.com/" 402 670 msgstr "סוג: URL ; ברירת מחדל: https://www.playbuzz.com/" 403 671 404 #: admin.php: 475 admin.php:528672 #: admin.php:622 admin.php:675 405 673 msgid "Define custom width in pixels." 406 674 msgstr "הגדרת רוחב מותאם אישית בפיקסלים." 407 675 408 #: admin.php: 476 admin.php:481 admin.php:529 admin.php:534676 #: admin.php:623 admin.php:628 admin.php:676 admin.php:681 409 677 msgid "Type: String ; Default: auto" 410 678 msgstr "סוג: מחרוזת ; ברירת מחדל: auto" 411 679 412 #: admin.php: 480 admin.php:533680 #: admin.php:627 admin.php:680 413 681 msgid "Define custom height in pixels." 414 682 msgstr "הגדרת גובה מותאם אישית בפיקסלים." 415 683 416 #: admin.php: 485 admin.php:538684 #: admin.php:632 admin.php:685 417 685 msgid "Define custom margin-top in pixels." 418 686 msgstr "הגדרת ריווח עליון מותאם אישית בפיקסלים." 419 687 420 #: admin.php: 486 admin.php:539688 #: admin.php:633 admin.php:686 421 689 msgid "Type: String ; Default: 0px" 422 690 msgstr "סוג: מחרוזת ; ברירת מחדל: 0px" 423 691 424 #: admin.php: 494692 #: admin.php:641 425 693 msgid "Section Shortcode" 426 694 msgstr "קוד הטמעה לרשימת פריטים" 427 695 428 #: admin.php: 495696 #: admin.php:642 429 697 msgid "" 430 698 "Choose any list of Playful Items in a specific vertical from %s and easily " … … 436 704 "תגית מסויימת." 437 705 438 #: admin.php: 496706 #: admin.php:643 439 707 msgid "" 440 708 "For basic use, paste the section URL into your text editor and go to the " … … 444 712 "הוויזואלי כדי לוודא שהם נטענו." 445 713 446 #: admin.php: 497714 #: admin.php:644 447 715 msgid "" 448 716 "Use the following shortcode if you want to adjust the settings of your " … … 451 719 "השתמשו בקוד ההטמעה הבא אם ברצונכם להתאים את אופן התצוגה של רשימת הפריטים:" 452 720 453 #: admin.php: 499721 #: admin.php:646 454 722 msgid "" 455 723 "You can tweak the general settings for the section with the following " … … 459 727 "הפרמטרים המתקדמים הבאים לקוד ההטמעה:" 460 728 461 #: admin.php: 503729 #: admin.php:650 462 730 msgid "Filters the content shown by comma separated tags." 463 731 msgstr "סינון התכנים המוצגים על ידי תגיות המופרדות בפסיקים." 464 732 465 #: admin.php: 504733 #: admin.php:651 466 734 msgid "Type: String ; Default: All" 467 735 msgstr "סוג: מחרוזת ; ברירת מחדל: All" 468 736 469 #: admin.php: 549737 #: admin.php:696 470 738 msgid "We Are Listening" 471 739 msgstr "אנחנו קשובים לצרכים שלכם" 472 740 473 #: admin.php: 551741 #: admin.php:698 474 742 msgid "" 475 743 "We’d love to know about your experiences with our WordPress plugin and " … … 479 747 "בעזרת הטופס הבא" 480 748 481 #: admin.php: 559749 #: admin.php:706 482 750 msgid "Your Name" 483 751 msgstr "שם" 484 752 485 #: admin.php: 563753 #: admin.php:710 486 754 msgid "Email (so we can write you back)" 487 755 msgstr "אימייל (כדי שנוכל לחזור אלייכם)" 488 756 489 #: admin.php: 567757 #: admin.php:714 490 758 msgid "Message" 491 759 msgstr "הודעה" 492 760 493 #: admin.php: 568761 #: admin.php:715 494 762 msgid "What's on your mind?" 495 763 msgstr "על מה חשבתם?" 496 764 497 #: admin.php: 570765 #: admin.php:717 498 766 msgid "WordPress plugin feedback" 499 767 msgstr "משוב על תוסף של פלייבאז" 500 768 501 #: admin.php: 571769 #: admin.php:718 502 770 msgid "Submit" 503 771 msgstr "שליחה" 504 772 505 #: admin.php: 578773 #: admin.php:725 506 774 msgid "Enjoying the Playbuzz WordPress Plugin?" 507 775 msgstr "נהנים מתוסף הוורדפרס של פלייבאז?" 508 776 509 #: admin.php: 579777 #: admin.php:726 510 778 msgid "" 511 779 "<a href=\"%s\" target=\"_blank\">Rate us</a> on the WordPress Plugin " … … 515 783 "כדי לעזור לאחרים לגלות את התכנים של פלייבאז!" 516 784 517 #: admin.php: 585785 #: admin.php:732 518 786 msgid "Become a Premium Playbuzz Publisher" 519 787 msgstr "הצטרפו לשותפי הפרמיום של פלייבאז" 520 788 521 #: admin.php: 586789 #: admin.php:733 522 790 msgid "" 523 791 "Want to learn how Playbuzz can take your publication’s engagement to new " … … 525 793 msgstr "רוצים ללמוד איך פלייבאז יכולה לקחת את התכנים שלכם לגבהים חדשים?" 526 794 527 #: admin.php: 586795 #: admin.php:733 528 796 msgid "Lets Talk!" 529 797 msgstr "דברו איתנו!" 530 798 531 #: admin.php: 592799 #: admin.php:739 532 800 msgid "Join the Playbuzz Publishers Community" 533 801 msgstr "הצטרפו לקהילת המוציאים לאור של פלייבאז" 534 802 535 #: index.php: 43803 #: index.php:63 536 804 msgid "Settings" 537 805 msgstr "הגדרות" 538 539 #: scripts-styles.php:65540 msgid "Playbuzz Content"541 msgstr "תכנים מפלייבאז"542 543 #: scripts-styles.php:67544 msgid "+ Create Your Own"545 msgstr "יצירת פריט חדש"546 547 #: scripts-styles.php:68548 msgid "Search Term"549 msgstr "מילות חיפוש"550 551 #: scripts-styles.php:69552 msgid "Search my items"553 msgstr "חיפוש בפריטים שלי"554 555 #: scripts-styles.php:70556 msgid "Results for"557 msgstr "תוצאות חיפוש עבור"558 559 #: scripts-styles.php:71560 msgid "No results found"561 msgstr "לא נמצאו תוצאות"562 563 #: scripts-styles.php:72564 msgid "Please try again with a different search."565 msgstr "יש לנסות שנית עם מילות חיפוש חלופיות."566 567 #: scripts-styles.php:73568 msgid "Change User"569 msgstr "החלפת משתמש"570 571 #: scripts-styles.php:74572 msgid "Server error"573 msgstr "שגיאת שרת"574 575 #: scripts-styles.php:75576 msgid "Please try again in a few minutes."577 msgstr "יש לנסות שנית בעוד מספר דקות."578 579 #: scripts-styles.php:76580 msgid "No user"581 msgstr "לא הוגדר משתמש"582 583 #: scripts-styles.php:77584 msgid "Set User"585 msgstr "הגדרת משתמש"586 587 #: scripts-styles.php:78588 msgid ""589 "Go to the <a href=\"options-general.php?page=playbuzz&tab=embed\" target="590 "\"_blank\">Settings</a> and set your Playbuzz.com username."591 msgstr ""592 "יש לגשת למסך ה<a href=\"options-general.php?page=playbuzz&tab=embed\" target="593 "\"_blank\">הגדרות</a> כדי להגדיר את המשתמש שלך באתר Playbuzz.com."594 595 #: scripts-styles.php:79596 msgid "You don't have any items (yet!)."597 msgstr "אין לך פריטים (עדיין!)"598 599 #: scripts-styles.php:80600 msgid ""601 "Go to <a href=\"https://www.playbuzz.com/\" target=\"_blank\">Playbuzz.com</"602 "a> to create your own playful content and embed on your site."603 msgstr ""604 "ניתן ליצור תכנים ויראליים חדשים באתר <a href=\"https://www.playbuzz.com/\" "605 "target=\"_blank\">Playbuzz.com</a> ולהטמיע אותם באתר."606 607 #: scripts-styles.php:81608 msgid "page"609 msgstr "עמוד"610 611 #: scripts-styles.php:82612 msgid "Jan"613 msgstr "ינואר"614 615 #: scripts-styles.php:83616 msgid "Feb"617 msgstr "פברואר"618 619 #: scripts-styles.php:84620 msgid "Mar"621 msgstr "מרץ"622 623 #: scripts-styles.php:85624 msgid "Apr"625 msgstr "אפריל"626 627 #: scripts-styles.php:86628 msgid "May"629 msgstr "מאי"630 631 #: scripts-styles.php:87632 msgid "Jun"633 msgstr "יוני"634 635 #: scripts-styles.php:88636 msgid "Jul"637 msgstr "יולי"638 639 #: scripts-styles.php:89640 msgid "Aug"641 msgstr "אוגוסט"642 643 #: scripts-styles.php:90644 msgid "Sep"645 msgstr "ספטמבר"646 647 #: scripts-styles.php:91648 msgid "Oct"649 msgstr "אוקטובר"650 651 #: scripts-styles.php:92652 msgid "Nov"653 msgstr "נובמבר"654 655 #: scripts-styles.php:93656 msgid "Dec"657 msgstr "דצמבר"658 659 #: scripts-styles.php:94660 msgid "Show"661 msgstr "הצג"662 663 #: scripts-styles.php:95664 msgid "All Types"665 msgstr "כל הסוגים"666 667 #: scripts-styles.php:96668 msgid "Personality Quiz"669 msgstr "חידון אישיות"670 671 #: scripts-styles.php:97672 msgid "List"673 msgstr "רשימה"674 675 #: scripts-styles.php:98676 msgid "Trivia"677 msgstr "טריוויה"678 679 #: scripts-styles.php:99680 msgid "Poll"681 msgstr "סקר"682 683 #: scripts-styles.php:100684 msgid "Ranked List"685 msgstr "רשימה מדורגת"686 687 #: scripts-styles.php:101688 msgid "Gallery Quiz"689 msgstr "גלריה"690 691 #: scripts-styles.php:102692 msgid "Sort By"693 msgstr "סינון לפי"694 695 #: scripts-styles.php:103696 msgid "Relevance"697 msgstr "רלוונטיות"698 699 #: scripts-styles.php:104700 msgid "Views"701 msgstr "צפיות"702 703 #: scripts-styles.php:105704 msgid "Date"705 msgstr "תאריך"706 707 #: scripts-styles.php:106708 msgid "Discover Playful Content"709 msgstr "גלו תכנים ויראליים חדשים"710 711 #: scripts-styles.php:107712 msgid "Featured Items"713 msgstr "פריטים מובחרים"714 715 #: scripts-styles.php:108716 msgid "Created by"717 msgstr "מאת"718 719 #: scripts-styles.php:109720 msgid "by"721 msgstr "מאת"722 723 #: scripts-styles.php:110724 msgid "By"725 msgstr "מאת"726 727 #: scripts-styles.php:111728 msgid "on"729 msgstr "בתאריך"730 731 #: scripts-styles.php:112732 msgid "items"733 msgstr "פריטים"734 735 #: scripts-styles.php:113736 msgid "View"737 msgstr "הצגה"738 739 #: scripts-styles.php:114740 msgid "Embed"741 msgstr "הטמעה"742 743 #: scripts-styles.php:115744 msgid "Preview item"745 msgstr "תצוגה מקדימה"746 747 #: scripts-styles.php:116748 msgid "Playbuzz item does not exist"749 msgstr "הפריט אינו קיים"750 751 #: scripts-styles.php:117752 msgid "Check shortcode URL in the text editor."753 msgstr "יש לבדוק את הכתובת שהוזנה בפקודת המקרו ולתקן אותה."754 755 #: scripts-styles.php:118756 msgid "Your item will be embedded here"757 msgstr "הפריט יוטמע כאן"758 759 #: scripts-styles.php:119760 msgid "Playbuzz Item Settings"761 msgstr "הגדרות תצוגה"762 763 #: scripts-styles.php:120764 msgid "Item Settings"765 msgstr "הגדרות תצוגה"766 767 #: scripts-styles.php:121768 msgid "Embedded Item Appearance"769 msgstr "תצוגה של הפריט המוטמע"770 771 #: scripts-styles.php:122772 msgid "Use site default settings"773 msgstr "השתמש בהגדרות ברירת מחדל של האתר"774 775 #: scripts-styles.php:123776 msgid "Configure default settings"777 msgstr "ערוך הגדרות ברירת מחדל"778 779 #: scripts-styles.php:124780 msgid "Custom"781 msgstr "תצוגה יחודית לפריט זה"782 783 #: scripts-styles.php:133784 msgid "Site has fixed (sticky) top header"785 msgstr "לאתר יש כותרת עליונה קבועה (דביקה)"786 787 #: scripts-styles.php:137788 msgid "Cancel"789 msgstr "ביטול"790 791 #: scripts-styles.php:138792 msgid "Update Item"793 msgstr "עדכון פריט"794 795 #: scripts-styles.php:139796 msgid "Feedback sent, thank you!"797 msgstr "פידבק נשלח, תודה!"798 799 #: scripts-styles.php:140800 msgid "Something went wrong please try again..."801 msgstr "ארעה שגיאה, יש לנסות שנית..."802 803 #: scripts-styles.php:141804 msgid "Some required fields are missing."805 msgstr "חסרים שדות חובה מסוימים."806 806 807 807 #: widgets.php:31 -
playbuzz/trunk/lang/playbuzz.pot
r1195289 r1423096 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Playbuzz 0. 9.0\n"6 "Report-Msgid-Bugs-To: http s://wordpress.org/support/plugin/playbuzz\n"7 "POT-Creation-Date: 2015-0 7-09 08:52:06+00:00\n"5 "Project-Id-Version: Playbuzz 0.8.0\n" 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/playbuzz\n" 7 "POT-Creation-Date: 2015-05-05 10:15:09+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 14 15 #. #-#-#-#-# plugin.pot (Playbuzz 0. 9.0) #-#-#-#-#15 #. #-#-#-#-# plugin.pot (Playbuzz 0.8.0) #-#-#-#-# 16 16 #. Plugin Name of the plugin/theme 17 #. #-#-#-#-# plugin.pot (Playbuzz 0. 9.0) #-#-#-#-#17 #. #-#-#-#-# plugin.pot (Playbuzz 0.8.0) #-#-#-#-# 18 18 #. Author of the plugin/theme 19 #: admin.php:1 04 admin.php:105 scripts-styles.php:6419 #: admin.php:156 admin.php:256 20 20 msgid "Playbuzz" 21 21 msgstr "" 22 22 23 #: admin.php:128 23 #: admin.php:157 24 msgid "Playbuzz Content" 25 msgstr "" 26 27 #: admin.php:158 admin.php:351 28 msgid "My Items" 29 msgstr "" 30 31 #: admin.php:159 32 msgid "+ Create Your Own" 33 msgstr "" 34 35 #: admin.php:160 36 msgid "Search Term" 37 msgstr "" 38 39 #: admin.php:161 40 msgid "Search my items" 41 msgstr "" 42 43 #: admin.php:162 44 msgid "Results for" 45 msgstr "" 46 47 #: admin.php:163 48 msgid "No results found" 49 msgstr "" 50 51 #: admin.php:164 52 msgid "Please try again with a different search." 53 msgstr "" 54 55 #: admin.php:165 56 msgid "Change User" 57 msgstr "" 58 59 #: admin.php:166 60 msgid "Server error" 61 msgstr "" 62 63 #: admin.php:167 64 msgid "Please try again in a few minutes." 65 msgstr "" 66 67 #: admin.php:168 68 msgid "No user" 69 msgstr "" 70 71 #: admin.php:169 72 msgid "Set User" 73 msgstr "" 74 75 #: admin.php:170 76 msgid "" 77 "Go to the <a href=\"options-general.php?page=playbuzz&tab=embed\" target=" 78 "\"_blank\">Settings</a> and set your Playbuzz.com username." 79 msgstr "" 80 81 #: admin.php:171 82 msgid "You don't have any items (yet!)." 83 msgstr "" 84 85 #: admin.php:172 86 msgid "" 87 "Go to <a href=\"https://www.playbuzz.com/\" target=\"_blank\">Playbuzz.com</" 88 "a> to create your own playful content and embed on your site." 89 msgstr "" 90 91 #: admin.php:173 92 msgid "page" 93 msgstr "" 94 95 #: admin.php:174 96 msgid "Jan" 97 msgstr "" 98 99 #: admin.php:175 100 msgid "Feb" 101 msgstr "" 102 103 #: admin.php:176 104 msgid "Mar" 105 msgstr "" 106 107 #: admin.php:177 108 msgid "Apr" 109 msgstr "" 110 111 #: admin.php:178 112 msgid "May" 113 msgstr "" 114 115 #: admin.php:179 116 msgid "Jun" 117 msgstr "" 118 119 #: admin.php:180 120 msgid "Jul" 121 msgstr "" 122 123 #: admin.php:181 124 msgid "Aug" 125 msgstr "" 126 127 #: admin.php:182 128 msgid "Sep" 129 msgstr "" 130 131 #: admin.php:183 132 msgid "Oct" 133 msgstr "" 134 135 #: admin.php:184 136 msgid "Nov" 137 msgstr "" 138 139 #: admin.php:185 140 msgid "Dec" 141 msgstr "" 142 143 #: admin.php:186 144 msgid "Show" 145 msgstr "" 146 147 #: admin.php:187 148 msgid "All Types" 149 msgstr "" 150 151 #: admin.php:188 152 msgid "Personality Quiz" 153 msgstr "" 154 155 #: admin.php:189 156 msgid "List" 157 msgstr "" 158 159 #: admin.php:190 160 msgid "Trivia" 161 msgstr "" 162 163 #: admin.php:191 164 msgid "Poll" 165 msgstr "" 166 167 #: admin.php:192 168 msgid "Ranked List" 169 msgstr "" 170 171 #: admin.php:193 172 msgid "Gallery Quiz" 173 msgstr "" 174 175 #: admin.php:194 176 msgid "Sort By" 177 msgstr "" 178 179 #: admin.php:195 180 msgid "Relevance" 181 msgstr "" 182 183 #: admin.php:196 184 msgid "Views" 185 msgstr "" 186 187 #: admin.php:197 188 msgid "Date" 189 msgstr "" 190 191 #: admin.php:198 192 msgid "Discover Playful Content" 193 msgstr "" 194 195 #: admin.php:199 196 msgid "Featured Items" 197 msgstr "" 198 199 #: admin.php:200 200 msgid "Created by" 201 msgstr "" 202 203 #: admin.php:201 204 msgid "by" 205 msgstr "" 206 207 #: admin.php:202 208 msgid "By" 209 msgstr "" 210 211 #: admin.php:203 212 msgid "on" 213 msgstr "" 214 215 #: admin.php:204 216 msgid "items" 217 msgstr "" 218 219 #: admin.php:205 220 msgid "View" 221 msgstr "" 222 223 #: admin.php:206 224 msgid "Embed" 225 msgstr "" 226 227 #: admin.php:207 228 msgid "Preview item" 229 msgstr "" 230 231 #: admin.php:208 232 msgid "Playbuzz item does not exist" 233 msgstr "" 234 235 #: admin.php:209 236 msgid "Check shortcode URL in the text editor." 237 msgstr "" 238 239 #: admin.php:210 240 msgid "Your item will be embedded here" 241 msgstr "" 242 243 #: admin.php:211 244 msgid "Playbuzz Item Settings" 245 msgstr "" 246 247 #: admin.php:212 248 msgid "Item Settings" 249 msgstr "" 250 251 #: admin.php:213 252 msgid "Embedded Item Appearance" 253 msgstr "" 254 255 #: admin.php:214 256 msgid "Use site default settings" 257 msgstr "" 258 259 #: admin.php:215 260 msgid "Configure default settings" 261 msgstr "" 262 263 #: admin.php:216 264 msgid "Custom" 265 msgstr "" 266 267 #: admin.php:217 admin.php:368 268 msgid "Display item information" 269 msgstr "" 270 271 #: admin.php:218 admin.php:370 272 msgid "Show item thumbnail, name, description, creator." 273 msgstr "" 274 275 #: admin.php:219 admin.php:374 276 msgid "Display share buttons" 277 msgstr "" 278 279 #: admin.php:220 admin.php:376 280 msgid "Show share buttons with links to YOUR site." 281 msgstr "" 282 283 #: admin.php:221 admin.php:420 284 msgid "Display more recommendations" 285 msgstr "" 286 287 #: admin.php:222 admin.php:422 admin.php:612 admin.php:665 288 msgid "Show recommendations for more items." 289 msgstr "" 290 291 #: admin.php:223 admin.php:380 292 msgid "Display Facebook comments" 293 msgstr "" 294 295 #: admin.php:224 admin.php:382 296 msgid "Show Facebook comments in your items." 297 msgstr "" 298 299 #: admin.php:225 300 msgid "Site has fixed (sticky) top header" 301 msgstr "" 302 303 #: admin.php:226 admin.php:391 304 msgid "Height" 305 msgstr "" 306 307 #: admin.php:227 admin.php:393 308 msgid "px" 309 msgstr "" 310 311 #: admin.php:228 admin.php:395 312 msgid "" 313 "Use this if your website has top header that's always visible, even while " 314 "scrolling down." 315 msgstr "" 316 317 #: admin.php:229 318 msgid "Cancel" 319 msgstr "" 320 321 #: admin.php:230 322 msgid "Update Item" 323 msgstr "" 324 325 #: admin.php:231 326 msgid "Feedback sent, thank you!" 327 msgstr "" 328 329 #: admin.php:232 330 msgid "Something went wrong please try again..." 331 msgstr "" 332 333 #: admin.php:233 334 msgid "Some required fields are missing." 335 msgstr "" 336 337 #: admin.php:275 24 338 msgid "Playbuzz Plugin" 25 339 msgstr "" 26 340 27 #: admin.php: 130341 #: admin.php:277 28 342 msgid "Getting Started" 29 343 msgstr "" 30 344 31 #: admin.php: 131345 #: admin.php:278 32 346 msgid "Site Settings" 33 347 msgstr "" 34 348 35 #: admin.php: 132349 #: admin.php:279 36 350 msgid "Shortcodes" 37 351 msgstr "" 38 352 39 #: admin.php: 133353 #: admin.php:280 40 354 msgid "Feedback" 41 355 msgstr "" 42 356 43 #: admin.php: 142357 #: admin.php:289 44 358 msgid "Embed Items from Playbuzz" 45 359 msgstr "" 46 360 47 #: admin.php: 146361 #: admin.php:293 48 362 msgid "" 49 363 "Create a new post/page and click the blue Playbuzz button in the visual " … … 51 365 msgstr "" 52 366 53 #: admin.php: 149367 #: admin.php:296 54 368 msgid "" 55 369 "Search for any item, browse our featured items or select one of your own " … … 57 371 msgstr "" 58 372 59 #: admin.php: 152373 #: admin.php:299 60 374 msgid "To embed the item to your post click on the “Embed” button" 61 375 msgstr "" 62 376 63 #: admin.php: 162377 #: admin.php:309 64 378 msgid "Item Customization" 65 379 msgstr "" 66 380 67 #: admin.php: 166381 #: admin.php:313 68 382 msgid "" 69 383 "After embedding the item in your post, click on the settings icon to open " … … 71 385 msgstr "" 72 386 73 #: admin.php: 169387 #: admin.php:316 74 388 msgid "Apply default site settings" 75 389 msgstr "" 76 390 77 #: admin.php: 172391 #: admin.php:319 78 392 msgid "Or select the \"custom\" option to apply customized settings" 79 393 msgstr "" 80 394 81 #: admin.php: 180 admin.php:217395 #: admin.php:327 admin.php:364 82 396 msgid "Default Site Settings" 83 397 msgstr "" 84 398 85 #: admin.php: 184399 #: admin.php:331 86 400 msgid "" 87 401 "You don’t have to manually set the options for each of your embeds! You can " … … 89 403 msgstr "" 90 404 91 #: admin.php: 187405 #: admin.php:334 92 406 msgid "" 93 407 "This panel is always available for you <a href=\"%s\">here</a> and at the " … … 95 409 msgstr "" 96 410 97 #: admin.php: 190411 #: admin.php:337 98 412 msgid "" 99 413 "Your site default settings won't override any of your manual item-specific " … … 101 415 msgstr "" 102 416 103 #: admin.php:204 scripts-styles.php:66 104 msgid "My Items" 105 msgstr "" 106 107 #: admin.php:207 417 #: admin.php:354 108 418 msgid "Playbuzz Username" 109 419 msgstr "" 110 420 111 #: admin.php: 208421 #: admin.php:355 112 422 msgid "e.g. sarahpark10" 113 423 msgstr "" 114 424 115 #: admin.php: 210425 #: admin.php:357 116 426 msgid "" 117 427 "You can find your username by going to your profile page on %s, and copying " … … 119 429 msgstr "" 120 430 121 #: admin.php: 211431 #: admin.php:358 122 432 msgid "Example:" 123 433 msgstr "" 124 434 125 #: admin.php:221 scripts-styles.php:125 126 msgid "Display item information" 127 msgstr "" 128 129 #: admin.php:223 scripts-styles.php:126 130 msgid "Show item thumbnail, name, description, creator." 131 msgstr "" 132 133 #: admin.php:227 scripts-styles.php:127 134 msgid "Display share buttons" 135 msgstr "" 136 137 #: admin.php:229 scripts-styles.php:128 138 msgid "Show share buttons with links to YOUR site." 139 msgstr "" 140 141 #: admin.php:233 scripts-styles.php:131 142 msgid "Display Facebook comments" 143 msgstr "" 144 145 #: admin.php:235 scripts-styles.php:132 146 msgid "Show Facebook comments in your items." 147 msgstr "" 148 149 #: admin.php:241 435 #: admin.php:388 150 436 msgid "Sticky Header Preferences" 151 437 msgstr "" 152 438 153 #: admin.php:244 scripts-styles.php:134 154 msgid "Height" 155 msgstr "" 156 157 #: admin.php:246 scripts-styles.php:135 158 msgid "px" 159 msgstr "" 160 161 #: admin.php:248 scripts-styles.php:136 162 msgid "" 163 "Use this if your website has top header that's always visible, even while " 164 "scrolling down." 165 msgstr "" 166 167 #: admin.php:254 439 #: admin.php:401 168 440 msgid "Appearance Preferences" 169 441 msgstr "" 170 442 171 #: admin.php: 257443 #: admin.php:404 172 444 msgid "Display embedded items on" 173 445 msgstr "" 174 446 175 #: admin.php: 259447 #: admin.php:406 176 448 msgid "Posts & Pages Only" 177 449 msgstr "" 178 450 179 #: admin.php: 260451 #: admin.php:407 180 452 msgid "All pages (singular, archive, ect.)" 181 453 msgstr "" 182 454 183 #: admin.php: 263455 #: admin.php:410 184 456 msgid "" 185 457 "Whether to show the embedded content only in <a href=\"%s\" target=\"_blank" … … 188 460 msgstr "" 189 461 190 #: admin.php: 269462 #: admin.php:416 191 463 msgid "Item Recommendations" 192 464 msgstr "" 193 465 194 #: admin.php:273 scripts-styles.php:129 195 msgid "Display more recommendations" 196 msgstr "" 197 198 #: admin.php:275 admin.php:465 admin.php:518 scripts-styles.php:130 199 msgid "Show recommendations for more items." 200 msgstr "" 201 202 #: admin.php:283 widgets.php:181 466 #: admin.php:430 widgets.php:181 203 467 msgid "Tags" 204 468 msgstr "" 205 469 206 #: admin.php: 286widgets.php:182470 #: admin.php:433 widgets.php:182 207 471 msgid "All" 208 472 msgstr "" 209 473 210 #: admin.php: 290widgets.php:183474 #: admin.php:437 widgets.php:183 211 475 msgid "Fun" 212 476 msgstr "" 213 477 214 #: admin.php: 294widgets.php:184478 #: admin.php:441 widgets.php:184 215 479 msgid "Pop" 216 480 msgstr "" 217 481 218 #: admin.php: 298widgets.php:185482 #: admin.php:445 widgets.php:185 219 483 msgid "Geek" 220 484 msgstr "" 221 485 222 #: admin.php: 302widgets.php:186486 #: admin.php:449 widgets.php:186 223 487 msgid "Sports" 224 488 msgstr "" 225 489 226 #: admin.php: 306widgets.php:187490 #: admin.php:453 widgets.php:187 227 491 msgid "Editor's Pick" 228 492 msgstr "" 229 493 230 #: admin.php: 311widgets.php:190494 #: admin.php:458 widgets.php:190 231 495 msgid "Custom Tags" 232 496 msgstr "" 233 497 234 #: admin.php: 312498 #: admin.php:459 235 499 msgid "Comma separated tags, e.g. food, rap, weather" 236 500 msgstr "" 237 501 238 #: admin.php: 320502 #: admin.php:467 239 503 msgid "Authentication" 240 504 msgstr "" 241 505 242 #: admin.php: 322506 #: admin.php:469 243 507 msgid "API Key" 244 508 msgstr "" 245 509 246 #: admin.php: 331510 #: admin.php:478 247 511 msgid "Related Content Customization" 248 512 msgstr "" 249 513 250 #: admin.php: 335widgets.php:162514 #: admin.php:482 widgets.php:162 251 515 msgid "Number of Items" 252 516 msgstr "" 253 517 254 #: admin.php: 356widgets.php:154518 #: admin.php:503 widgets.php:154 255 519 msgid "Items layout" 256 520 msgstr "" 257 521 258 #: admin.php: 358widgets.php:156522 #: admin.php:505 widgets.php:156 259 523 msgid "Large Images" 260 524 msgstr "" 261 525 262 #: admin.php: 359widgets.php:157526 #: admin.php:506 widgets.php:157 263 527 msgid "Horizontal Images" 264 528 msgstr "" 265 529 266 #: admin.php: 360widgets.php:158530 #: admin.php:507 widgets.php:158 267 531 msgid "No Images" 268 532 msgstr "" 269 533 270 #: admin.php: 383534 #: admin.php:530 271 535 msgid "Open Items at" 272 536 msgstr "" 273 537 274 #: admin.php: 385widgets.php:195538 #: admin.php:532 widgets.php:195 275 539 msgid "" 276 540 "<a href=\"%s\" target=\"_blank\">Create</a> a new page containing the <code>" … … 279 543 msgstr "" 280 544 281 #: admin.php: 392widgets.php:203545 #: admin.php:539 widgets.php:203 282 546 msgid "— Select —" 283 547 msgstr "" 284 548 285 #: admin.php: 403549 #: admin.php:550 286 550 msgid "Automatically Add Recommendations" 287 551 msgstr "" 288 552 289 #: admin.php: 406553 #: admin.php:553 290 554 msgid "Active" 291 555 msgstr "" 292 556 293 #: admin.php: 409557 #: admin.php:556 294 558 msgid "Disable" 295 559 msgstr "" 296 560 297 #: admin.php: 410561 #: admin.php:557 298 562 msgid "Enable" 299 563 msgstr "" 300 564 301 #: admin.php: 415565 #: admin.php:562 302 566 msgid "Location" 303 567 msgstr "" 304 568 305 #: admin.php: 418569 #: admin.php:565 306 570 msgid "Above the content" 307 571 msgstr "" 308 572 309 #: admin.php: 419573 #: admin.php:566 310 574 msgid "Bellow the content" 311 575 msgstr "" 312 576 313 #: admin.php: 435577 #: admin.php:582 314 578 msgid "Item Shortcode" 315 579 msgstr "" 316 580 317 #: admin.php: 436581 #: admin.php:583 318 582 msgid "Choose any Playful Content item from %s and easily embed it in a post." 319 583 msgstr "" 320 584 321 #: admin.php: 437585 #: admin.php:584 322 586 msgid "" 323 587 "For basic use, paste the item URL into your text editor and go to the visual " … … 325 589 msgstr "" 326 590 327 #: admin.php: 438591 #: admin.php:585 328 592 msgid "" 329 593 "For more advance usage, use the following shortcode if you want to adjust " … … 331 595 msgstr "" 332 596 333 #: admin.php: 440597 #: admin.php:587 334 598 msgid "" 335 599 "You can set default appearance settings in the <a href=\"%s\">Site Settings</" … … 337 601 msgstr "" 338 602 339 #: admin.php: 441603 #: admin.php:588 340 604 msgid "" 341 605 "Or you can override the default appearance and customize each item with the " … … 343 607 msgstr "" 344 608 345 #: admin.php: 445609 #: admin.php:592 346 610 msgid "The URL of the item that will be displayed." 347 611 msgstr "" 348 612 349 #: admin.php: 446613 #: admin.php:593 350 614 msgid "Type: URL" 351 615 msgstr "" 352 616 353 #: admin.php: 450617 #: admin.php:597 354 618 msgid "Show item info (thumbnail, name, description, editor, etc)." 355 619 msgstr "" 356 620 357 #: admin.php: 451 admin.php:456 admin.php:461 admin.php:466 admin.php:509358 #: admin.php: 514 admin.php:519621 #: admin.php:598 admin.php:603 admin.php:608 admin.php:613 admin.php:656 622 #: admin.php:661 admin.php:666 359 623 msgid "Type: Boolean (true/false) ; Default: true" 360 624 msgstr "" 361 625 362 #: admin.php: 455 admin.php:508626 #: admin.php:602 admin.php:655 363 627 msgid "Show sharing buttons." 364 628 msgstr "" 365 629 366 #: admin.php: 460 admin.php:513630 #: admin.php:607 admin.php:660 367 631 msgid "Show comments control from the item page." 368 632 msgstr "" 369 633 370 #: admin.php: 470 admin.php:523634 #: admin.php:617 admin.php:670 371 635 msgid "" 372 636 "Destination page, containing the [playbuzz-section] shortcode, where new " … … 374 638 msgstr "" 375 639 376 #: admin.php: 471 admin.php:524640 #: admin.php:618 admin.php:671 377 641 msgid "Type: URL ; Default: https://www.playbuzz.com/" 378 642 msgstr "" 379 643 380 #: admin.php: 475 admin.php:528644 #: admin.php:622 admin.php:675 381 645 msgid "Define custom width in pixels." 382 646 msgstr "" 383 647 384 #: admin.php: 476 admin.php:481 admin.php:529 admin.php:534648 #: admin.php:623 admin.php:628 admin.php:676 admin.php:681 385 649 msgid "Type: String ; Default: auto" 386 650 msgstr "" 387 651 388 #: admin.php: 480 admin.php:533652 #: admin.php:627 admin.php:680 389 653 msgid "Define custom height in pixels." 390 654 msgstr "" 391 655 392 #: admin.php: 485 admin.php:538656 #: admin.php:632 admin.php:685 393 657 msgid "Define custom margin-top in pixels." 394 658 msgstr "" 395 659 396 #: admin.php: 486 admin.php:539660 #: admin.php:633 admin.php:686 397 661 msgid "Type: String ; Default: 0px" 398 662 msgstr "" 399 663 400 #: admin.php: 494664 #: admin.php:641 401 665 msgid "Section Shortcode" 402 666 msgstr "" 403 667 404 #: admin.php: 495668 #: admin.php:642 405 669 msgid "" 406 670 "Choose any list of Playful Items in a specific vertical from %s and easily " … … 409 673 msgstr "" 410 674 411 #: admin.php: 496675 #: admin.php:643 412 676 msgid "" 413 677 "For basic use, paste the section URL into your text editor and go to the " … … 415 679 msgstr "" 416 680 417 #: admin.php: 497681 #: admin.php:644 418 682 msgid "" 419 683 "Use the following shortcode if you want to adjust the settings of your " … … 421 685 msgstr "" 422 686 423 #: admin.php: 499687 #: admin.php:646 424 688 msgid "" 425 689 "You can tweak the general settings for the section with the following " … … 427 691 msgstr "" 428 692 429 #: admin.php: 503693 #: admin.php:650 430 694 msgid "Filters the content shown by comma separated tags." 431 695 msgstr "" 432 696 433 #: admin.php: 504697 #: admin.php:651 434 698 msgid "Type: String ; Default: All" 435 699 msgstr "" 436 700 437 #: admin.php: 549701 #: admin.php:696 438 702 msgid "We Are Listening" 439 703 msgstr "" 440 704 441 #: admin.php: 551705 #: admin.php:698 442 706 msgid "" 443 707 "We’d love to know about your experiences with our WordPress plugin and " … … 445 709 msgstr "" 446 710 447 #: admin.php: 559711 #: admin.php:706 448 712 msgid "Your Name" 449 713 msgstr "" 450 714 451 #: admin.php: 563715 #: admin.php:710 452 716 msgid "Email (so we can write you back)" 453 717 msgstr "" 454 718 455 #: admin.php: 567719 #: admin.php:714 456 720 msgid "Message" 457 721 msgstr "" 458 722 459 #: admin.php: 568723 #: admin.php:715 460 724 msgid "What's on your mind?" 461 725 msgstr "" 462 726 463 #: admin.php: 570727 #: admin.php:717 464 728 msgid "WordPress plugin feedback" 465 729 msgstr "" 466 730 467 #: admin.php: 571731 #: admin.php:718 468 732 msgid "Submit" 469 733 msgstr "" 470 734 471 #: admin.php: 578735 #: admin.php:725 472 736 msgid "Enjoying the Playbuzz WordPress Plugin?" 473 737 msgstr "" 474 738 475 #: admin.php: 579739 #: admin.php:726 476 740 msgid "" 477 741 "<a href=\"%s\" target=\"_blank\">Rate us</a> on the WordPress Plugin " … … 479 743 msgstr "" 480 744 481 #: admin.php: 585745 #: admin.php:732 482 746 msgid "Become a Premium Playbuzz Publisher" 483 747 msgstr "" 484 748 485 #: admin.php: 586749 #: admin.php:733 486 750 msgid "" 487 751 "Want to learn how Playbuzz can take your publication’s engagement to new " … … 489 753 msgstr "" 490 754 491 #: admin.php: 586755 #: admin.php:733 492 756 msgid "Lets Talk!" 493 757 msgstr "" 494 758 495 #: admin.php: 592759 #: admin.php:739 496 760 msgid "Join the Playbuzz Publishers Community" 497 761 msgstr "" 498 762 499 #: index.php: 43763 #: index.php:63 500 764 msgid "Settings" 501 msgstr ""502 503 #: scripts-styles.php:65504 msgid "Playbuzz Content"505 msgstr ""506 507 #: scripts-styles.php:67508 msgid "+ Create Your Own"509 msgstr ""510 511 #: scripts-styles.php:68512 msgid "Search Term"513 msgstr ""514 515 #: scripts-styles.php:69516 msgid "Search my items"517 msgstr ""518 519 #: scripts-styles.php:70520 msgid "Results for"521 msgstr ""522 523 #: scripts-styles.php:71524 msgid "No results found"525 msgstr ""526 527 #: scripts-styles.php:72528 msgid "Please try again with a different search."529 msgstr ""530 531 #: scripts-styles.php:73532 msgid "Change User"533 msgstr ""534 535 #: scripts-styles.php:74536 msgid "Server error"537 msgstr ""538 539 #: scripts-styles.php:75540 msgid "Please try again in a few minutes."541 msgstr ""542 543 #: scripts-styles.php:76544 msgid "No user"545 msgstr ""546 547 #: scripts-styles.php:77548 msgid "Set User"549 msgstr ""550 551 #: scripts-styles.php:78552 msgid ""553 "Go to the <a href=\"options-general.php?page=playbuzz&tab=embed\" target="554 "\"_blank\">Settings</a> and set your Playbuzz.com username."555 msgstr ""556 557 #: scripts-styles.php:79558 msgid "You don't have any items (yet!)."559 msgstr ""560 561 #: scripts-styles.php:80562 msgid ""563 "Go to <a href=\"https://www.playbuzz.com/\" target=\"_blank\">Playbuzz.com</"564 "a> to create your own playful content and embed on your site."565 msgstr ""566 567 #: scripts-styles.php:81568 msgid "page"569 msgstr ""570 571 #: scripts-styles.php:82572 msgid "Jan"573 msgstr ""574 575 #: scripts-styles.php:83576 msgid "Feb"577 msgstr ""578 579 #: scripts-styles.php:84580 msgid "Mar"581 msgstr ""582 583 #: scripts-styles.php:85584 msgid "Apr"585 msgstr ""586 587 #: scripts-styles.php:86588 msgid "May"589 msgstr ""590 591 #: scripts-styles.php:87592 msgid "Jun"593 msgstr ""594 595 #: scripts-styles.php:88596 msgid "Jul"597 msgstr ""598 599 #: scripts-styles.php:89600 msgid "Aug"601 msgstr ""602 603 #: scripts-styles.php:90604 msgid "Sep"605 msgstr ""606 607 #: scripts-styles.php:91608 msgid "Oct"609 msgstr ""610 611 #: scripts-styles.php:92612 msgid "Nov"613 msgstr ""614 615 #: scripts-styles.php:93616 msgid "Dec"617 msgstr ""618 619 #: scripts-styles.php:94620 msgid "Show"621 msgstr ""622 623 #: scripts-styles.php:95624 msgid "All Types"625 msgstr ""626 627 #: scripts-styles.php:96628 msgid "Personality Quiz"629 msgstr ""630 631 #: scripts-styles.php:97632 msgid "List"633 msgstr ""634 635 #: scripts-styles.php:98636 msgid "Trivia"637 msgstr ""638 639 #: scripts-styles.php:99640 msgid "Poll"641 msgstr ""642 643 #: scripts-styles.php:100644 msgid "Ranked List"645 msgstr ""646 647 #: scripts-styles.php:101648 msgid "Gallery Quiz"649 msgstr ""650 651 #: scripts-styles.php:102652 msgid "Sort By"653 msgstr ""654 655 #: scripts-styles.php:103656 msgid "Relevance"657 msgstr ""658 659 #: scripts-styles.php:104660 msgid "Views"661 msgstr ""662 663 #: scripts-styles.php:105664 msgid "Date"665 msgstr ""666 667 #: scripts-styles.php:106668 msgid "Discover Playful Content"669 msgstr ""670 671 #: scripts-styles.php:107672 msgid "Featured Items"673 msgstr ""674 675 #: scripts-styles.php:108676 msgid "Created by"677 msgstr ""678 679 #: scripts-styles.php:109680 msgid "by"681 msgstr ""682 683 #: scripts-styles.php:110684 msgid "By"685 msgstr ""686 687 #: scripts-styles.php:111688 msgid "on"689 msgstr ""690 691 #: scripts-styles.php:112692 msgid "items"693 msgstr ""694 695 #: scripts-styles.php:113696 msgid "View"697 msgstr ""698 699 #: scripts-styles.php:114700 msgid "Embed"701 msgstr ""702 703 #: scripts-styles.php:115704 msgid "Preview item"705 msgstr ""706 707 #: scripts-styles.php:116708 msgid "Playbuzz item does not exist"709 msgstr ""710 711 #: scripts-styles.php:117712 msgid "Check shortcode URL in the text editor."713 msgstr ""714 715 #: scripts-styles.php:118716 msgid "Your item will be embedded here"717 msgstr ""718 719 #: scripts-styles.php:119720 msgid "Playbuzz Item Settings"721 msgstr ""722 723 #: scripts-styles.php:120724 msgid "Item Settings"725 msgstr ""726 727 #: scripts-styles.php:121728 msgid "Embedded Item Appearance"729 msgstr ""730 731 #: scripts-styles.php:122732 msgid "Use site default settings"733 msgstr ""734 735 #: scripts-styles.php:123736 msgid "Configure default settings"737 msgstr ""738 739 #: scripts-styles.php:124740 msgid "Custom"741 msgstr ""742 743 #: scripts-styles.php:133744 msgid "Site has fixed (sticky) top header"745 msgstr ""746 747 #: scripts-styles.php:137748 msgid "Cancel"749 msgstr ""750 751 #: scripts-styles.php:138752 msgid "Update Item"753 msgstr ""754 755 #: scripts-styles.php:139756 msgid "Feedback sent, thank you!"757 msgstr ""758 759 #: scripts-styles.php:140760 msgid "Something went wrong please try again..."761 msgstr ""762 763 #: scripts-styles.php:141764 msgid "Some required fields are missing."765 765 msgstr "" 766 766 … … 793 793 msgstr "" 794 794 795 #. #-#-#-#-# plugin.pot (Playbuzz 0. 9.0) #-#-#-#-#795 #. #-#-#-#-# plugin.pot (Playbuzz 0.8.0) #-#-#-#-# 796 796 #. Plugin URI of the plugin/theme 797 #. #-#-#-#-# plugin.pot (Playbuzz 0. 9.0) #-#-#-#-#797 #. #-#-#-#-# plugin.pot (Playbuzz 0.8.0) #-#-#-#-# 798 798 #. Author URI of the plugin/theme 799 799 msgid "https://www.playbuzz.com/" -
playbuzz/trunk/readme.txt
r1380277 r1423096 1 === Playbuzz ===1 === Playbuzz === 2 2 Contributors: playbuzz 3 3 Tags: Playbuzz, playful content, feed, feeds, embed, oembed, content, viral, related, syndication, related content, quiz, quizzes, test yourself, list, poll, Personality Quiz, personality, entertainment, celebs, celebrities, celebrity, animals 4 4 Requires at least: 3.9 5 Tested up to: 4. 35 Tested up to: 4.5.2 6 6 Stable tag: 0.9.1 7 7 License: GPLv2 or later … … 12 12 == Description == 13 13 14 The Playbuzz plugin enables WordPress users to easily embed interactive content within any WordPress site or blog.15 16 T ake your site to new heights of audience engagement and shareability when you publish interactive content powered by the Playbuzz platform. You can begin adding our syndication-ready content to your blog or site in just minutes!14 The Playbuzz plugin enables you to quickly add interactive content to your WordPress site. You can seamlessly embed a Playbuzz item you’ve created or select any user-generated item from the Playbuzz network. The Playbuzz network consists of thousands of items that can compliment any theme or topic, including items from premium publishers like TIME, Huffington Post, The Telegraph, CNBC, and more. 15 16 The Playbuzz plugin provides WordPress site owners with a simple and user-friendly way to incorporate Playbuzz items directly in their Wordpress site. It’s never been easier to feature formats like Video Snaps, Countdowns, Polls and Quizzes on your website or blog. The Playful Content available through the Playbuzz WordPress plugin appears natively within your site. The items are optimized for both mobile and web and are known to significantly boost user engagement and time spent on site. 17 17 18 18 = Features = 19 19 20 * Quickly find the most relevant Playbuzz items to embed in the content you're working on,without leaving your edit screen.21 * Browse your own published items or search for content by the entire user community.20 * Quickly find and embed relevant Playbuzz items in your site - all without leaving your edit screen. 21 * Browse your own published items or search the Playbuzz network for content created by other users, brands, and publishers 22 22 * Refine results by content category, format, popularity and creation date. 23 * Automate the plugin to display only the content relevant to your site, using tag filters.23 * Automate the plugin to display only the content relevant to your site, by using tag filters. 24 24 25 25 = How to Embed Playbuzz Items = 26 26 27 * Use Playbuzz’s instant search panel to search and browse content from Playbuzz. Simply find an item that you like and embed it directly in your post without leaving the editor.28 * Choose any item (or create your own!) from [Playbuzz.com](https://www.playbuzz.com), copy the item’s URL, and paste it into your texteditor. Then simply click over to the visual editor to confirm that the item loads properly.27 * New! Use Playbuzz’s instant search panel to search and browse Playful Content from the Playbuzz network. Simply find an item that you like and embed it directly in your post without leaving the editor. 28 * Choose any item (or create your own!) from Playbuzz.com, copy the item’s URL, and paste it into your HTML editor. Then simply click over to the visual editor to confirm that the item loads properly. 29 29 * For advanced customization, the plugin supports shortcodes. 30 30 … … 42 42 5. Configure the plugin by going to the "Settings" -> "Playbuzz". 43 43 44 = Updating = 45 * Use WordPress automatic updates to upgrade to the latest version. Ensure to backup your site just in case. 46 44 47 = Minimum Requirements = 45 48 * WordPress version 3.9 or greater. … … 55 58 56 59 = Why should I embed content from the Playbuzz network? = 57 Our content is created by our network of partners, our community of users and our editorial staff. We feature highly engaging items around many popular topics. Embedding these items on your site is likely to boost many of your engagement and performance metrics: page views, ad impressions, time on page, time on site, pages per visit, social media share rates and more. These items enhance your site’s content offering in a meaningfully engagingway.58 59 = Can Playbuzz help my site to go viral? =60 Absolutely! We obviously can’t guarantee that you’ll get millions of page views, but our content platform is optimized to encourage maximum sharing. Embeds powered by the Playbuzzplugin include the option to share each content item on social networks such as Facebook and Twitter. Any click on these share buttons will create a share link directing users to your website.60 Interactive, visual content is a proven way to increase engagement on your blog or website. You can create your own Playbuzz item or select an item from our network of world-class publishing partners or community creators. We feature engaging items that address many popular topics, including sports, entertainment, news, and politics. Embedding a Playbuzz item on your WordPress site will increase your site’s engagement and performance, including page views, ad impressions, time on page, time on site, pages per visit, social media share rates and more. Above all, these items enhance your site’s content offering in an extremely engaging and share-worthy way. 61 62 = Can Playbuzz help increase the shareability of my WordPress site? = 63 Absolutely! We obviously can’t guarantee that you’ll get millions of pageviews, but our content platform is optimized to encourage maximum sharing. Embeds powered by our plugin include the option to share each content item on social networks such as Facebook and Twitter. Any click on these share buttons will create a share link directing users to your website. 61 64 62 65 = Does Playbuzz work on mobile and tablet versions of my site? = 63 Yes. Playbuzz's UI is responsive and mobile compatible.66 Yes. Playbuzz's UI is responsive and mobile friendly. 64 67 65 68 = Can I create my own content? = 66 Y es. The plugin makes it fast and easy to find your own content in a dedicated tab interface. We encourage you to use our platform, which is free for non-commercial uses, to [create original interactive content](https://www.playbuzz.com/create).67 68 = Will th e Playbuzzplugin slow down my website? =69 No , but test it and see for yourself. Playbuzz uses a large content delivery network to ensure fast, optimizedload times.69 You bet! And the plugin makes it incredibly easy to find your own items created in a dedicated tab interface. We encourage you to use our free platform to create original content here: https://www.playbuzz.com/create 70 71 = Will this plugin slow down my website? = 72 Nope. Test it and see for yourself. Playbuzz uses a large, efficient content delivery network to ensure super-fast load times. 70 73 71 74 = How do I embed Playbuzz content? = 72 The WordPress plugin supports two ways to embed Playbuzz content . For basic use, you can search for content from within the plugin, or embed content you’ve already found simply by pasting its [Playbuzz.com](https://www.playbuzz.com) URL into the text editor. Advanced users can leverage the power of the plugin’s shortcodes,using attributes to customize embed settings.75 The WordPress plugin supports two ways to embed Playbuzz content: For basic use, you can search for content from within the plugin, or embed content you’ve already found simply by pasting its [Playbuzz.com](https://www.playbuzz.com) URL into the text editor. Advanced users can use Playbuzz shortcodes using attributes to customize embed settings. 73 76 74 77 = I’m using an older version of WordPress, and I have a lot of plugins installed. I’ve upgraded the Playbuzz plugin, but some of the features seem to not be working. What should I do? = 75 To work around this issue, go to the Plugins panel, click "Deactivate" under the Playbuzz plugin, thenre-activate the plugin, and you should be all set.78 To work around this issue, go to the Plugins panel, click “Deactivate” under the Playbuzz plugin, re-activate the plugin, and you should be all set. 76 79 77 80 = Wait – I've got more questions! = 78 For more information, please [contact us](https://www.playbuzz.com/contact), and we’ll do our best to reply within one business day. You can also sign up for product and updates and tips via email here.81 For more information, please feel free to [contact us](https://www.playbuzz.com/contact), and we’ll do our best to reply within one business day. You can also sign up for product and updates and tips via email [here](http://eepurl.com/bc3LRn). 79 82 80 83 == Screenshots == … … 88 91 == Changelog == 89 92 90 = 0.9.0 (2015-07-09) = 93 = 0.9.1 (2016-03-28) = 94 * Added Playbuzz's new formats to the filtering options 95 * Switched to a new discovery API 96 97 = 0.9.0 (2015-06-dd) = 91 98 * Security: Harden JS code using dom construction instead of string construction to prevent possible XSS 92 99 * Minimum Requirements: WordPress 3.9 or greater -
playbuzz/trunk/scripts-styles.php
r1195284 r1423096 100 100 'ranked_list' => __( 'Ranked List', 'playbuzz' ), 101 101 'gallery_quiz' => __( 'Gallery Quiz', 'playbuzz' ), 102 'flip_cards' => __( 'Flip Cards', 'playbuzz' ), 103 'swiper' => __( 'Swiper', 'playbuzz' ), 104 'video_snaps' => __( 'Video Snaps', 'playbuzz' ), 105 'countdown' => __( 'Countdown', 'playbuzz' ), 102 106 'sort_by' => __( 'Sort By', 'playbuzz' ), 103 107 'relevance' => __( 'Relevance', 'playbuzz' ),
Note: See TracChangeset
for help on using the changeset viewer.