SEOPress - Version 2.7.2

Version Description

  • NEW Add Vietnamese language (thanks to Anh)
  • NEW Add seopress_titles_canonical hook to filter canonical URL tag
  • NEW Add seopress_social_og_title hook to filter OG title tag
  • NEW Add seopress_social_og_desc hook to filter OG description tag
  • NEW Add seopress_social_og_thumb hook to filter OG thumbnail tag
  • NEW Add seopress_social_og_url hook to filter OG URL tag
  • NEW Add seopress_social_og_site_name hook to filter OG site name tag
  • NEW Add seopress_social_og_locale hook to filter OG locale tag
  • NEW Add seopress_social_twitter_card_title hook to filter Twitter card title tag
  • NEW Add seopress_social_twitter_card_desc hook to filter Twitter card description tag
  • NEW Add seopress_social_twitter_card_thumb hook to filter Twitter card thumbnail tag
  • NEW Add seopress_social_twitter_card_summary hook to filter Twitter card summary tag
  • NEW Add seopress_social_twitter_card_site hook to filter Twitter card site tag
  • NEW Add seopress_social_twitter_card_creator hook to filter Twitter card creator tag
  • NEW Add seopress_dublin_core_title hook to filter Dublic Core title tag
  • NEW Add seopress_dublin_core_desc hook to filter Dublic Core description tag
  • NEW Add seopress_dublin_core_relation hook to filter Dublic Core relation tag
  • NEW Add seopress_dublin_core_source hook to filter Dublic Core source tag
  • INFO Remove canonical URL if noindex set
  • FIX Notice: Undefined variable: seopress_titles_title_template
  • FIX Notice: Undefined variable: seopress_titles_description_template
  • FIX Improve breadcrumbs compatibility with WooCommerce
  • FIX Dutch translation
Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 2.7.2
Comparing to
See all releases

Code changes from version 2.7.1 to 2.7.2

contributors.txt CHANGED
@@ -22,4 +22,12 @@ Translators:
22
  - Italian: Déborah Donnier @deborahdonnier
23
  - Spanish: Rafael Salguero
24
  - German: @likemike2425
25
- - Japan: @s_tayama and @miccweb
 
 
 
 
 
 
 
 
22
  - Italian: Déborah Donnier @deborahdonnier
23
  - Spanish: Rafael Salguero
24
  - German: @likemike2425
25
+ - Japan: @s_tayama and @miccweb
26
+ - Dutch: Sebastiaan Hendriks
27
+ - Vietnamese: Anh
28
+ - Russian: @Dmitriy
29
+ - Tamil: Sankar Srinivasan
30
+ - Brazilian Portuguese: Daniel Pechmann
31
+ - Telugu: Manoj Kumar
32
+ - Indonesian: Tomtom
33
+ - Bulgarian: @ilivanov
inc/functions/options-social.php CHANGED
@@ -350,6 +350,11 @@ function seopress_social_facebook_og_url_hook() {
350
  } else {
351
  $seopress_social_og_url = '<meta property="og:url" content="'.$current_url.'" />';
352
  }
 
 
 
 
 
353
 
354
  echo $seopress_social_og_url."\n";
355
  }
@@ -362,6 +367,11 @@ function seopress_social_facebook_og_site_name_hook() {
362
 
363
  $seopress_social_og_site_name = '<meta property="og:site_name" content="'.get_bloginfo('name').'" />';
364
 
 
 
 
 
 
365
  echo $seopress_social_og_site_name."\n";
366
  }
367
  }
@@ -372,8 +382,15 @@ function seopress_social_facebook_og_locale_hook() {
372
  if (seopress_social_facebook_og_option() =='1') {
373
 
374
  $seopress_social_og_locale = '<meta property="og:locale" content="'.get_locale().'" />';
 
 
 
 
 
375
 
376
- echo $seopress_social_og_locale."\n";
 
 
377
  }
378
  }
379
  add_action( 'wp_head', 'seopress_social_facebook_og_locale_hook', 1 );
@@ -392,6 +409,10 @@ function seopress_social_facebook_og_type_hook() {
392
  $seopress_social_og_type = '<meta property="og:type" content="object" />';
393
  }
394
  if (isset($seopress_social_og_type)) {
 
 
 
 
395
  echo $seopress_social_og_type."\n";
396
  }
397
  }
@@ -421,32 +442,43 @@ function seopress_social_fb_title_home_option() {
421
  }
422
 
423
  function seopress_social_fb_title_hook() {
 
 
 
424
  if (is_home()) {
425
  if (seopress_social_fb_title_home_option() !='') {
426
- echo '<meta property="og:title" content="'.seopress_social_fb_title_home_option().'" />';
427
- echo "\n";
428
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
429
- echo '<meta property="og:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
430
- echo "\n";
431
  }
432
  } elseif (is_tax() || is_category() || is_tag()) {
433
  if (seopress_social_fb_title_term_option() !='') {
434
- echo '<meta property="og:title" content="'.seopress_social_fb_title_term_option().'" />';
435
- echo "\n";
436
  } else {
437
- echo '<meta property="og:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
438
- echo "\n";
439
  }
440
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_title_post_option() !='') {
441
- echo '<meta property="og:title" content="'.seopress_social_fb_title_post_option().'" />';
442
- echo "\n";
443
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
444
- echo '<meta property="og:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
445
- echo "\n";
446
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_title() !='') {
447
- echo '<meta property="og:title" content="'.the_title_attribute('echo=0').'" />';
448
- echo "\n";
449
  }
 
 
 
 
 
 
 
 
450
  }
451
  add_action( 'wp_head', 'seopress_social_fb_title_hook', 1 );
452
 
@@ -474,33 +506,44 @@ function seopress_social_fb_desc_home_option() {
474
 
475
  function seopress_social_fb_desc_hook() {
476
  global $post;
 
 
 
477
  setup_postdata( $post );
478
  if (is_home()) {
479
  if (seopress_social_fb_desc_home_option() !='') {
480
- echo '<meta property="og:description" content="'.seopress_social_fb_desc_home_option().'" />';
481
- echo "\n";
482
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
483
- echo '<meta property="og:description" content="'.seopress_titles_the_description_content().'" />';
484
- echo "\n";
485
  }
486
  } elseif (is_tax() || is_category() || is_tag()) {
487
  if (seopress_social_fb_desc_term_option() !='') {
488
- echo '<meta property="og:description" content="'.seopress_social_fb_desc_term_option().'" />';
489
- echo "\n";
490
  } elseif (term_description() !='') {
491
- echo '<meta property="og:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
492
- echo "\n";
493
  }
494
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_desc_post_option() !='') {
495
- echo '<meta property="og:description" content="'.seopress_social_fb_desc_post_option().'" />';
496
- echo "\n";
497
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
498
- echo '<meta property="og:description" content="'.seopress_titles_the_description_content().'" />';
499
- echo "\n";
500
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_excerpt() !='') {
501
- echo '<meta property="og:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
502
- echo "\n";
503
- }
 
 
 
 
 
 
 
 
504
  }
505
  add_action( 'wp_head', 'seopress_social_fb_desc_hook', 1 );
506
 
@@ -540,24 +583,35 @@ function seopress_social_fb_img_home_option() {
540
  }
541
 
542
  function seopress_social_fb_img_hook() {
 
 
 
543
  if (is_home()) {
544
  if (seopress_social_fb_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
545
- echo '<meta property="og:image" content="'.seopress_social_fb_img_home_option().'" />';
546
- echo "\n";
547
  }
548
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_img_post_option() !='') {
549
- echo '<meta property="og:image" content="'.seopress_social_fb_img_post_option().'" />';
550
- echo "\n";
551
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && has_post_thumbnail() ) {
552
- echo '<meta property="og:image" content="'.get_the_post_thumbnail_url().'" />';
553
- echo "\n";
554
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_fb_img_term_option() !='') {
555
- echo '<meta property="og:image" content="'.seopress_social_fb_img_term_option().'" />';
556
- echo "\n";
557
  } elseif (seopress_social_facebook_og_option() =='1' && seopress_social_facebook_img_option() !='') {
558
- echo '<meta property="og:image" content="'.seopress_social_facebook_img_option().'" />';
559
- echo "\n";
560
  }
 
 
 
 
 
 
 
 
561
  }
562
  add_action( 'wp_head', 'seopress_social_fb_img_hook', 1 );
563
 
@@ -669,7 +723,10 @@ function seopress_social_twitter_card_summary_hook() {
669
  } else {
670
  $seopress_social_twitter_card_summary = '<meta name="twitter:card" content="summary" />';
671
  }
672
-
 
 
 
673
  echo $seopress_social_twitter_card_summary."\n";
674
  }
675
  }
@@ -681,6 +738,10 @@ function seopress_social_twitter_card_site_hook() {
681
 
682
  $seopress_social_twitter_card_site = '<meta name="twitter:site" content="'.seopress_social_accounts_twitter_option().'" />';
683
 
 
 
 
 
684
  echo $seopress_social_twitter_card_site."\n";
685
  }
686
  }
@@ -688,15 +749,23 @@ add_action( 'wp_head', 'seopress_social_twitter_card_site_hook', 1 );
688
 
689
  //Twitter Creator
690
  function seopress_social_twitter_card_creator_hook() {
 
 
 
691
  if (seopress_social_twitter_card_option() =='1' && get_the_author_meta('twitter') ) {
692
 
693
- $seopress_social_twitter_card_creator = '<meta name="twitter:creator" content="@'.get_the_author_meta('twitter').'" />';
694
- echo $seopress_social_twitter_card_creator."\n";
695
 
696
  } elseif (seopress_social_twitter_card_option() =='1' && seopress_social_accounts_twitter_option() !='' ) {
697
 
698
- $seopress_social_twitter_card_creator = '<meta name="twitter:creator" content="'.seopress_social_accounts_twitter_option().'" />';
699
- echo $seopress_social_twitter_card_creator."\n";
 
 
 
 
 
 
700
  }
701
  }
702
  add_action( 'wp_head', 'seopress_social_twitter_card_creator_hook', 1 );
@@ -724,61 +793,58 @@ function seopress_social_twitter_title_home_option() {
724
  }
725
 
726
  function seopress_social_twitter_title_hook() {
 
 
 
727
  if (seopress_social_twitter_card_og_option() =='1') {
728
  if (is_home()) {
729
  if (seopress_social_fb_title_home_option() !='') {
730
- echo '<meta name="twitter:title" content="'.seopress_social_fb_title_home_option().'" />';
731
- echo "\n";
732
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
733
- echo '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
734
- echo "\n";
735
  }
736
  } elseif (is_tax() || is_category() || is_tag()) {
737
  if (seopress_social_fb_title_term_option() !='') {
738
- echo '<meta name="twitter:title" content="'.seopress_social_fb_title_term_option().'" />';
739
- echo "\n";
740
  } else {
741
- echo '<meta name="twitter:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
742
- echo "\n";
743
  }
744
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_title_post_option() !='') {
745
- echo '<meta name="twitter:title" content="'.seopress_social_fb_title_post_option().'" />';
746
- echo "\n";
747
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
748
- echo '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
749
- echo "\n";
750
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_title() !='') {
751
- echo '<meta name="twitter:title" content="'.the_title_attribute('echo=0').'" />';
752
- echo "\n";
753
  }
754
  } else {
755
  if (is_home()) {
756
  if (seopress_social_twitter_title_home_option() !='') {
757
- echo '<meta name="twitter:title" content="'.seopress_social_twitter_title_home_option().'" />';
758
- echo "\n";
759
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
760
- echo '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
761
- echo "\n";
762
  }
763
  } elseif (is_tax() || is_category() || is_tag()) {
764
  if (seopress_social_twitter_title_term_option() !='') {
765
- echo '<meta name="twitter:title" content="'.seopress_social_twitter_title_term_option().'" />';
766
- echo "\n";
767
  } else {
768
- echo '<meta name="twitter:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
769
- echo "\n";
770
  }
771
  } elseif (is_singular() && seopress_social_twitter_card_option() =='1' && seopress_social_twitter_title_post_option() !='') {
772
- echo '<meta name="twitter:title" content="'.seopress_social_twitter_title_post_option().'" />';
773
- echo "\n";
774
  } elseif (seopress_social_twitter_card_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
775
- echo '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
776
- echo "\n";
777
  } elseif (seopress_social_twitter_card_option() =='1' && get_the_title() !='') {
778
- echo '<meta name="twitter:title" content="'.the_title_attribute('echo=0').'" />';
779
- echo "\n";
780
  }
781
  }
 
 
 
 
 
 
 
 
782
  }
783
  add_action( 'wp_head', 'seopress_social_twitter_title_hook', 1 );
784
 
@@ -807,64 +873,59 @@ function seopress_social_twitter_desc_home_option() {
807
  function seopress_social_twitter_desc_hook() {
808
  global $post;
809
  setup_postdata( $post );
 
 
810
 
811
  if (seopress_social_twitter_card_og_option() =='1') {
812
  if (is_home()) {
813
  if (seopress_social_fb_desc_home_option() !='') {
814
- echo '<meta name="twitter:description" content="'.seopress_social_fb_desc_home_option().'" />';
815
- echo "\n";
816
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
817
- echo '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
818
- echo "\n";
819
  }
820
  } elseif (is_tax() || is_category() || is_tag()) {
821
  if (seopress_social_fb_desc_term_option() !='') {
822
- echo '<meta name="twitter:description" content="'.seopress_social_fb_desc_term_option().'" />';
823
- echo "\n";
824
  } elseif (term_description() !='') {
825
- echo '<meta name="twitter:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
826
- echo "\n";
827
  }
828
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_desc_post_option() !='') {
829
- echo '<meta name="twitter:description" content="'.seopress_social_fb_desc_post_option().'" />';
830
- echo "\n";
831
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
832
- echo '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
833
- echo "\n";
834
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_excerpt() !='') {
835
  setup_postdata( $post );
836
- echo '<meta name="twitter:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
837
- echo "\n";
838
  }
839
  } else {
840
  if (is_home()) {
841
  if (seopress_social_twitter_desc_home_option() !='') {
842
- echo '<meta name="twitter:description" content="'.seopress_social_twitter_desc_home_option().'" />';
843
- echo "\n";
844
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
845
- echo '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
846
- echo "\n";
847
  }
848
  } elseif (is_tax() || is_category() || is_tag()) {
849
  if (seopress_social_twitter_desc_term_option() !='') {
850
- echo '<meta name="twitter:description" content="'.seopress_social_twitter_desc_term_option().'" />';
851
- echo "\n";
852
  } elseif (term_description() !='') {
853
- echo '<meta name="twitter:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
854
- echo "\n";
855
  }
856
  } elseif (is_singular() && seopress_social_twitter_card_option() =='1' && seopress_social_twitter_desc_post_option() !='') {
857
- echo '<meta name="twitter:description" content="'.seopress_social_twitter_desc_post_option().'" />';
858
- echo "\n";
859
  } elseif (seopress_social_twitter_card_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
860
- echo '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
861
- echo "\n";
862
  } elseif (seopress_social_twitter_card_option() =='1' && get_the_excerpt() !='') {
863
  setup_postdata( $post );
864
- echo '<meta name="twitter:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
865
- echo "\n";
866
  }
867
  }
 
 
 
 
 
 
 
868
  }
869
  add_action( 'wp_head', 'seopress_social_twitter_desc_hook', 1 );
870
 
@@ -916,95 +977,85 @@ function seopress_social_twitter_img_home_option() {
916
 
917
  function seopress_social_twitter_img_hook() {
918
  if (seopress_social_twitter_card_option() =='1') {
 
 
 
919
  if (seopress_social_twitter_card_og_option() =='1') {
920
  if (is_home()) {
921
  if (seopress_social_fb_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
922
  if (seopress_social_twitter_img_size_option() =='large') {
923
- echo '<meta name="twitter:image:src" content="'.seopress_social_fb_img_home_option().'" />';
924
- echo "\n";
925
  } else {
926
- echo '<meta name="twitter:image" content="'.seopress_social_fb_img_home_option().'" />';
927
- echo "\n";
928
  }
929
  }
930
  } elseif (seopress_social_fb_img_post_option() !='' && is_singular()) {
931
  if (seopress_social_twitter_img_size_option() =='large') {
932
- echo '<meta name="twitter:image:src" content="'.seopress_social_fb_img_post_option().'" />';
933
- echo "\n";
934
  } else {
935
- echo '<meta name="twitter:image" content="'.seopress_social_fb_img_post_option().'" />';
936
- echo "\n";
937
  }
938
  } elseif (has_post_thumbnail() && is_singular()) {
939
  if (seopress_social_twitter_img_size_option() =='large') {
940
- echo '<meta name="twitter:image:src" content="'.get_the_post_thumbnail_url().'" />';
941
- echo "\n";
942
  } else {
943
- echo '<meta name="twitter:image" content="'.get_the_post_thumbnail_url().'" />';
944
- echo "\n";
945
  }
946
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_fb_img_term_option() !='') {
947
  if (seopress_social_twitter_img_size_option() =='large') {
948
- echo '<meta name="twitter:image:src" content="'.seopress_social_fb_img_term_option().'" />';
949
- echo "\n";
950
  } else {
951
- echo '<meta name="twitter:image" content="'.seopress_social_fb_img_term_option().'" />';
952
- echo "\n";
953
  }
954
  } elseif (seopress_social_facebook_img_option() !='') {
955
  if (seopress_social_twitter_img_size_option() =='large') {
956
- echo '<meta name="twitter:image:src" content="'.seopress_social_facebook_img_option().'" />';
957
- echo "\n";
958
  } else {
959
- echo '<meta name="twitter:image" content="'.seopress_social_facebook_img_option().'" />';
960
- echo "\n";
961
  }
962
  }
963
  } else {
964
  if (is_home()) {
965
  if (seopress_social_twitter_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
966
  if (seopress_social_twitter_img_size_option() =='large') {
967
- echo '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_home_option().'" />';
968
- echo "\n";
969
  } else {
970
- echo '<meta name="twitter:image" content="'.seopress_social_twitter_img_home_option().'" />';
971
- echo "\n";
972
  }
973
  }
974
  } elseif (seopress_social_twitter_img_post_option() !='' && is_singular()) {
975
  if (seopress_social_twitter_img_size_option() =='large') {
976
- echo '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_post_option().'" />';
977
- echo "\n";
978
  } else {
979
- echo '<meta name="twitter:image" content="'.seopress_social_twitter_img_post_option().'" />';
980
- echo "\n";
981
  }
982
  } elseif (has_post_thumbnail() && is_singular()) {
983
  if (seopress_social_twitter_img_size_option() =='large') {
984
- echo '<meta name="twitter:image:src" content="'.get_the_post_thumbnail_url().'" />';
985
- echo "\n";
986
  } else {
987
- echo '<meta name="twitter:image" content="'.get_the_post_thumbnail_url().'" />';
988
- echo "\n";
989
  }
990
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_twitter_img_term_option() !='') {
991
  if (seopress_social_twitter_img_size_option() =='large') {
992
- echo '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_term_option().'" />';
993
- echo "\n";
994
  } else {
995
- echo '<meta name="twitter:image" content="'.seopress_social_twitter_img_term_option().'" />';
996
- echo "\n";
997
  }
998
  } elseif (seopress_social_twitter_img_option() !='') {
999
  if (seopress_social_twitter_img_size_option() =='large') {
1000
- echo '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_option().'" />';
1001
- echo "\n";
1002
  } else {
1003
- echo '<meta name="twitter:image" content="'.seopress_social_twitter_img_option().'" />';
1004
- echo "\n";
1005
  }
1006
  }
1007
  }
 
 
 
 
 
 
 
1008
  }
1009
  }
1010
  add_action( 'wp_head', 'seopress_social_twitter_img_hook', 1 );
350
  } else {
351
  $seopress_social_og_url = '<meta property="og:url" content="'.$current_url.'" />';
352
  }
353
+
354
+ //Hook on post OG URL - 'seopress_social_og_url'
355
+ if (has_filter('seopress_social_og_url')) {
356
+ $seopress_social_og_url = apply_filters('seopress_social_og_url', $seopress_social_og_url);
357
+ }
358
 
359
  echo $seopress_social_og_url."\n";
360
  }
367
 
368
  $seopress_social_og_site_name = '<meta property="og:site_name" content="'.get_bloginfo('name').'" />';
369
 
370
+ //Hook on post OG site name - 'seopress_social_og_site_name'
371
+ if (has_filter('seopress_social_og_site_name')) {
372
+ $seopress_social_og_site_name = apply_filters('seopress_social_og_site_name', $seopress_social_og_site_name);
373
+ }
374
+
375
  echo $seopress_social_og_site_name."\n";
376
  }
377
  }
382
  if (seopress_social_facebook_og_option() =='1') {
383
 
384
  $seopress_social_og_locale = '<meta property="og:locale" content="'.get_locale().'" />';
385
+
386
+ //Hook on post OG locale - 'seopress_social_og_locale'
387
+ if (has_filter('seopress_social_og_locale')) {
388
+ $seopress_social_og_locale = apply_filters('seopress_social_og_locale', $seopress_social_og_locale);
389
+ }
390
 
391
+ if (isset($seopress_social_og_locale) && $seopress_social_og_locale !='') {
392
+ echo $seopress_social_og_locale."\n";
393
+ }
394
  }
395
  }
396
  add_action( 'wp_head', 'seopress_social_facebook_og_locale_hook', 1 );
409
  $seopress_social_og_type = '<meta property="og:type" content="object" />';
410
  }
411
  if (isset($seopress_social_og_type)) {
412
+ //Hook on post OG type - 'seopress_social_og_type'
413
+ if (has_filter('seopress_social_og_type')) {
414
+ $seopress_social_og_type = apply_filters('seopress_social_og_type', $seopress_social_og_type);
415
+ }
416
  echo $seopress_social_og_type."\n";
417
  }
418
  }
442
  }
443
 
444
  function seopress_social_fb_title_hook() {
445
+ //Init
446
+ $seopress_social_og_title ='';
447
+
448
  if (is_home()) {
449
  if (seopress_social_fb_title_home_option() !='') {
450
+ $seopress_social_og_title .= '<meta property="og:title" content="'.seopress_social_fb_title_home_option().'" />';
451
+ $seopress_social_og_title .= "\n";
452
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
453
+ $seopress_social_og_title .= '<meta property="og:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
454
+ $seopress_social_og_title .= "\n";
455
  }
456
  } elseif (is_tax() || is_category() || is_tag()) {
457
  if (seopress_social_fb_title_term_option() !='') {
458
+ $seopress_social_og_title .= '<meta property="og:title" content="'.seopress_social_fb_title_term_option().'" />';
459
+ $seopress_social_og_title .= "\n";
460
  } else {
461
+ $seopress_social_og_title .= '<meta property="og:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
462
+ $seopress_social_og_title .= "\n";
463
  }
464
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_title_post_option() !='') {
465
+ $seopress_social_og_title .= '<meta property="og:title" content="'.seopress_social_fb_title_post_option().'" />';
466
+ $seopress_social_og_title .= "\n";
467
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
468
+ $seopress_social_og_title .= '<meta property="og:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
469
+ $seopress_social_og_title .= "\n";
470
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_title() !='') {
471
+ $seopress_social_og_title .= '<meta property="og:title" content="'.the_title_attribute('echo=0').'" />';
472
+ $seopress_social_og_title .= "\n";
473
  }
474
+
475
+ //Hook on post OG title - 'seopress_social_og_title'
476
+ if (has_filter('seopress_social_og_title')) {
477
+ $seopress_social_og_title = apply_filters('seopress_social_og_title', $seopress_social_og_title);
478
+ }
479
+ if (isset($seopress_social_og_title) && $seopress_social_og_title !='') {
480
+ echo $seopress_social_og_title;
481
+ }
482
  }
483
  add_action( 'wp_head', 'seopress_social_fb_title_hook', 1 );
484
 
506
 
507
  function seopress_social_fb_desc_hook() {
508
  global $post;
509
+ //Init
510
+ $seopress_social_og_desc ='';
511
+
512
  setup_postdata( $post );
513
  if (is_home()) {
514
  if (seopress_social_fb_desc_home_option() !='') {
515
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.seopress_social_fb_desc_home_option().'" />';
516
+ $seopress_social_og_desc .= "\n";
517
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
518
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.seopress_titles_the_description_content().'" />';
519
+ $seopress_social_og_desc .= "\n";
520
  }
521
  } elseif (is_tax() || is_category() || is_tag()) {
522
  if (seopress_social_fb_desc_term_option() !='') {
523
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.seopress_social_fb_desc_term_option().'" />';
524
+ $seopress_social_og_desc .= "\n";
525
  } elseif (term_description() !='') {
526
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
527
+ $seopress_social_og_desc .= "\n";
528
  }
529
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_desc_post_option() !='') {
530
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.seopress_social_fb_desc_post_option().'" />';
531
+ $seopress_social_og_desc .= "\n";
532
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
533
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.seopress_titles_the_description_content().'" />';
534
+ $seopress_social_og_desc .= "\n";
535
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_excerpt() !='') {
536
+ $seopress_social_og_desc .= '<meta property="og:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
537
+ $seopress_social_og_desc .= "\n";
538
+ }
539
+
540
+ //Hook on post OG description - 'seopress_social_og_desc'
541
+ if (has_filter('seopress_social_og_desc')) {
542
+ $seopress_social_og_desc = apply_filters('seopress_social_og_desc', $seopress_social_og_desc);
543
+ }
544
+ if (isset($seopress_social_og_desc) && $seopress_social_og_desc !='') {
545
+ echo $seopress_social_og_desc;
546
+ }
547
  }
548
  add_action( 'wp_head', 'seopress_social_fb_desc_hook', 1 );
549
 
583
  }
584
 
585
  function seopress_social_fb_img_hook() {
586
+ //Init
587
+ $seopress_social_og_thumb ='';
588
+
589
  if (is_home()) {
590
  if (seopress_social_fb_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
591
+ $seopress_social_og_thumb .= '<meta property="og:image" content="'.seopress_social_fb_img_home_option().'" />';
592
+ $seopress_social_og_thumb .= "\n";
593
  }
594
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_img_post_option() !='') {
595
+ $seopress_social_og_thumb .= '<meta property="og:image" content="'.seopress_social_fb_img_post_option().'" />';
596
+ $seopress_social_og_thumb .= "\n";
597
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && has_post_thumbnail() ) {
598
+ $seopress_social_og_thumb .= '<meta property="og:image" content="'.get_the_post_thumbnail_url().'" />';
599
+ $seopress_social_og_thumb .= "\n";
600
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_fb_img_term_option() !='') {
601
+ $seopress_social_og_thumb .= '<meta property="og:image" content="'.seopress_social_fb_img_term_option().'" />';
602
+ $seopress_social_og_thumb .= "\n";
603
  } elseif (seopress_social_facebook_og_option() =='1' && seopress_social_facebook_img_option() !='') {
604
+ $seopress_social_og_thumb .= '<meta property="og:image" content="'.seopress_social_facebook_img_option().'" />';
605
+ $seopress_social_og_thumb .= "\n";
606
  }
607
+
608
+ //Hook on post OG thumbnail - 'seopress_social_og_thumb'
609
+ if (has_filter('seopress_social_og_thumb')) {
610
+ $seopress_social_og_thumb = apply_filters('seopress_social_og_thumb', $seopress_social_og_thumb);
611
+ }
612
+ if (isset($seopress_social_og_thumb) && $seopress_social_og_thumb !='') {
613
+ echo $seopress_social_og_thumb;
614
+ }
615
  }
616
  add_action( 'wp_head', 'seopress_social_fb_img_hook', 1 );
617
 
723
  } else {
724
  $seopress_social_twitter_card_summary = '<meta name="twitter:card" content="summary" />';
725
  }
726
+ //Hook on post Twitter card summary - 'seopress_social_twitter_card_summary'
727
+ if (has_filter('seopress_social_twitter_card_summary')) {
728
+ $seopress_social_twitter_card_summary = apply_filters('seopress_social_twitter_card_summary', $seopress_social_twitter_card_summary);
729
+ }
730
  echo $seopress_social_twitter_card_summary."\n";
731
  }
732
  }
738
 
739
  $seopress_social_twitter_card_site = '<meta name="twitter:site" content="'.seopress_social_accounts_twitter_option().'" />';
740
 
741
+ //Hook on post Twitter card site - 'seopress_social_twitter_card_site'
742
+ if (has_filter('seopress_social_twitter_card_site')) {
743
+ $seopress_social_twitter_card_site = apply_filters('seopress_social_twitter_card_site', $seopress_social_twitter_card_site);
744
+ }
745
  echo $seopress_social_twitter_card_site."\n";
746
  }
747
  }
749
 
750
  //Twitter Creator
751
  function seopress_social_twitter_card_creator_hook() {
752
+ //Init
753
+ $seopress_social_twitter_card_creator ='';
754
+
755
  if (seopress_social_twitter_card_option() =='1' && get_the_author_meta('twitter') ) {
756
 
757
+ $seopress_social_twitter_card_creator .= '<meta name="twitter:creator" content="@'.get_the_author_meta('twitter').'" />';
 
758
 
759
  } elseif (seopress_social_twitter_card_option() =='1' && seopress_social_accounts_twitter_option() !='' ) {
760
 
761
+ $seopress_social_twitter_card_creator .= '<meta name="twitter:creator" content="'.seopress_social_accounts_twitter_option().'" />';
762
+ }
763
+ //Hook on post Twitter card creator - 'seopress_social_twitter_card_creator'
764
+ if (has_filter('seopress_social_twitter_card_creator')) {
765
+ $seopress_social_twitter_card_creator = apply_filters('seopress_social_twitter_card_creator', $seopress_social_twitter_card_creator);
766
+ }
767
+ if (isset($seopress_social_twitter_card_creator) && $seopress_social_twitter_card_creator !='') {
768
+ echo $seopress_social_twitter_card_creator."\n";
769
  }
770
  }
771
  add_action( 'wp_head', 'seopress_social_twitter_card_creator_hook', 1 );
793
  }
794
 
795
  function seopress_social_twitter_title_hook() {
796
+ //Init
797
+ $seopress_social_twitter_card_title ='';
798
+
799
  if (seopress_social_twitter_card_og_option() =='1') {
800
  if (is_home()) {
801
  if (seopress_social_fb_title_home_option() !='') {
802
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_fb_title_home_option().'" />';
 
803
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
804
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
 
805
  }
806
  } elseif (is_tax() || is_category() || is_tag()) {
807
  if (seopress_social_fb_title_term_option() !='') {
808
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_fb_title_term_option().'" />';
 
809
  } else {
810
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
 
811
  }
812
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_title_post_option() !='') {
813
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_fb_title_post_option().'" />';
 
814
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
815
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
 
816
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_title() !='') {
817
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.the_title_attribute('echo=0').'" />';
 
818
  }
819
  } else {
820
  if (is_home()) {
821
  if (seopress_social_twitter_title_home_option() !='') {
822
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_twitter_title_home_option().'" />';
 
823
  } elseif (function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
824
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
 
825
  }
826
  } elseif (is_tax() || is_category() || is_tag()) {
827
  if (seopress_social_twitter_title_term_option() !='') {
828
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_twitter_title_term_option().'" />';
 
829
  } else {
830
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.single_term_title('', false).' - '.get_bloginfo('name').'" />';
 
831
  }
832
  } elseif (is_singular() && seopress_social_twitter_card_option() =='1' && seopress_social_twitter_title_post_option() !='') {
833
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.seopress_social_twitter_title_post_option().'" />';
 
834
  } elseif (seopress_social_twitter_card_option() =='1' && function_exists('seopress_titles_the_title') && seopress_titles_the_title() !='') {
835
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.esc_attr(seopress_titles_the_title()).'" />';
 
836
  } elseif (seopress_social_twitter_card_option() =='1' && get_the_title() !='') {
837
+ $seopress_social_twitter_card_title .= '<meta name="twitter:title" content="'.the_title_attribute('echo=0').'" />';
 
838
  }
839
  }
840
+
841
+ //Hook on post Twitter card title - 'seopress_social_twitter_card_title'
842
+ if (has_filter('seopress_social_twitter_card_title')) {
843
+ $seopress_social_twitter_card_title = apply_filters('seopress_social_twitter_card_title', $seopress_social_twitter_card_title);
844
+ }
845
+ if (isset($seopress_social_twitter_card_title) && $seopress_social_twitter_card_title !='') {
846
+ echo $seopress_social_twitter_card_title."\n";
847
+ }
848
  }
849
  add_action( 'wp_head', 'seopress_social_twitter_title_hook', 1 );
850
 
873
  function seopress_social_twitter_desc_hook() {
874
  global $post;
875
  setup_postdata( $post );
876
+ //Init
877
+ $seopress_social_twitter_card_desc ='';
878
 
879
  if (seopress_social_twitter_card_og_option() =='1') {
880
  if (is_home()) {
881
  if (seopress_social_fb_desc_home_option() !='') {
882
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_fb_desc_home_option().'" />';
 
883
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
884
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
 
885
  }
886
  } elseif (is_tax() || is_category() || is_tag()) {
887
  if (seopress_social_fb_desc_term_option() !='') {
888
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_fb_desc_term_option().'" />';
 
889
  } elseif (term_description() !='') {
890
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
 
891
  }
892
  } elseif (is_singular() && seopress_social_facebook_og_option() =='1' && seopress_social_fb_desc_post_option() !='') {
893
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_fb_desc_post_option().'" />';
 
894
  } elseif (seopress_social_facebook_og_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
895
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
 
896
  } elseif (seopress_social_facebook_og_option() =='1' && get_the_excerpt() !='') {
897
  setup_postdata( $post );
898
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
 
899
  }
900
  } else {
901
  if (is_home()) {
902
  if (seopress_social_twitter_desc_home_option() !='') {
903
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_twitter_desc_home_option().'" />';
 
904
  } elseif (function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
905
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
 
906
  }
907
  } elseif (is_tax() || is_category() || is_tag()) {
908
  if (seopress_social_twitter_desc_term_option() !='') {
909
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_twitter_desc_term_option().'" />';
 
910
  } elseif (term_description() !='') {
911
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.stripslashes_deep(wp_filter_nohtml_kses(term_description())).' - '.get_bloginfo('name').'" />';
 
912
  }
913
  } elseif (is_singular() && seopress_social_twitter_card_option() =='1' && seopress_social_twitter_desc_post_option() !='') {
914
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_social_twitter_desc_post_option().'" />';
 
915
  } elseif (seopress_social_twitter_card_option() =='1' && function_exists('seopress_titles_the_description_content') && seopress_titles_the_description_content() !='') {
916
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.seopress_titles_the_description_content().'" />';
 
917
  } elseif (seopress_social_twitter_card_option() =='1' && get_the_excerpt() !='') {
918
  setup_postdata( $post );
919
+ $seopress_social_twitter_card_desc .= '<meta name="twitter:description" content="'.wp_trim_words(esc_attr(stripslashes_deep(wp_filter_nohtml_kses(get_the_excerpt()))), 30).'" />';
 
920
  }
921
  }
922
+ //Hook on post Twitter card description - 'seopress_social_twitter_card_desc'
923
+ if (has_filter('seopress_social_twitter_card_desc')) {
924
+ $seopress_social_twitter_card_desc = apply_filters('seopress_social_twitter_card_desc', $seopress_social_twitter_card_desc);
925
+ }
926
+ if (isset($seopress_social_twitter_card_desc) && $seopress_social_twitter_card_desc !='') {
927
+ echo $seopress_social_twitter_card_desc."\n";
928
+ }
929
  }
930
  add_action( 'wp_head', 'seopress_social_twitter_desc_hook', 1 );
931
 
977
 
978
  function seopress_social_twitter_img_hook() {
979
  if (seopress_social_twitter_card_option() =='1') {
980
+ //Init
981
+ $seopress_social_twitter_card_thumb ='';
982
+
983
  if (seopress_social_twitter_card_og_option() =='1') {
984
  if (is_home()) {
985
  if (seopress_social_fb_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
986
  if (seopress_social_twitter_img_size_option() =='large') {
987
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_fb_img_home_option().'" />';
 
988
  } else {
989
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_fb_img_home_option().'" />';
 
990
  }
991
  }
992
  } elseif (seopress_social_fb_img_post_option() !='' && is_singular()) {
993
  if (seopress_social_twitter_img_size_option() =='large') {
994
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_fb_img_post_option().'" />';
 
995
  } else {
996
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_fb_img_post_option().'" />';
 
997
  }
998
  } elseif (has_post_thumbnail() && is_singular()) {
999
  if (seopress_social_twitter_img_size_option() =='large') {
1000
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.get_the_post_thumbnail_url().'" />';
 
1001
  } else {
1002
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.get_the_post_thumbnail_url().'" />';
 
1003
  }
1004
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_fb_img_term_option() !='') {
1005
  if (seopress_social_twitter_img_size_option() =='large') {
1006
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_fb_img_term_option().'" />';
 
1007
  } else {
1008
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_fb_img_term_option().'" />';
 
1009
  }
1010
  } elseif (seopress_social_facebook_img_option() !='') {
1011
  if (seopress_social_twitter_img_size_option() =='large') {
1012
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_facebook_img_option().'" />';
 
1013
  } else {
1014
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_facebook_img_option().'" />';
 
1015
  }
1016
  }
1017
  } else {
1018
  if (is_home()) {
1019
  if (seopress_social_twitter_img_home_option() !='' && 'page' == get_option( 'show_on_front' )) {
1020
  if (seopress_social_twitter_img_size_option() =='large') {
1021
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_home_option().'" />';
 
1022
  } else {
1023
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_twitter_img_home_option().'" />';
 
1024
  }
1025
  }
1026
  } elseif (seopress_social_twitter_img_post_option() !='' && is_singular()) {
1027
  if (seopress_social_twitter_img_size_option() =='large') {
1028
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_post_option().'" />';
 
1029
  } else {
1030
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_twitter_img_post_option().'" />';
 
1031
  }
1032
  } elseif (has_post_thumbnail() && is_singular()) {
1033
  if (seopress_social_twitter_img_size_option() =='large') {
1034
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.get_the_post_thumbnail_url().'" />';
 
1035
  } else {
1036
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.get_the_post_thumbnail_url().'" />';
 
1037
  }
1038
  } elseif ((is_tax() || is_category() || is_tag()) && seopress_social_twitter_img_term_option() !='') {
1039
  if (seopress_social_twitter_img_size_option() =='large') {
1040
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_term_option().'" />';
 
1041
  } else {
1042
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_twitter_img_term_option().'" />';
 
1043
  }
1044
  } elseif (seopress_social_twitter_img_option() !='') {
1045
  if (seopress_social_twitter_img_size_option() =='large') {
1046
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image:src" content="'.seopress_social_twitter_img_option().'" />';
 
1047
  } else {
1048
+ $seopress_social_twitter_card_thumb .= '<meta name="twitter:image" content="'.seopress_social_twitter_img_option().'" />';
 
1049
  }
1050
  }
1051
  }
1052
+ //Hook on post Twitter card thumbnail - 'seopress_social_twitter_card_thumb'
1053
+ if (has_filter('seopress_social_twitter_card_thumb')) {
1054
+ $seopress_social_twitter_card_thumb = apply_filters('seopress_social_twitter_card_thumb', $seopress_social_twitter_card_thumb);
1055
+ }
1056
+ if (isset($seopress_social_twitter_card_thumb) && $seopress_social_twitter_card_thumb !='') {
1057
+ echo $seopress_social_twitter_card_thumb."\n";
1058
+ }
1059
  }
1060
  }
1061
  add_action( 'wp_head', 'seopress_social_twitter_img_hook', 1 );
inc/functions/options-titles-metas.php CHANGED
@@ -234,6 +234,9 @@ function seopress_titles_the_title() {
234
  global $post;
235
  global $term;
236
 
 
 
 
237
  //Remove WordPress Filters
238
  $seopress_array_filters = array('category_description', 'tag_description', 'term_description');
239
  foreach ($seopress_array_filters as $key => $value) {
@@ -481,10 +484,12 @@ add_filter( 'pre_get_document_title', 'seopress_titles_the_title', 10 );
481
  function seopress_titles_the_description_content() {
482
  global $post;
483
 
484
- //Template variables
 
485
  $seopress_paged ='';
486
  $seopress_get_author ='';
487
-
 
488
  if (get_query_var('paged') >='1') {
489
  $seopress_paged = get_query_var('paged');
490
  }
@@ -1280,34 +1285,48 @@ function seopress_titles_canonical_term_option() {
1280
  }
1281
  }
1282
 
1283
- if ( is_singular() && seopress_titles_canonical_post_option()) { //CUSTOM SINGLE CANONICAL
1284
- function seopress_titles_canonical_post_hook() {
1285
- $seopress_titles_canonical = '<link rel="canonical" href="'.seopress_titles_canonical_post_option().'" />';
1286
- echo $seopress_titles_canonical."\n";
1287
- }
1288
- add_action( 'wp_head', 'seopress_titles_canonical_post_hook', 1 );
1289
- } elseif ((is_tax() || is_category() || is_tag()) && seopress_titles_canonical_term_option()) { //CUSTOM TERM CANONICAL
1290
- function seopress_titles_canonical_term_hook() {
1291
- $seopress_titles_canonical = '<link rel="canonical" href="'.seopress_titles_canonical_term_option().'" />';
1292
- echo $seopress_titles_canonical."\n";
1293
- }
1294
- add_action( 'wp_head', 'seopress_titles_canonical_term_hook', 1 );
1295
- } else { //DEFAULT CANONICAL
1296
- function seopress_titles_canonical_hook() {
1297
- global $wp;
1298
- if (seopress_advanced_advanced_trailingslash_option()) {
1299
- $current_url = home_url(add_query_arg(array(), $wp->request));
1300
- } else {
1301
- $current_url = trailingslashit(home_url(add_query_arg(array(), $wp->request)));
1302
- }
1303
- if (is_search()) {
1304
- $seopress_titles_canonical = '<link rel="canonical" href="'.get_home_url().'/search/'.get_search_query().'" />';
1305
- } elseif (is_paged()){
1306
- $seopress_titles_canonical = '<link rel="canonical" href="'.get_pagenum_link('1').'" />';
1307
- } else {
1308
- $seopress_titles_canonical = '<link rel="canonical" href="'.$current_url.'" />';
1309
- }
1310
- echo $seopress_titles_canonical."\n";
1311
- }
1312
- add_action( 'wp_head', 'seopress_titles_canonical_hook', 1 );
1313
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  global $post;
235
  global $term;
236
 
237
+ //Init
238
+ $seopress_titles_title_template ='';
239
+
240
  //Remove WordPress Filters
241
  $seopress_array_filters = array('category_description', 'tag_description', 'term_description');
242
  foreach ($seopress_array_filters as $key => $value) {
484
  function seopress_titles_the_description_content() {
485
  global $post;
486
 
487
+ //Init
488
+ $seopress_titles_description_template ='';
489
  $seopress_paged ='';
490
  $seopress_get_author ='';
491
+
492
+ //Template variables
493
  if (get_query_var('paged') >='1') {
494
  $seopress_paged = get_query_var('paged');
495
  }
1285
  }
1286
  }
1287
 
1288
+ if (function_exists('seopress_titles_noindex_bypass') && seopress_titles_noindex_bypass() !='1' && seopress_titles_noindex_bypass() !='yes') {//Remove Canonical if noindex
1289
+ if ( is_singular() && seopress_titles_canonical_post_option()) { //CUSTOM SINGLE CANONICAL
1290
+ function seopress_titles_canonical_post_hook() {
1291
+ $seopress_titles_canonical = '<link rel="canonical" href="'.seopress_titles_canonical_post_option().'" />';
1292
+ //Hook on post canonical URL - 'seopress_titles_canonical'
1293
+ if (has_filter('seopress_titles_canonical')) {
1294
+ $seopress_titles_canonical = apply_filters('seopress_titles_canonical', $seopress_titles_canonical);
1295
+ }
1296
+ echo $seopress_titles_canonical."\n";
1297
+ }
1298
+ add_action( 'wp_head', 'seopress_titles_canonical_post_hook', 1 );
1299
+ } elseif ((is_tax() || is_category() || is_tag()) && seopress_titles_canonical_term_option()) { //CUSTOM TERM CANONICAL
1300
+ function seopress_titles_canonical_term_hook() {
1301
+ $seopress_titles_canonical = '<link rel="canonical" href="'.seopress_titles_canonical_term_option().'" />';
1302
+ //Hook on post canonical URL - 'seopress_titles_canonical'
1303
+ if (has_filter('seopress_titles_canonical')) {
1304
+ $seopress_titles_canonical = apply_filters('seopress_titles_canonical', $seopress_titles_canonical);
1305
+ }
1306
+ echo $seopress_titles_canonical."\n";
1307
+ }
1308
+ add_action( 'wp_head', 'seopress_titles_canonical_term_hook', 1 );
1309
+ } else { //DEFAULT CANONICAL
1310
+ function seopress_titles_canonical_hook() {
1311
+ global $wp;
1312
+ if (seopress_advanced_advanced_trailingslash_option()) {
1313
+ $current_url = home_url(add_query_arg(array(), $wp->request));
1314
+ } else {
1315
+ $current_url = trailingslashit(home_url(add_query_arg(array(), $wp->request)));
1316
+ }
1317
+ if (is_search()) {
1318
+ $seopress_titles_canonical = '<link rel="canonical" href="'.get_home_url().'/search/'.get_search_query().'" />';
1319
+ } elseif (is_paged()){
1320
+ $seopress_titles_canonical = '<link rel="canonical" href="'.get_pagenum_link('1').'" />';
1321
+ } else {
1322
+ $seopress_titles_canonical = '<link rel="canonical" href="'.$current_url.'" />';
1323
+ }
1324
+ //Hook on post canonical URL - 'seopress_titles_canonical'
1325
+ if (has_filter('seopress_titles_canonical')) {
1326
+ $seopress_titles_canonical = apply_filters('seopress_titles_canonical', $seopress_titles_canonical);
1327
+ }
1328
+ echo $seopress_titles_canonical."\n";
1329
+ }
1330
+ add_action( 'wp_head', 'seopress_titles_canonical_hook', 1 );
1331
+ }
1332
+ }
languages/wp-seopress-fr_FR.mo CHANGED
Binary file
languages/wp-seopress-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
- "POT-Creation-Date: 2018-04-05 19:44+0200\n"
6
- "PO-Revision-Date: 2018-04-05 19:44+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: fr_FR\n"
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
+ "POT-Creation-Date: 2018-04-14 10:56+0200\n"
6
+ "PO-Revision-Date: 2018-04-14 10:56+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: fr_FR\n"
languages/wp-seopress-vi.mo ADDED
Binary file
languages/wp-seopress-vi.po ADDED
@@ -0,0 +1,2913 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 SEOPress
2
+ # This file is distributed under the same license as the SEOPress package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: SEOPress 2.1.7\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
+ "POT-Creation-Date: 2018-04-14 10:57+0200\n"
8
+ "PO-Revision-Date: 2018-04-14 11:01+0200\n"
9
+ "Last-Translator: warcraft14115 <goddeadbb@gmail.com>\n"
10
+ "Language-Team: Vietnamese\n"
11
+ "Language: vi\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.0.6\n"
16
+ "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Poedit-KeywordsList: __;_e;_x;esc_attr_e;esc_attr__;esc_html__;esc_html_e\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "Plural-Forms: nplurals=1; plural=0;\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ #: inc/admin/admin-header.php:11
23
+ msgid "SEOPress"
24
+ msgstr "SEOPress"
25
+
26
+ #: inc/admin/admin-header.php:15 inc/admin/adminbar.php:72
27
+ msgid "PRO"
28
+ msgstr "PRO"
29
+
30
+ #: inc/admin/admin-header.php:27 inc/admin/admin.php:184
31
+ #: inc/admin/adminbar.php:22
32
+ msgid "Titles & Metas"
33
+ msgstr "Tiêu đề & Metas"
34
+
35
+ #: inc/admin/admin-header.php:33 inc/admin/admin.php:185
36
+ #: inc/admin/adminbar.php:28
37
+ msgid "XML / HTML Sitemap"
38
+ msgstr "XML / HTML Sitemap"
39
+
40
+ #: inc/admin/admin-header.php:39 inc/admin/admin.php:186
41
+ #: inc/admin/admin.php:1321 inc/admin/adminbar.php:34
42
+ msgid "Social Networks"
43
+ msgstr "Mang xã hội"
44
+
45
+ #: inc/admin/admin-header.php:45 inc/admin/admin.php:187
46
+ #: inc/admin/admin.php:1359 inc/admin/adminbar.php:40
47
+ msgid "Google Analytics"
48
+ msgstr "Google Analytics"
49
+
50
+ #: inc/admin/admin-header.php:51 inc/admin/admin-metaboxes-form.php:91
51
+ #: inc/admin/admin.php:188 inc/admin/admin.php:329 inc/admin/admin.php:605
52
+ #: inc/admin/admin.php:1397 inc/admin/adminbar.php:46
53
+ msgid "Advanced"
54
+ msgstr "Nâng cao"
55
+
56
+ #: inc/admin/admin-header.php:59 inc/admin/admin.php:1426
57
+ msgid "WooCommerce"
58
+ msgstr "WooCommerce"
59
+
60
+ #: inc/admin/admin-header.php:65 inc/admin/admin.php:1454
61
+ msgid "Easy Digital Downloads"
62
+ msgstr "Easy Digital Downloads"
63
+
64
+ #: inc/admin/admin-header.php:71 inc/admin/admin.php:1482
65
+ msgid "Local Business"
66
+ msgstr "Địa điểm kinh doanh"
67
+
68
+ #: inc/admin/admin-header.php:77 inc/admin/admin.php:1510
69
+ msgid "Dublin Core"
70
+ msgstr "Dublin Core"
71
+
72
+ #: inc/admin/admin-header.php:83 inc/admin/admin.php:1538
73
+ msgid "Structured Data Types"
74
+ msgstr "Các loại dữ liệu có cấu trúc"
75
+
76
+ #: inc/admin/admin-header.php:89 inc/admin/admin.php:1566
77
+ msgid "Breadcrumbs"
78
+ msgstr "Breadcrumbs"
79
+
80
+ #: inc/admin/admin-header.php:95 inc/admin/admin.php:1604
81
+ msgid "Google Page Speed"
82
+ msgstr "Google tốc độ trang"
83
+
84
+ #: inc/admin/admin-header.php:102 inc/admin/admin.php:1625
85
+ msgid "robots.txt"
86
+ msgstr "robots.txt"
87
+
88
+ #: inc/admin/admin-header.php:109 inc/admin/admin.php:1666
89
+ msgid "Google News Sitemap"
90
+ msgstr "Sơ đồ trang web Google tin tức"
91
+
92
+ #: inc/admin/admin-header.php:115 inc/admin/admin.php:1694
93
+ #: inc/admin/adminbar.php:78
94
+ msgid "Redirections"
95
+ msgstr "Các chuyển hướng"
96
+
97
+ #: inc/admin/admin-header.php:121 inc/admin/admin.php:1733
98
+ msgid "SEOPress BOT - Broken links"
99
+ msgstr "SEOPress BOT - Liên kết bị hỏng"
100
+
101
+ #: inc/admin/admin-header.php:127 inc/admin/admin.php:1744
102
+ #: inc/admin/adminbar.php:90
103
+ msgid "Backlinks"
104
+ msgstr "Backlinks"
105
+
106
+ #: inc/admin/admin-header.php:134 inc/admin/admin.php:1756
107
+ msgid ".htaccess"
108
+ msgstr ".htaccess"
109
+
110
+ #: inc/admin/admin-header.php:141 inc/admin/admin.php:1768
111
+ msgid "RSS"
112
+ msgstr "RSS"
113
+
114
+ #: inc/admin/admin-header.php:147 inc/admin/admin.php:1801
115
+ #: inc/admin/adminbar.php:66
116
+ msgid "License"
117
+ msgstr "Giấy phép"
118
+
119
+ #: inc/admin/admin-header.php:154 inc/admin/admin.php:189
120
+ #: inc/admin/admin.php:1780 inc/admin/adminbar.php:52
121
+ msgid "Tools"
122
+ msgstr "Công cụ"
123
+
124
+ #: inc/admin/admin-header.php:176
125
+ msgid "See the changelog (new window)"
126
+ msgstr "Xem các thay đổi (mở trong cửa sổ mới)"
127
+
128
+ #: inc/admin/admin-header.php:178
129
+ msgid "See the changelog"
130
+ msgstr "Xem các thay đổi"
131
+
132
+ #: inc/admin/admin-header.php:180 inc/admin/admin-header.php:182
133
+ msgid "Send feedback"
134
+ msgstr "Gửi phản hồi"
135
+
136
+ #: inc/admin/admin-header.php:184
137
+ msgid "Follow us on Twitter (new window)"
138
+ msgstr "Theo dõi chúng tôi trên Twitter (mở trong cửa sổ mới)"
139
+
140
+ #: inc/admin/admin-header.php:186
141
+ msgid "Follow us on Twitter"
142
+ msgstr "Theo dõi chúng tôi trên Twitter"
143
+
144
+ #: inc/admin/admin-header.php:188
145
+ msgid "Follow us on YouTube (new window)"
146
+ msgstr "Theo dõi chúng tôi trên YOUTUBE (mở trong cửa sổ mới)"
147
+
148
+ #: inc/admin/admin-header.php:190
149
+ msgid "Follow us on YouTube"
150
+ msgstr "Theo dõi chúng tôi trên YouTube"
151
+
152
+ #: inc/admin/admin-header.php:192
153
+ msgid "Official website (new window)"
154
+ msgstr "Trang web chính thức ( mở trong cửa sổ mới)"
155
+
156
+ #: inc/admin/admin-header.php:194
157
+ msgid "Official website"
158
+ msgstr "Trang web chính thức"
159
+
160
+ #: inc/admin/admin-header.php:196
161
+ msgid "Support (new window)"
162
+ msgstr "Hỗ trợ (Mở trong cửa sổ mới)"
163
+
164
+ #: inc/admin/admin-header.php:198
165
+ msgid "Support"
166
+ msgstr "Hỗ trợ"
167
+
168
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:5
169
+ msgid "Enter a few keywords for analysis and help you write optimized content."
170
+ msgstr ""
171
+ "Nhập một vài từ khóa để phân tích và giúp bạn viết nội dung được tối ưu hóa."
172
+
173
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:6
174
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:7
175
+ msgid "Target keywords"
176
+ msgstr "Tìm kiếm từ khóa"
177
+
178
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:7
179
+ msgid "Enter your target keywords"
180
+ msgstr "Tìm kiếm từ khóa"
181
+
182
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:8
183
+ msgid ""
184
+ "Separate target keywords with commas, do not use space after comma unless "
185
+ "it's wanted."
186
+ msgstr ""
187
+ "Tách các từ khóa mục tiêu bằng dấu phẩy, không sử dụng dấu cách sau dấu phẩy "
188
+ "trừ khi nó được yêu cầu."
189
+
190
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:12
191
+ msgid "Analyse my content"
192
+ msgstr "Phân tích nội dung của tôi"
193
+
194
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:14
195
+ msgid "Refresh analysis"
196
+ msgstr "Làm mới lại phân tích"
197
+
198
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:17
199
+ msgid "Analysis completed"
200
+ msgstr "Phân tích hoàn thành"
201
+
202
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:19
203
+ msgid "Save your post first, to get the most accurate analysis."
204
+ msgstr "Lưu bài viết của bạn trước, để có được phân tích chính xác nhất."
205
+
206
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:23
207
+ msgid "Optimisations"
208
+ msgstr "Tối ưu hóa"
209
+
210
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:24
211
+ msgid "Configuration"
212
+ msgstr "Cấu hình"
213
+
214
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:25
215
+ msgid "Images"
216
+ msgstr "Ảnh"
217
+
218
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:26
219
+ msgid "Links"
220
+ msgstr "Các đường dẫn"
221
+
222
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:32
223
+ msgid "Words counter"
224
+ msgstr "Words counter"
225
+
226
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:34
227
+ msgid "words found."
228
+ msgstr "các từ được tìm thấy."
229
+
230
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:35
231
+ msgid "unique words found."
232
+ msgstr "những từ độc đáo được tìm thấy."
233
+
234
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:38
235
+ msgid ""
236
+ "Your content is composed of more than 300 words, which is the minimum for a "
237
+ "post."
238
+ msgstr ""
239
+ "Nội dung của bạn có hơn 300 từ, đây là điều tối thiểu cho một bài đăng."
240
+
241
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:40
242
+ msgid "Your content lacks words. Add a few more paragraphs!"
243
+ msgstr "Nội dung của bạn thiếu từ. Thêm một vài đoạn nữa!"
244
+
245
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:46
246
+ msgid "Post title"
247
+ msgstr "Tiêu đề bài đăng"
248
+
249
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:49
250
+ msgid "Target keywords were found in Post Title."
251
+ msgstr "Các từ khóa mục tiêu đã được tìm thấy trong Tiêu đề bài đăng."
252
+
253
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:57
254
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:86
255
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:104
256
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:123
257
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:152
258
+ #, php-format
259
+ msgid "%s was found %d times."
260
+ msgstr "%s was found %d times."
261
+
262
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:61
263
+ msgid "None of your target keywords were found in the Post Title."
264
+ msgstr ""
265
+ "Không có từ khoá mục tiêu nào của bạn được tìm thấy trong Tiêu đề bài đăng."
266
+
267
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:64
268
+ msgid "No post title set for this post!"
269
+ msgstr "Không có tiêu đề được đặt cho bài viết này!"
270
+
271
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:69
272
+ msgid "H1 (Heading 1)"
273
+ msgstr "H1 (Thẻ tiêu đề H1)"
274
+
275
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:71
276
+ #, php-format
277
+ msgid "We found %d Heading 1 (H1) in your content."
278
+ msgstr "We found %d Heading 1 (H1) in your content."
279
+
280
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:72
281
+ msgid ""
282
+ "You should not use Heading 1 in your post content because your post title is "
283
+ "already an H1. The rule is simple: 1 H1 for 1 web page."
284
+ msgstr ""
285
+ "Bạn không nên sử dụng Tiêu đề 1 trong nội dung bài đăng của bạn vì tiêu đề "
286
+ "bài đăng của bạn đã là chữ H1. Quy tắc rất đơn giản: một thẻ H1 cho 1 trang "
287
+ "web."
288
+
289
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:76
290
+ msgid "H2 (Heading 2)"
291
+ msgstr "H2 (Thẻ tiêu đề 2)"
292
+
293
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:78
294
+ msgid "Target keywords were found in Heading 2 (H2)."
295
+ msgstr "Từ khoá mục tiêu đã được tìm thấy trong Tiêu đề 2 (H2)."
296
+
297
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:90
298
+ msgid "None of your target keywords were found in Heading 2 (H2)."
299
+ msgstr ""
300
+ "Không có từ khóa mục tiêu nào của bạn được tìm thấy trong Tiêu đề 2 (H2)."
301
+
302
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:94
303
+ msgid "H3 (Heading 3)"
304
+ msgstr "H3 (Thẻ tiêu đề 3)"
305
+
306
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:96
307
+ msgid "Target keywords were found in Heading 3 (H3)."
308
+ msgstr "Từ khoá mục tiêu đã được tìm thấy trong Tiêu đề 3 (H3)."
309
+
310
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:108
311
+ msgid "None of your target keywords were found in Heading 3 (H3)."
312
+ msgstr "Không có từ khoá mục tiêu nào được tìm thấy trong Tiêu đề 3 (H3)."
313
+
314
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:112
315
+ msgid "Meta title"
316
+ msgstr "Tiêu đề thẻ"
317
+
318
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:115
319
+ msgid "Target keywords were found in Meta Title."
320
+ msgstr "Các từ khoá mục tiêu đã được tìm thấy trong Tiêu đề Meta."
321
+
322
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:127
323
+ msgid "None of your target keywords were found in Meta Title."
324
+ msgstr "Không có từ khoá mục tiêu nào được tìm thấy trong Tiêu đề Meta."
325
+
326
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:131
327
+ msgid "You custom title is too long."
328
+ msgstr "Tiêu đề trang web của bạn đang trống."
329
+
330
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:133
331
+ msgid "The length of your title is correct"
332
+ msgstr "Chiều dài của tiêu đề của bạn là chính xác"
333
+
334
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:136
335
+ msgid "No custom title set for this post."
336
+ msgstr "Không có tiêu đề tùy chỉnh nào được đặt cho bài đăng này."
337
+
338
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:140
339
+ #: inc/admin/admin-metaboxes-form.php:126
340
+ #: inc/admin/admin-metaboxes-form.php:127 inc/admin/admin.php:712
341
+ #: inc/admin/admin.php:1888 inc/admin/admin.php:3117
342
+ #: inc/functions/options-advanced-admin.php:758
343
+ msgid "Meta description"
344
+ msgstr "Mô tả meta"
345
+
346
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:144
347
+ msgid "Target keywords were found in Meta description."
348
+ msgstr "Các từ khoá mục tiêu đã được tìm thấy trong mô tả Meta."
349
+
350
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:156
351
+ msgid "None of your target keywords were found in Meta description."
352
+ msgstr "Không có từ khoá mục tiêu nào của bạn được tìm thấy trong mô tả Meta."
353
+
354
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:160
355
+ msgid "You custom meta description is too long."
356
+ msgstr "Thêm cột mô tả meta."
357
+
358
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:162
359
+ msgid "The length of your meta description is correct"
360
+ msgstr "Nhập mô tả meta của bạn"
361
+
362
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:165
363
+ msgid "No custom meta description set for this post."
364
+ msgstr "Không có mô tả meta tùy chỉnh nào được đặt cho bài đăng này."
365
+
366
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:171
367
+ msgid "Robots"
368
+ msgstr "Robots"
369
+
370
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:175
371
+ msgid "noindex is on! Search engines can't index this page."
372
+ msgstr "noindex đang bật! Công cụ tìm kiếm không thể lập chỉ mục trang này."
373
+
374
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:177
375
+ msgid "noindex is off. Search engines will index this page."
376
+ msgstr "noindex tắt. Các công cụ tìm kiếm sẽ lập chỉ mục trang này."
377
+
378
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:181
379
+ msgid "nofollow is on! Search engines can't follow your links on this page."
380
+ msgstr ""
381
+ "nofollow là trên! Công cụ tìm kiếm không thể theo liên kết của bạn trên "
382
+ "trang này."
383
+
384
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:183
385
+ msgid "nofollow is off. Search engines will follow links on this page."
386
+ msgstr ""
387
+ "nofollow bị tắt. Các công cụ tìm kiếm sẽ theo các liên kết trên trang này."
388
+
389
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:187
390
+ msgid ""
391
+ "noimageindex is on! Google will not index your images on this page (but if "
392
+ "someone makes a direct link to one of your image in this page, it will be "
393
+ "indexed)."
394
+ msgstr ""
395
+ "noimageindex đang bật! Google sẽ không lập chỉ mục các hình ảnh của bạn trên "
396
+ "trang này (nhưng nếu ai đó tạo liên kết trực tiếp đến một trong những hình "
397
+ "ảnh của bạn trong trang này, nó sẽ được lập chỉ mục)."
398
+
399
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:189
400
+ msgid "noimageindex is off. Google will index your images on this page."
401
+ msgstr ""
402
+ "noimageindex bị tắt. Google sẽ lập chỉ mục các hình ảnh của bạn trên trang "
403
+ "này."
404
+
405
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:193
406
+ msgid "noarchive is on! Search engines will not cache your page."
407
+ msgstr "noarchive đang bật! Công cụ tìm kiếm sẽ không lưu trữ trang của bạn."
408
+
409
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:195
410
+ msgid "noarchive is off. Search engines will probably cache your page."
411
+ msgstr "noarchive bị tắt. Các công cụ tìm kiếm có lẽ sẽ lưu trữ trang của bạn."
412
+
413
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:199
414
+ msgid ""
415
+ "nosnippet is on! Search engines will not display a snippet of this page in "
416
+ "search results."
417
+ msgstr ""
418
+ "nosnippet đang bật! Công cụ tìm kiếm sẽ không hiển thị một đoạn của trang "
419
+ "này trong kết quả tìm kiếm."
420
+
421
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:201
422
+ msgid ""
423
+ "nosnippet is off. Search engines will display a snippet of this page in "
424
+ "search results."
425
+ msgstr ""
426
+ "nosnippet bị tắt. Công cụ tìm kiếm sẽ hiển thị một đoạn của trang này trong "
427
+ "kết quả tìm kiếm."
428
+
429
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:213
430
+ msgid ""
431
+ "No alternative text found for these images. Alt tag are important for both "
432
+ "SEO and accessibility."
433
+ msgstr ""
434
+ "Không tìm thấy văn bản thay thế cho những hình ảnh này. Thẻ Alt rất quan "
435
+ "trọng cho cả SEO và khả năng tiếp cận."
436
+
437
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:217
438
+ msgid "Post Content"
439
+ msgstr "Ngày đăng"
440
+
441
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:227
442
+ msgid "Post Thumbnail"
443
+ msgstr "Hình thu nhỏ của Twitter"
444
+
445
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:235
446
+ msgid "Product gallery"
447
+ msgstr "Thư viện ảnh"
448
+
449
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:243
450
+ msgid "All alternative tags are filled in. Good work!"
451
+ msgstr "Tất cả các thẻ thay thế đã được điền. Hay lắm!"
452
+
453
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:246
454
+ msgid ""
455
+ "We could not find any image in your content. Content with media is a plus "
456
+ "for your SEO."
457
+ msgstr ""
458
+ "Chúng tôi không thể tìm thấy bất kỳ hình ảnh nào trong nội dung của bạn. Nội "
459
+ "dung đa phương tiện là một điểm cộng cho SEO của bạn."
460
+
461
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:252
462
+ msgid "NoFollow Links"
463
+ msgstr "NoFollow Links"
464
+
465
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:258
466
+ #, php-format
467
+ msgid ""
468
+ "We found %d links with nofollow attribute in your page. Do not overuse "
469
+ "nofollow attribute in links. Below, the list:"
470
+ msgstr ""
471
+ "We found %d links with nofollow attribute in your page. Do not overuse "
472
+ "nofollow attribute in links. Below, the list:"
473
+
474
+ #: inc/admin/admin-metaboxes-content-analysis-form.php:265
475
+ msgid "This page doesn't have any nofollow links."
476
+ msgstr "Trang này không có bất kỳ liên kết nofollow nào."
477
+
478
+ #: inc/admin/admin-metaboxes-form.php:81 inc/admin/admin-metaboxes.php:49
479
+ #: inc/admin/admin-metaboxes.php:51 inc/admin/admin.php:182
480
+ #: inc/admin/adminbar.php:16 inc/functions/options-advanced-admin.php:748
481
+ msgid "SEO"
482
+ msgstr "SEO"
483
+
484
+ #: inc/admin/admin-metaboxes-form.php:90
485
+ msgid "Titles settings"
486
+ msgstr "Cài đặt tiêu đề"
487
+
488
+ #: inc/admin/admin-metaboxes-form.php:92
489
+ msgid "Social"
490
+ msgstr "Xã hội"
491
+
492
+ #: inc/admin/admin-metaboxes-form.php:94
493
+ msgid "Redirection"
494
+ msgstr "Chuyển hướng"
495
+
496
+ #: inc/admin/admin-metaboxes-form.php:99
497
+ msgid "Google News"
498
+ msgstr "Google tin tức"
499
+
500
+ #: inc/admin/admin-metaboxes-form.php:112
501
+ msgid ""
502
+ "This is your <strong>Shop page</strong>. Go to <strong>SEO > Titles & Metas "
503
+ "> Archives > Products</strong> "
504
+ msgstr ""
505
+ "Đây là <strong>Trang cửa hàng</strong>. Đi tới <strong> SEO> Tiêu đề & Thẻ> "
506
+ "Lưu trữ > Sản phẩm</strong> "
507
+
508
+ #: inc/admin/admin-metaboxes-form.php:112
509
+ msgid "to edit your title and meta description"
510
+ msgstr "nhập mô tả meta của bạn"
511
+
512
+ #: inc/admin/admin-metaboxes-form.php:118
513
+ #: inc/admin/admin-metaboxes-form.php:119
514
+ msgid "Title"
515
+ msgstr "Tiêu đề"
516
+
517
+ #: inc/admin/admin-metaboxes-form.php:119
518
+ msgid "Enter your title"
519
+ msgstr "Nhập ID theo dõi của bạn"
520
+
521
+ #: inc/admin/admin-metaboxes-form.php:123
522
+ #: inc/admin/admin-metaboxes-form.php:131
523
+ msgid "(maximum recommended limit)"
524
+ msgstr "(giới hạn khuyên cáo)"
525
+
526
+ #: inc/admin/admin-metaboxes-form.php:127
527
+ msgid "Enter your meta description"
528
+ msgstr "Nhập mô tả meta của bạn"
529
+
530
+ #: inc/admin/admin-metaboxes-form.php:136
531
+ msgid "Google Snippet Preview"
532
+ msgstr "Xem trước Google Snippet"
533
+
534
+ #: inc/admin/admin-metaboxes-form.php:137
535
+ msgid ""
536
+ "This is what your page will look like in Google search results. You have to "
537
+ "publish your post to get the Google Snippet Preview."
538
+ msgstr ""
539
+ "Đây là những gì trang của bạn sẽ hiển thị giống như trong kết quả tìm kiếm "
540
+ "của Google."
541
+
542
+ #: inc/admin/admin-metaboxes-form.php:162 inc/admin/admin.php:2073
543
+ #: inc/admin/admin.php:3195 inc/admin/admin.php:3332 inc/admin/admin.php:3427
544
+ #: inc/admin/admin.php:3503 inc/admin/admin.php:3572 inc/admin/admin.php:3642
545
+ #: inc/admin/admin.php:3692
546
+ msgid "noindex"
547
+ msgstr "noindex"
548
+
549
+ #: inc/admin/admin-metaboxes-form.php:163 inc/admin/admin.php:3694
550
+ msgid ""
551
+ "Do not display all pages of the site in Google search results and do not "
552
+ "display \"Cached\" links in search results."
553
+ msgstr ""
554
+ "Không hiển thị tất cả các trang của trang web trong kết quả tìm kiếm Google "
555
+ "và không hiển thị liên kết \"Cached\" trong kết quả tìm kiếm."
556
+
557
+ #: inc/admin/admin-metaboxes-form.php:168 inc/admin/admin.php:2081
558
+ #: inc/admin/admin.php:3214 inc/admin/admin.php:3351 inc/admin/admin.php:3446
559
+ #: inc/admin/admin.php:3711
560
+ msgid "nofollow"
561
+ msgstr "nofollow"
562
+
563
+ #: inc/admin/admin-metaboxes-form.php:169 inc/admin/admin.php:3713
564
+ msgid "Do not follow links for all pages."
565
+ msgstr "Không theo liên kết cho tất cả các trang."
566
+
567
+ #: inc/admin/admin-metaboxes-form.php:174 inc/admin/admin.php:2089
568
+ #: inc/admin/admin.php:3730
569
+ msgid "noodp"
570
+ msgstr "noodp"
571
+
572
+ #: inc/admin/admin-metaboxes-form.php:175 inc/admin/admin.php:3732
573
+ msgid ""
574
+ "Do not use Open Directory project metadata for titles or excerpts for all "
575
+ "pages."
576
+ msgstr ""
577
+ "Không sử dụng các metadata của dự án Open Directory cho tiêu đề hay trích "
578
+ "đoạn ở tất cả các trang.."
579
+
580
+ #: inc/admin/admin-metaboxes-form.php:180 inc/admin/admin.php:2097
581
+ #: inc/admin/admin.php:3749
582
+ msgid "noimageindex"
583
+ msgstr "noimageindex"
584
+
585
+ #: inc/admin/admin-metaboxes-form.php:181 inc/admin/admin.php:3751
586
+ msgid "Do not index images from the entire site."
587
+ msgstr "Không lập chỉ mục hình ảnh từ toàn bộ website."
588
+
589
+ #: inc/admin/admin-metaboxes-form.php:186 inc/admin/admin.php:2105
590
+ #: inc/admin/admin.php:3768
591
+ msgid "noarchive"
592
+ msgstr "noarchive"
593
+
594
+ #: inc/admin/admin-metaboxes-form.php:187 inc/admin/admin.php:3770
595
+ msgid "Do not display a \"Cached\" link in the Google search results."
596
+ msgstr ""
597
+ "Không hiển thị liên kết \"đã lưu trữ\" trong kết quả tìm kiếm của Google."
598
+
599
+ #: inc/admin/admin-metaboxes-form.php:192 inc/admin/admin.php:2113
600
+ #: inc/admin/admin.php:3787
601
+ msgid "nosnippet"
602
+ msgstr "nosnippet"
603
+
604
+ #: inc/admin/admin-metaboxes-form.php:193 inc/admin/admin.php:3789
605
+ msgid ""
606
+ "Do not display a description in the Google search results for all pages."
607
+ msgstr ""
608
+ "Không hiển thị mô tả trong kết quả tìm kiếm của Google cho tất cả các trang."
609
+
610
+ #: inc/admin/admin-metaboxes-form.php:196
611
+ #: inc/admin/admin-metaboxes-form.php:197 inc/admin/admin.php:716
612
+ msgid "Canonical URL"
613
+ msgstr "Canonical URL"
614
+
615
+ #: inc/admin/admin-metaboxes-form.php:197
616
+ msgid "Default value: "
617
+ msgstr "Mặc định: "
618
+
619
+ #: inc/admin/admin-metaboxes-form.php:202
620
+ #: inc/admin/admin-metaboxes-form.php:203
621
+ msgid "Custom breadcrumbs"
622
+ msgstr "Breadcrumbs"
623
+
624
+ #: inc/admin/admin-metaboxes-form.php:203
625
+ msgid "Enter a custom value, useful if your title is too long"
626
+ msgstr "Tiêu đề trang web của bạn đang trống"
627
+
628
+ #: inc/admin/admin-metaboxes-form.php:211
629
+ msgid "Ask Facebook to update his cache"
630
+ msgstr "Yêu cầu Facebook để nâng cấp bản lưu trữ của họ"
631
+
632
+ #: inc/admin/admin-metaboxes-form.php:213
633
+ #: inc/admin/admin-metaboxes-form.php:214
634
+ msgid "Facebook Title"
635
+ msgstr "Tiêu đề Facebook"
636
+
637
+ #: inc/admin/admin-metaboxes-form.php:214
638
+ msgid "Enter your Facebook title"
639
+ msgstr "Tiêu đề Facebook"
640
+
641
+ #: inc/admin/admin-metaboxes-form.php:217
642
+ #: inc/admin/admin-metaboxes-form.php:218
643
+ msgid "Facebook description"
644
+ msgstr "Mô tả Facebook"
645
+
646
+ #: inc/admin/admin-metaboxes-form.php:218
647
+ msgid "Enter your Facebook description"
648
+ msgstr "Mô tả Facebook"
649
+
650
+ #: inc/admin/admin-metaboxes-form.php:221
651
+ #: inc/admin/admin-metaboxes-form.php:223
652
+ msgid "Facebook Thumbnail"
653
+ msgstr "Ảnh thu nhỏ Facebook"
654
+
655
+ #: inc/admin/admin-metaboxes-form.php:222
656
+ msgid "Minimum size: 200x200px"
657
+ msgstr "Kích thước tối thiểu: 200x200px"
658
+
659
+ #: inc/admin/admin-metaboxes-form.php:223
660
+ #: inc/admin/admin-metaboxes-form.php:239 inc/admin/admin.php:4302
661
+ #: inc/admin/admin.php:4391
662
+ msgid "Select your default thumbnail"
663
+ msgstr "Lựa chọn một ảnh mặc định"
664
+
665
+ #: inc/admin/admin-metaboxes-form.php:224
666
+ #: inc/admin/admin-metaboxes-form.php:240 inc/admin/admin.php:4060
667
+ #: inc/admin/admin.php:4304 inc/admin/admin.php:4393
668
+ msgid "Upload an Image"
669
+ msgstr "Tải lên Hình ảnh"
670
+
671
+ #: inc/admin/admin-metaboxes-form.php:229
672
+ #: inc/admin/admin-metaboxes-form.php:230
673
+ msgid "Twitter Title"
674
+ msgstr "Tiêu đề Twitter"
675
+
676
+ #: inc/admin/admin-metaboxes-form.php:230
677
+ msgid "Enter your Twitter title"
678
+ msgstr "Tiêu đề Twitter"
679
+
680
+ #: inc/admin/admin-metaboxes-form.php:233
681
+ #: inc/admin/admin-metaboxes-form.php:234
682
+ msgid "Twitter description"
683
+ msgstr "Mô tả về Twitter"
684
+
685
+ #: inc/admin/admin-metaboxes-form.php:234
686
+ msgid "Enter your Twitter description"
687
+ msgstr "Mô tả về Twitter"
688
+
689
+ #: inc/admin/admin-metaboxes-form.php:237
690
+ #: inc/admin/admin-metaboxes-form.php:240
691
+ msgid "Twitter Thumbnail"
692
+ msgstr "Hình thu nhỏ của Twitter"
693
+
694
+ #: inc/admin/admin-metaboxes-form.php:238
695
+ msgid "Minimum size: 160x160px"
696
+ msgstr "Kích thước tối thiểu: 160x160px"
697
+
698
+ #: inc/admin/admin-metaboxes-form.php:249
699
+ msgid "Enable redirection?"
700
+ msgstr "Bật chuyển hướng?"
701
+
702
+ #: inc/admin/admin-metaboxes-form.php:253
703
+ #: inc/admin/admin-metaboxes-form.php:259
704
+ msgid "URL redirection"
705
+ msgstr "Chuyển hướng URL"
706
+
707
+ #: inc/admin/admin-metaboxes-form.php:255
708
+ msgid "301 Moved Permanently"
709
+ msgstr "301 Đã di chuyển vĩnh viễn"
710
+
711
+ #: inc/admin/admin-metaboxes-form.php:256
712
+ msgid "302 Found (HTTP 1.1) / Moved Temporarily (HTTP 1.0)"
713
+ msgstr "302 Tìm thấy (HTTP 1.1) / Chuyển tạm thời (HTTP 1.0)"
714
+
715
+ #: inc/admin/admin-metaboxes-form.php:257
716
+ msgid "307 Moved Temporarily (HTTP 1.1 Only)"
717
+ msgstr "307 Đã chuyển tạm thời (chỉ có HTTP 1.1)"
718
+
719
+ #: inc/admin/admin-metaboxes-form.php:259
720
+ msgid "Enter your new URL"
721
+ msgstr "Nhập ID theo dõi của bạn"
722
+
723
+ #: inc/admin/admin-metaboxes-form.php:264
724
+ #: inc/admin/admin-metaboxes-form.php:266
725
+ #: inc/admin/admin-metaboxes-form.php:269
726
+ #: inc/admin/admin-metaboxes-form.php:271
727
+ msgid "Test your URL"
728
+ msgstr "Kiểm tra URL của bạn"
729
+
730
+ #: inc/admin/admin-metaboxes-form.php:284
731
+ msgid "Exclude this post from Google News Sitemap?"
732
+ msgstr "Loại trừ bài đăng này khỏi Sơ đồ trang web Google Tin tức?"
733
+
734
+ #: inc/admin/admin-metaboxes-form.php:290
735
+ msgid "Use the standout tag for this post?"
736
+ msgstr "Sử dụng thẻ nổi bật cho bài đăng này?"
737
+
738
+ #: inc/admin/admin-metaboxes-form.php:291
739
+ msgid ""
740
+ "Your article is an original source for the story.\n"
741
+ "Your organization invested significant resources in reporting or producing "
742
+ "the article.\n"
743
+ "The article deserves special recognition.\n"
744
+ "You haven't used standout on your own articles more than seven times in the "
745
+ "past calendar week."
746
+ msgstr ""
747
+ "Bài viết của bạn là khởi nguồn cho câu chuyện.\n"
748
+ "Tổ chức của bạn đã đầu tư các nguồn lực quan trọng để báo cáo hoặc xuất bản "
749
+ "bài báo.\n"
750
+ "Bài viết xứng đáng nhận được sự công nhận đặc biệt.\n"
751
+ "Bạn đã không sử dụng sự nổi bật trên các bài viết của mình nhiều hơn bảy lần "
752
+ "trong tuần qua lịch."
753
+
754
+ #: inc/admin/admin-metaboxes-form.php:305
755
+ msgid "Learn how to use correctly the standout tag"
756
+ msgstr "Tìm hiểu cách sử dụng thẻ standout một cách chính xác"
757
+
758
+ #: inc/admin/admin-metaboxes-form.php:308
759
+ msgid "Google News Genres"
760
+ msgstr "Các thể loại của Google Tin tức"
761
+
762
+ #: inc/admin/admin-metaboxes-form.php:310 inc/admin/admin.php:4655
763
+ #: inc/admin/admin.php:4732 inc/admin/admin.php:4809 inc/admin/admin.php:4886
764
+ #: inc/admin/admin.php:4963
765
+ msgid "None"
766
+ msgstr "Không"
767
+
768
+ #: inc/admin/admin-metaboxes-form.php:311
769
+ msgid "Press Release"
770
+ msgstr "Press Release"
771
+
772
+ #: inc/admin/admin-metaboxes-form.php:312
773
+ msgid "Satire"
774
+ msgstr "Satire"
775
+
776
+ #: inc/admin/admin-metaboxes-form.php:313
777
+ msgid "Blog"
778
+ msgstr "Blog"
779
+
780
+ #: inc/admin/admin-metaboxes-form.php:314
781
+ msgid "OpEd"
782
+ msgstr "OpEd"
783
+
784
+ #: inc/admin/admin-metaboxes-form.php:315
785
+ msgid "Opinion"
786
+ msgstr "Ý kiến"
787
+
788
+ #: inc/admin/admin-metaboxes-form.php:316
789
+ msgid "UserGenerated"
790
+ msgstr "NgườiDùngĐãTạo"
791
+
792
+ #: inc/admin/admin-metaboxes-form.php:321
793
+ #: inc/admin/admin-metaboxes-form.php:322
794
+ msgid "Google News Keywords <em>(max recommended limit: 12)</em>"
795
+ msgstr "Từ khóa của Google Tin tức <em>(giới hạn tối đa khuyên dùng: 12) </em>"
796
+
797
+ #: inc/admin/admin-metaboxes-form.php:322
798
+ msgid "Enter your Google News Keywords"
799
+ msgstr "Các thể loại của Google Tin tức"
800
+
801
+ #: inc/admin/admin-metaboxes.php:210
802
+ msgid "Content analysis"
803
+ msgstr "Phân tích nội dung"
804
+
805
+ #: inc/admin/admin.php:105
806
+ msgid "404 - Page not found"
807
+ msgstr "Lôi 404 - Không Tim Được Trang"
808
+
809
+ #: inc/admin/admin.php:183
810
+ msgid "Dashboard"
811
+ msgstr "Bảng điều khiển"
812
+
813
+ #: inc/admin/admin.php:185 inc/admin/admin.php:1283
814
+ msgid "XML / Image / HTML Sitemap"
815
+ msgstr "XML / Image / HTML Sitemap"
816
+
817
+ #: inc/admin/admin.php:196
818
+ #, php-format
819
+ msgid "%%sitetitle%%"
820
+ msgstr "%%tiêu_đề_trang%%"
821
+
822
+ #: inc/admin/admin.php:196 inc/admin/admin.php:3109 inc/admin/admin.php:3163
823
+ #: inc/admin/admin.php:3282 inc/admin/admin.php:3395 inc/admin/admin.php:3472
824
+ #: inc/admin/admin.php:3542 inc/admin/admin.php:3611 inc/admin/admin.php:3661
825
+ msgid "Site Title"
826
+ msgstr "Tiêu đề trang"
827
+
828
+ #: inc/admin/admin.php:197
829
+ #, php-format
830
+ msgid "%%tagline%%"
831
+ msgstr "%%khẩu_hiệu%%"
832
+
833
+ #: inc/admin/admin.php:197 inc/admin/admin.php:3110 inc/admin/admin.php:3121
834
+ msgid "Tagline"
835
+ msgstr "Tagline"
836
+
837
+ #: inc/admin/admin.php:198
838
+ #, php-format
839
+ msgid "%%post_title%%"
840
+ msgstr "%%tiêu_đề_bài_viết%%"
841
+
842
+ #: inc/admin/admin.php:198
843
+ msgid "Post Title (post, page, custom post type)"
844
+ msgstr "Tiêu đề bài đăng (bài đăng, trang, loại bài đăng tùy chỉnh)"
845
+
846
+ #: inc/admin/admin.php:199
847
+ #, php-format
848
+ msgid "%%post_excerpt%%"
849
+ msgstr "%%trích_đoạn_bài_viết%%"
850
+
851
+ #: inc/admin/admin.php:199
852
+ msgid "Post excerpt"
853
+ msgstr "Trích đoạn bài đăng"
854
+
855
+ #: inc/admin/admin.php:200
856
+ #, php-format
857
+ msgid "%%post_date%%"
858
+ msgstr "%%ngày_đăng%%"
859
+
860
+ #: inc/admin/admin.php:200
861
+ msgid "Post date"
862
+ msgstr "Ngày đăng"
863
+
864
+ #: inc/admin/admin.php:201
865
+ #, php-format
866
+ msgid "%%post_author%%"
867
+ msgstr "%%tác_giả_bài_viết%%"
868
+
869
+ #: inc/admin/admin.php:201 inc/admin/admin.php:3471
870
+ msgid "Post author"
871
+ msgstr "Bài đăng Tác giả"
872
+
873
+ #: inc/admin/admin.php:202
874
+ #, php-format
875
+ msgid "%%post_category%%"
876
+ msgstr "%%tác_giả_bài_viết%%"
877
+
878
+ #: inc/admin/admin.php:202
879
+ msgid "Post category"
880
+ msgstr "Bài đăng Tác giả"
881
+
882
+ #: inc/admin/admin.php:203
883
+ #, php-format
884
+ msgid "%%post_tag%%"
885
+ msgstr "%%ngày_đăng%%"
886
+
887
+ #: inc/admin/admin.php:203
888
+ msgid "Post tag"
889
+ msgstr "Ngày đăng"
890
+
891
+ #: inc/admin/admin.php:204
892
+ #, php-format
893
+ msgid "%%_category_title%%"
894
+ msgstr "%%_tiêu_đề_danh_mục%%"
895
+
896
+ #: inc/admin/admin.php:204
897
+ msgid "Category title"
898
+ msgstr "Tiêu đề danh mục"
899
+
900
+ #: inc/admin/admin.php:205
901
+ #, php-format
902
+ msgid "%%_category_description%%"
903
+ msgstr "%%_mô_tả_danh_mục%%"
904
+
905
+ #: inc/admin/admin.php:205
906
+ msgid "Category description"
907
+ msgstr "Mô tả danh mục"
908
+
909
+ #: inc/admin/admin.php:206
910
+ #, php-format
911
+ msgid "%%tag_title%%"
912
+ msgstr "%%tiêu_đề_thẻ%%"
913
+
914
+ #: inc/admin/admin.php:206
915
+ msgid "Tag title"
916
+ msgstr "Tiêu đề thẻ"
917
+
918
+ #: inc/admin/admin.php:207
919
+ #, php-format
920
+ msgid "%%tag_description%%"
921
+ msgstr "%%mô_tả_thẻ%%"
922
+
923
+ #: inc/admin/admin.php:207
924
+ msgid "Tag description"
925
+ msgstr "Mô tả thẻ"
926
+
927
+ #: inc/admin/admin.php:208
928
+ #, php-format
929
+ msgid "%%term_title%%"
930
+ msgstr "%%tiêu_đề_điều_khoản%%"
931
+
932
+ #: inc/admin/admin.php:208
933
+ msgid "Term title"
934
+ msgstr "Tiêu đề điều khoản"
935
+
936
+ #: inc/admin/admin.php:209
937
+ #, php-format
938
+ msgid "%%term_description%%"
939
+ msgstr "%%mô_tả_điều_khoản%%"
940
+
941
+ #: inc/admin/admin.php:209
942
+ msgid "Term description"
943
+ msgstr "Mô tả điều khoản"
944
+
945
+ #: inc/admin/admin.php:210
946
+ #, php-format
947
+ msgid "%%search_keywords%%"
948
+ msgstr "%%từ_khóa_tìm_kiếm%%"
949
+
950
+ #: inc/admin/admin.php:210
951
+ msgid "Search keywords"
952
+ msgstr "Tìm kiếm từ khóa"
953
+
954
+ #: inc/admin/admin.php:211
955
+ #, php-format
956
+ msgid "%%current_pagination%%"
957
+ msgstr "%%phân_trang_hiện_tại%%"
958
+
959
+ #: inc/admin/admin.php:211
960
+ msgid "Current number page"
961
+ msgstr "Trang số hiện tại"
962
+
963
+ #: inc/admin/admin.php:212
964
+ #, php-format
965
+ msgid "%%cpt_plural%%"
966
+ msgstr "%%cpt_plural%%"
967
+
968
+ #: inc/admin/admin.php:212
969
+ msgid "Plural Post Type Archive name"
970
+ msgstr "Tên loại lưu trữ bài đăng kiểu Plural"
971
+
972
+ #: inc/admin/admin.php:213
973
+ #, php-format
974
+ msgid "%%date_archive%%"
975
+ msgstr "%%ngày_lưu_trữ%%"
976
+
977
+ #: inc/admin/admin.php:213
978
+ msgid "Date Archive"
979
+ msgstr "Ngày lưu trữ"
980
+
981
+ #: inc/admin/admin.php:214
982
+ #, php-format
983
+ msgid "%%_cf_your_custom_field_name%%"
984
+ msgstr "%%_cf_tên_trường_tùy_chỉnh%%"
985
+
986
+ #: inc/admin/admin.php:214
987
+ msgid "Custom fields from post, page or post type"
988
+ msgstr "Tiêu đề bài đăng (bài đăng, trang, loại bài đăng tùy chỉnh)"
989
+
990
+ #: inc/admin/admin.php:215
991
+ #, php-format
992
+ msgid "%%wc_single_cat%%"
993
+ msgstr "%%wc_giỏ_hàng_đơn%%"
994
+
995
+ #: inc/admin/admin.php:215
996
+ msgid "Single product category"
997
+ msgstr "Danh mục sản phẩm đơn"
998
+
999
+ #: inc/admin/admin.php:216
1000
+ #, php-format
1001
+ msgid "%%wc_single_tag%%"
1002
+ msgstr "%%wc_thẻ_đơn%%"
1003
+
1004
+ #: inc/admin/admin.php:216
1005
+ msgid "Single product tag"
1006
+ msgstr "Thẻ sản phẩm đơn"
1007
+
1008
+ #: inc/admin/admin.php:217
1009
+ #, php-format
1010
+ msgid "%%wc_single_short_desc%%"
1011
+ msgstr "%%wc_mô_tả_ngắn_trang_đơn%%"
1012
+
1013
+ #: inc/admin/admin.php:217
1014
+ msgid "Single product short description"
1015
+ msgstr "Mô tả sản phẩm ngắn (đơn)"
1016
+
1017
+ #: inc/admin/admin.php:223
1018
+ msgid "Templates variables"
1019
+ msgstr "Các biến thể Mẫu"
1020
+
1021
+ #: inc/admin/admin.php:231 inc/admin/admin.php:239
1022
+ msgid "Browse our guides"
1023
+ msgstr "Xem hướng dẫn của chúng tôi"
1024
+
1025
+ #: inc/admin/admin.php:232 inc/admin/admin.php:240
1026
+ msgid "Read our FAQ"
1027
+ msgstr "Đọc Câu Hỏi Thường Gặp"
1028
+
1029
+ #: inc/admin/admin.php:233 inc/admin/admin.php:241
1030
+ msgid "Check our website"
1031
+ msgstr "Kiểm tra trang web của chúng tôi"
1032
+
1033
+ #: inc/admin/admin.php:253
1034
+ msgid ""
1035
+ "Watch our video to learn how to connect your WordPress site with Google "
1036
+ "Analytics and get statistics right in your dashboard (PRO only)."
1037
+ msgstr ""
1038
+ "Xem video của chúng tôi để tìm hiểu cách kết nối trang web WordPress với "
1039
+ "Google Analytics và nhận thống kê ngay trong trang tổng quan của bạn (chỉ "
1040
+ "dành cho PRO)."
1041
+
1042
+ #: inc/admin/admin.php:258
1043
+ msgid "How-to"
1044
+ msgstr "Làm thế nào để"
1045
+
1046
+ #: inc/admin/admin.php:266 inc/admin/admin.php:272
1047
+ msgid "Read our guide"
1048
+ msgstr "Xem hướng dẫn của chúng tôi"
1049
+
1050
+ #: inc/admin/admin.php:307 inc/admin/admin.php:311 inc/admin/admin.php:374
1051
+ #: inc/admin/admin.php:378 inc/admin/admin.php:439 inc/admin/admin.php:443
1052
+ #: inc/admin/admin.php:506 inc/admin/admin.php:510 inc/admin/admin.php:587
1053
+ #: inc/admin/admin.php:591 inc/admin/admin.php:1259 inc/admin/admin.php:1263
1054
+ #: inc/admin/admin.php:1297 inc/admin/admin.php:1301 inc/admin/admin.php:1335
1055
+ #: inc/admin/admin.php:1339 inc/admin/admin.php:1373 inc/admin/admin.php:1377
1056
+ #: inc/admin/admin.php:1411 inc/admin/admin.php:1415 inc/admin/admin.php:1440
1057
+ #: inc/admin/admin.php:1444 inc/admin/admin.php:1468 inc/admin/admin.php:1472
1058
+ #: inc/admin/admin.php:1496 inc/admin/admin.php:1500 inc/admin/admin.php:1524
1059
+ #: inc/admin/admin.php:1528 inc/admin/admin.php:1552 inc/admin/admin.php:1556
1060
+ #: inc/admin/admin.php:1580 inc/admin/admin.php:1584 inc/admin/admin.php:1641
1061
+ #: inc/admin/admin.php:1645 inc/admin/admin.php:1680 inc/admin/admin.php:1684
1062
+ #: inc/admin/admin.php:1709 inc/admin/admin.php:1713
1063
+ msgid "Click to disable this feature"
1064
+ msgstr "Nhấp để vô hiệu tính năng này"
1065
+
1066
+ #: inc/admin/admin.php:308 inc/admin/admin.php:310 inc/admin/admin.php:375
1067
+ #: inc/admin/admin.php:377 inc/admin/admin.php:440 inc/admin/admin.php:442
1068
+ #: inc/admin/admin.php:507 inc/admin/admin.php:509 inc/admin/admin.php:588
1069
+ #: inc/admin/admin.php:590 inc/admin/admin.php:1260 inc/admin/admin.php:1262
1070
+ #: inc/admin/admin.php:1298 inc/admin/admin.php:1300 inc/admin/admin.php:1336
1071
+ #: inc/admin/admin.php:1338 inc/admin/admin.php:1374 inc/admin/admin.php:1376
1072
+ #: inc/admin/admin.php:1412 inc/admin/admin.php:1414 inc/admin/admin.php:1441
1073
+ #: inc/admin/admin.php:1443 inc/admin/admin.php:1469 inc/admin/admin.php:1471
1074
+ #: inc/admin/admin.php:1497 inc/admin/admin.php:1499 inc/admin/admin.php:1525
1075
+ #: inc/admin/admin.php:1527 inc/admin/admin.php:1553 inc/admin/admin.php:1555
1076
+ #: inc/admin/admin.php:1581 inc/admin/admin.php:1583 inc/admin/admin.php:1642
1077
+ #: inc/admin/admin.php:1644 inc/admin/admin.php:1681 inc/admin/admin.php:1683
1078
+ #: inc/admin/admin.php:1710 inc/admin/admin.php:1712
1079
+ msgid "Click to enable this feature"
1080
+ msgstr "Nhấp để bật tính năng này"
1081
+
1082
+ #: inc/admin/admin.php:325
1083
+ msgid "Home"
1084
+ msgstr "Trang chủ"
1085
+
1086
+ #: inc/admin/admin.php:326
1087
+ msgid "Single Post Types"
1088
+ msgstr "Loại bài đăng đơn"
1089
+
1090
+ #: inc/admin/admin.php:327
1091
+ msgid "Archives"
1092
+ msgstr "Các lưu trữ"
1093
+
1094
+ #: inc/admin/admin.php:328 inc/admin/admin.php:394
1095
+ msgid "Taxonomies"
1096
+ msgstr "Phân loại"
1097
+
1098
+ #: inc/admin/admin.php:392 inc/admin/admin.php:525 inc/admin/admin.php:534
1099
+ msgid "General"
1100
+ msgstr "Chung"
1101
+
1102
+ #: inc/admin/admin.php:393
1103
+ msgid "Post Types"
1104
+ msgstr "Các loại bài đăng"
1105
+
1106
+ #: inc/admin/admin.php:395
1107
+ msgid "HTML Sitemap"
1108
+ msgstr "Sơ đồ trang web HTML"
1109
+
1110
+ #: inc/admin/admin.php:457
1111
+ msgid "Knowledge Graph"
1112
+ msgstr "Knowledge Graph"
1113
+
1114
+ #: inc/admin/admin.php:458
1115
+ msgid "Your social accounts"
1116
+ msgstr "Tài khoản mạng xã hội của bạn"
1117
+
1118
+ #: inc/admin/admin.php:459
1119
+ msgid "Facebook"
1120
+ msgstr "Facebook"
1121
+
1122
+ #: inc/admin/admin.php:460
1123
+ msgid "Twitter"
1124
+ msgstr "Twitter"
1125
+
1126
+ #: inc/admin/admin.php:526 inc/admin/admin.php:535
1127
+ msgid "Tracking"
1128
+ msgstr "Theo dõi"
1129
+
1130
+ #: inc/admin/admin.php:527 inc/admin/admin.php:536
1131
+ msgid "Events"
1132
+ msgstr "Sự kiện"
1133
+
1134
+ #: inc/admin/admin.php:528 inc/admin/admin.php:537
1135
+ msgid "Custom Dimensions"
1136
+ msgstr "Thứ nguyên tùy chỉnh"
1137
+
1138
+ #: inc/admin/admin.php:529
1139
+ msgid "Stats in Dashboard"
1140
+ msgstr "Chỉ số trong bảng điều khiển"
1141
+
1142
+ #: inc/admin/admin.php:606
1143
+ msgid "Appearance"
1144
+ msgstr "Hiển thị"
1145
+
1146
+ #: inc/admin/admin.php:607
1147
+ msgid "Security"
1148
+ msgstr "An ninh"
1149
+
1150
+ #: inc/admin/admin.php:639
1151
+ msgid "Export Settings"
1152
+ msgstr "Xuất cài đặt"
1153
+
1154
+ #: inc/admin/admin.php:641
1155
+ msgid ""
1156
+ "Export the plugin settings for this site as a .json file. This allows you to "
1157
+ "easily import the configuration into another site."
1158
+ msgstr ""
1159
+ "Xuất các cài đặt plugin cho trang web này dưới dạng tệp .json. Điều này cho "
1160
+ "phép bạn dễ dàng nhập cấu hình vào một trang khác."
1161
+
1162
+ #: inc/admin/admin.php:646 inc/admin/admin.php:699
1163
+ msgid "Export"
1164
+ msgstr "Xuất"
1165
+
1166
+ #: inc/admin/admin.php:653
1167
+ msgid "Import Settings"
1168
+ msgstr "Cài đặt nhập vào"
1169
+
1170
+ #: inc/admin/admin.php:655
1171
+ msgid ""
1172
+ "Import the plugin settings from a .json file. This file can be obtained by "
1173
+ "exporting the settings on another site using the form above."
1174
+ msgstr ""
1175
+ "Nhập cài đặt plugin từ tệp .json. Bạn có thể lấy tệp này bằng cách xuất các "
1176
+ "cài đặt trên trang web khác bằng cách sử dụng biểu mẫu ở trên."
1177
+
1178
+ #: inc/admin/admin.php:663 inc/admin/admin.php:686
1179
+ msgid "Import"
1180
+ msgstr "Nhập"
1181
+
1182
+ #: inc/admin/admin.php:671
1183
+ msgid "Import Redirections"
1184
+ msgstr "Nhập vào chuyển hưởng"
1185
+
1186
+ #: inc/admin/admin.php:673
1187
+ msgid ""
1188
+ "Import your own redirections from a .csv file (separator \";\"). You must "
1189
+ "have 3 columns in this order: url to match (without your domain name), url "
1190
+ "to redirect in absolute and type of redirection (301, 302 or 307)."
1191
+ msgstr ""
1192
+ "Nhập chuyển hướng riêng của bạn từ tệp .csv (phân cách \";\"). Bạn phải có 3 "
1193
+ "cột theo thứ tự này: url để khớp (không có tên miền), url để chuyển hướng "
1194
+ "theo kiểu tuyệt đối và loại chuyển hướng (301, 302 hoặc 307)."
1195
+
1196
+ #: inc/admin/admin.php:676
1197
+ msgid "Download a CSV example"
1198
+ msgstr "Tải xuống ví dụ CSV"
1199
+
1200
+ #: inc/admin/admin.php:692
1201
+ msgid "Export Redirections"
1202
+ msgstr "Nhập vào chuyển hưởng"
1203
+
1204
+ #: inc/admin/admin.php:694
1205
+ msgid ""
1206
+ "Export all redirections for this site as a .csv file. This allows you to "
1207
+ "easily import the redirections into another site, to Excel / Google Sheets..."
1208
+ msgstr ""
1209
+ "Xuất các cài đặt plugin cho trang web này dưới dạng tệp .json. Điều này cho "
1210
+ "phép bạn dễ dàng nhập cấu hình vào một trang khác."
1211
+
1212
+ #: inc/admin/admin.php:707
1213
+ msgid "Import posts and terms metadata from Yoast"
1214
+ msgstr "Nhập vào các metadata bài viết và điều khoản từ YOAST"
1215
+
1216
+ #: inc/admin/admin.php:709
1217
+ msgid "By clicking Migrate, we'll import:"
1218
+ msgstr "Bằng cách nhấp vào Di chuyển, chúng tôi sẽ nhập:"
1219
+
1220
+ #: inc/admin/admin.php:711
1221
+ msgid "Title tags"
1222
+ msgstr "Thẻ tiêu đề"
1223
+
1224
+ #: inc/admin/admin.php:713
1225
+ msgid "Facebook Open Graph tags (title, description and image thumbnail)"
1226
+ msgstr "Các thẻ Facebook Open Graph (tiêu đề, mô tả và hình thu nhỏ)"
1227
+
1228
+ #: inc/admin/admin.php:714
1229
+ msgid "Twitter tags (title, description and image thumbnail)"
1230
+ msgstr "Thẻ Twitter (tiêu đề, mô tả và hình thu nhỏ của hình ảnh)"
1231
+
1232
+ #: inc/admin/admin.php:715
1233
+ msgid "Meta Robots (noindex, nofollow...)"
1234
+ msgstr "Meta Robots (noindex, nofollow ...)"
1235
+
1236
+ #: inc/admin/admin.php:717
1237
+ msgid "Focus keywords"
1238
+ msgstr "Tìm kiếm từ khóa"
1239
+
1240
+ #: inc/admin/admin.php:719
1241
+ msgid ""
1242
+ "<strong>WARNING:</strong> Migration will delete all SEOPress posts and terms "
1243
+ "metadata"
1244
+ msgstr ""
1245
+ "<strong>CẢNH BÁO:</strong> Di chuyển sẽ xóa tất cả các SEOPress posts "
1246
+ "metadata"
1247
+
1248
+ #: inc/admin/admin.php:720
1249
+ msgid "Migrate now"
1250
+ msgstr "Di chuyển ngay bây giờ"
1251
+
1252
+ #: inc/admin/admin.php:727
1253
+ msgid "Reset All Notices From Notifications Center"
1254
+ msgstr "Đặt lại Tất cả Thông báo Từ Trung tâm Thông báo"
1255
+
1256
+ #: inc/admin/admin.php:729
1257
+ msgid ""
1258
+ "By clicking Reset Notices, you'll see all notices again in notifications "
1259
+ "center."
1260
+ msgstr ""
1261
+ "Bằng cách nhấp vào Đặt lại Thông báo, bạn sẽ nhìn thấy tất cả các thông báo "
1262
+ "một lần nữa trong trung tâm thông báo."
1263
+
1264
+ #: inc/admin/admin.php:734
1265
+ msgid "Reset notices"
1266
+ msgstr "Khôi phục thông báo"
1267
+
1268
+ #: inc/admin/admin.php:741
1269
+ msgid "Reset All Settings"
1270
+ msgstr "Khôi phục lại tất cả cài đặt"
1271
+
1272
+ #: inc/admin/admin.php:743
1273
+ msgid ""
1274
+ "<strong>WARNING:</strong> Delete all options related to SEOPress in your "
1275
+ "database AND set settings to their default values."
1276
+ msgstr ""
1277
+ "<strong>CẢNH BÁO:</strong>Xóa tất cả các tùy chọn có liên quan đến SEOPress "
1278
+ "trong cơ sở dữ liệu của bạn VÀ đặt cài đặt về giá trị mặc định."
1279
+
1280
+ #: inc/admin/admin.php:748
1281
+ msgid "Reset settings"
1282
+ msgstr "Khôi phục cài đặt"
1283
+
1284
+ #: inc/admin/admin.php:788 inc/admin/admin.php:794
1285
+ msgid "SEO Tools"
1286
+ msgstr "Công cụ SEO"
1287
+
1288
+ #: inc/admin/admin.php:789 inc/admin/admin.php:795 inc/admin/admin.php:801
1289
+ #: inc/admin/admin.php:806
1290
+ msgid "Useful links"
1291
+ msgstr "Liên kết hữu ích"
1292
+
1293
+ #: inc/admin/admin.php:793 inc/admin/admin.php:805
1294
+ msgid "Notifications Center"
1295
+ msgstr "Trung tâm Thông báo"
1296
+
1297
+ #: inc/admin/admin.php:826
1298
+ msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
1299
+ msgstr ""
1300
+ "Theme của bạn không sử dụng <strong>add_theme_support('title-tag');</strong>"
1301
+
1302
+ #: inc/admin/admin.php:827 inc/admin/admin.php:882 inc/admin/admin.php:892
1303
+ #: inc/admin/admin.php:902
1304
+ msgid "High impact"
1305
+ msgstr "Xung đột cao"
1306
+
1307
+ #: inc/admin/admin.php:837 inc/admin/admin.php:868 inc/admin/admin.php:4486
1308
+ #: inc/admin/admin.php:4507 inc/admin/admin.php:4528 inc/admin/admin.php:4549
1309
+ msgid "Learn more"
1310
+ msgstr "Tìm hiểu thêm"
1311
+
1312
+ #: inc/admin/admin.php:844
1313
+ msgid ""
1314
+ "We notice that you use Yoast SEO plugin. <br>Do you want to migrate all your "
1315
+ "posts metadata to SEOPress?"
1316
+ msgstr ""
1317
+ "Chúng tôi nhận thấy rằng bạn sử dụng plugin SEO Yoast. <br> Bạn có muốn di "
1318
+ "chuyển tất cả các bài viết siêu dữ liệu bài viết sang SEOPress không?"
1319
+
1320
+ #: inc/admin/admin.php:846
1321
+ msgid "Migrate!"
1322
+ msgstr "Chuyển!"
1323
+
1324
+ #: inc/admin/admin.php:867
1325
+ msgid "Your site doesn't use an SSL certificate!"
1326
+ msgstr "Trang web của bạn không sử dụng chứng chỉ SSL!"
1327
+
1328
+ #: inc/admin/admin.php:869
1329
+ msgid "Low impact"
1330
+ msgstr "Xung đột thấp"
1331
+
1332
+ #: inc/admin/admin.php:871
1333
+ msgid "Buy an SSL!"
1334
+ msgstr "Mua một SSL!"
1335
+
1336
+ #: inc/admin/admin.php:881
1337
+ msgid "Your site is not visible to Search Engines!"
1338
+ msgstr "Trang web của bạn không hiển thị với Công cụ Tìm kiếm!"
1339
+
1340
+ #: inc/admin/admin.php:884 inc/admin/admin.php:894 inc/admin/admin.php:904
1341
+ #: inc/admin/admin.php:928 inc/admin/admin.php:982 inc/admin/admin.php:995
1342
+ #: inc/admin/admin.php:1067
1343
+ msgid "Fix this!"
1344
+ msgstr "Sửa cái này!"
1345
+
1346
+ #: inc/admin/admin.php:891
1347
+ msgid "Your site title is empty!"
1348
+ msgstr "Tiêu đề trang web của bạn đang trống!"
1349
+
1350
+ #: inc/admin/admin.php:901 inc/admin/admin.php:2976
1351
+ msgid ""
1352
+ "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
1353
+ msgstr ""
1354
+ "Đường dẫn của bạn không thân thiện với SEO lắm! Kích hoạt Pretty permalinks "
1355
+ "để sửa lỗi này."
1356
+
1357
+ #: inc/admin/admin.php:925
1358
+ msgid "You RSS feed show full text!"
1359
+ msgstr "Bạn nguồn cấp dữ liệu RSS hiển thị văn bản đầy đủ!"
1360
+
1361
+ #: inc/admin/admin.php:926 inc/admin/admin.php:980 inc/admin/admin.php:993
1362
+ msgid "Medium impact"
1363
+ msgstr "Xung đột vừa phải"
1364
+
1365
+ #: inc/admin/admin.php:952
1366
+ msgid "Break comments into pages is ON!"
1367
+ msgstr "Tách các bình luận bên trong các trang đang BẬT!"
1368
+
1369
+ #: inc/admin/admin.php:953 inc/admin/admin.php:1017 inc/admin/admin.php:1053
1370
+ msgid "Huge impact"
1371
+ msgstr "Xung đột rất lớn"
1372
+
1373
+ #: inc/admin/admin.php:955
1374
+ msgid "Disable this!"
1375
+ msgstr "Vô hiệu hoá điều này!"
1376
+
1377
+ #: inc/admin/admin.php:979
1378
+ msgid "Display more posts per page on homepage and archives"
1379
+ msgstr "Hiển thị nhiều bài đăng trên mỗi trang trên trang chủ và lưu trữ"
1380
+
1381
+ #: inc/admin/admin.php:992
1382
+ msgid "You don't have an XML Sitemap!"
1383
+ msgstr "Bạn không có Sơ đồ trang web XML!"
1384
+
1385
+ #: inc/admin/admin.php:1016
1386
+ msgid "Do you have a Google My Business page? It's free!"
1387
+ msgstr "Bạn có trang Google Business chưa? Nó miễn phí!"
1388
+
1389
+ #: inc/admin/admin.php:1019
1390
+ msgid "Create your page now!"
1391
+ msgstr "Tạo trang của bạn ngay!"
1392
+
1393
+ #: inc/admin/admin.php:1052
1394
+ msgid "Add your site to Google. It's free!"
1395
+ msgstr "Thêm trang web của bạn vào Google. Hoàn toànmiễn phí!"
1396
+
1397
+ #: inc/admin/admin.php:1055
1398
+ msgid "Add your site to Search Console!"
1399
+ msgstr "Thêm trang web vào Search Console!"
1400
+
1401
+ #: inc/admin/admin.php:1065
1402
+ msgid "You have to enter your licence key to get updates and support"
1403
+ msgstr "Bạn phải nhập khóa cấp phép để nhận thông tin cập nhật và hỗ trợ"
1404
+
1405
+ #: inc/admin/admin.php:1080
1406
+ msgid "Check websites setup on your server"
1407
+ msgstr "Kiểm tra các trang web được thiết lập trên máy chủ"
1408
+
1409
+ #: inc/admin/admin.php:1082
1410
+ msgid "Host IP: "
1411
+ msgstr "Host IP: "
1412
+
1413
+ #: inc/admin/admin.php:1088
1414
+ msgid "Server IP Address: "
1415
+ msgstr "Địa chỉ IP của máy chủ: "
1416
+
1417
+ #: inc/admin/admin.php:1090
1418
+ msgid "Last scrape: "
1419
+ msgstr "Scape mới nhất: "
1420
+
1421
+ #: inc/admin/admin.php:1091
1422
+ msgid "Number of websites on your server: "
1423
+ msgstr "Số lượng trang web trên máy chủ của bạn: "
1424
+
1425
+ #: inc/admin/admin.php:1103
1426
+ msgid "Get list"
1427
+ msgstr "Nhận danh sách"
1428
+
1429
+ #: inc/admin/admin.php:1111
1430
+ msgid "Check your domain expiration date"
1431
+ msgstr "Kiểm tra ngày hết hạn miền của bạn"
1432
+
1433
+ #: inc/admin/admin.php:1142
1434
+ msgid "Your domain name: "
1435
+ msgstr "Tên miền của bạn: "
1436
+
1437
+ #: inc/admin/admin.php:1145
1438
+ msgid "Your registrar: "
1439
+ msgstr "Công ty đăng ký của bạn: "
1440
+
1441
+ #: inc/admin/admin.php:1148
1442
+ msgid "Last updated date: "
1443
+ msgstr "Ngày update mới nhất: "
1444
+
1445
+ #: inc/admin/admin.php:1151
1446
+ msgid "Domain creation date: "
1447
+ msgstr "Ngày tạo tên miền: "
1448
+
1449
+ #: inc/admin/admin.php:1154
1450
+ msgid "Your domain expires: "
1451
+ msgstr "Miền của bạn hết hạn: "
1452
+
1453
+ #: inc/admin/admin.php:1159
1454
+ msgid "Sorry, you domain name can't be verified :("
1455
+ msgstr "Thật tiếc, tên miền của bạn không thể xác nhận :("
1456
+
1457
+ #: inc/admin/admin.php:1162
1458
+ msgid "Email me before expiration"
1459
+ msgstr "Gửi email cho tôi trước khi hết hạn"
1460
+
1461
+ #: inc/admin/admin.php:1171
1462
+ msgid "Check your Alexa Rank (Amazon index)"
1463
+ msgstr "Kiểm tra thứ hạng Alexa của bạn (Amazon index)"
1464
+
1465
+ #: inc/admin/admin.php:1186
1466
+ msgid "Your Alexa Rank"
1467
+ msgstr "Xếp hạng Alexa của bạn"
1468
+
1469
+ #: inc/admin/admin.php:1208
1470
+ msgid "Country Rank: "
1471
+ msgstr "Xếp hạng quốc gia: "
1472
+
1473
+ #: inc/admin/admin.php:1217
1474
+ msgid "The lower, the best"
1475
+ msgstr "Thấp hơn, sẽ tốt nhất"
1476
+
1477
+ #: inc/admin/admin.php:1221
1478
+ msgid "Get Alexa Rank"
1479
+ msgstr "Nhận xếp hạng Alexa"
1480
+
1481
+ #: inc/admin/admin.php:1229
1482
+ msgid "Upload a list of links to disavow to Google"
1483
+ msgstr "Tải lên một danh sách các liên kết để từ chối đến Google"
1484
+
1485
+ #: inc/admin/admin.php:1230
1486
+ msgid "Google Trends"
1487
+ msgstr "Google xu hướng"
1488
+
1489
+ #: inc/admin/admin.php:1231
1490
+ msgid "Dareboost: Test, analyze and optimize your website"
1491
+ msgstr "Dareboost: Kiểm tra, phân tích và tối ưu hóa trang web của bạn"
1492
+
1493
+ #: inc/admin/admin.php:1232
1494
+ msgid "Google Campaign URL Builder tool"
1495
+ msgstr "Công cụ tạo URL Chiến dịch Google"
1496
+
1497
+ #: inc/admin/admin.php:1245
1498
+ msgid "Titles & metas"
1499
+ msgstr "Tiêu đề & metas"
1500
+
1501
+ #: inc/admin/admin.php:1246
1502
+ msgid "Manage all your titles & metas"
1503
+ msgstr "Quản lý tất cả các tiêu đề và metas của bạn"
1504
+
1505
+ #: inc/admin/admin.php:1247 inc/admin/admin.php:1285 inc/admin/admin.php:1323
1506
+ #: inc/admin/admin.php:1361 inc/admin/admin.php:1399 inc/admin/admin.php:1428
1507
+ #: inc/admin/admin.php:1456 inc/admin/admin.php:1484 inc/admin/admin.php:1512
1508
+ #: inc/admin/admin.php:1540 inc/admin/admin.php:1568 inc/admin/admin.php:1606
1509
+ #: inc/admin/admin.php:1628 inc/admin/admin.php:1668 inc/admin/admin.php:1697
1510
+ #: inc/admin/admin.php:1747 inc/admin/admin.php:1758 inc/admin/admin.php:1770
1511
+ #: inc/admin/admin.php:1782 inc/admin/admin.php:1803
1512
+ msgid "Manage"
1513
+ msgstr "Quản lý"
1514
+
1515
+ #: inc/admin/admin.php:1275
1516
+ msgid "Guide to manage your titles and meta descriptions - new window"
1517
+ msgstr "Hướng dẫn quản lý tiêu đề và mô tả meta của bạn - mở trong cửa sổ mới"
1518
+
1519
+ #: inc/admin/admin.php:1284
1520
+ msgid "Manage your XML / Image / HTML Sitemap"
1521
+ msgstr "Quản lý Sơ đồ trang XML / Hình ảnh / HTML của bạn"
1522
+
1523
+ #: inc/admin/admin.php:1313
1524
+ msgid "Guide to enable your XML Sitemaps - new window"
1525
+ msgstr "Hướng dẫn bật Sơ đồ trang web XML của bạn - mở trong cửa sổ mới"
1526
+
1527
+ #: inc/admin/admin.php:1322
1528
+ msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
1529
+ msgstr "Mở Graph, Twitter Card, Google Knowledge Graph và nhiều hơn nữa..."
1530
+
1531
+ #: inc/admin/admin.php:1351
1532
+ msgid "Guide to enable Google Knowledge Graph - new window"
1533
+ msgstr "Hướng dẫn bật Google Knowledge Graph - mở trong cửa sổ mới"
1534
+
1535
+ #: inc/admin/admin.php:1360
1536
+ msgid "Track everything about your visitors with Google Analytics"
1537
+ msgstr ""
1538
+ "Theo dõi tất cả mọi thứ về khách truy cập của bạn bằng Google Analytics"
1539
+
1540
+ #: inc/admin/admin.php:1389
1541
+ msgid "Guide to getting started with Google Analytics - new window"
1542
+ msgstr "Hướng dẫn cơ bản với Google Analytics - mở trong cửa sổ mới"
1543
+
1544
+ #: inc/admin/admin.php:1398
1545
+ msgid "Advanced SEO options for advanced users!"
1546
+ msgstr "Tùy chọn SEO nâng cao cho người dùng nâng cao!"
1547
+
1548
+ #: inc/admin/admin.php:1427
1549
+ msgid "Improve WooCommerce SEO"
1550
+ msgstr "Cải thiện SEO WooCommerce"
1551
+
1552
+ #: inc/admin/admin.php:1455
1553
+ msgid "Improve Easy Digital Downloads SEO"
1554
+ msgstr "Cải thiện Easy Digital Downloads SEO"
1555
+
1556
+ #: inc/admin/admin.php:1483
1557
+ msgid "Add Google Local Business data type"
1558
+ msgstr "Thêm loại dữ liệu Google Local Business"
1559
+
1560
+ #: inc/admin/admin.php:1511
1561
+ msgid "Add Dublin Core meta tags"
1562
+ msgstr "Thêm thẻ meta Dublin Core"
1563
+
1564
+ #: inc/admin/admin.php:1539
1565
+ msgid ""
1566
+ "Add data types to your content: articles, courses, recipes, videos, events "
1567
+ "and products"
1568
+ msgstr ""
1569
+ "Thêm các loại dữ liệu vào nội dung của bạn: bài viết, các khóa học, công "
1570
+ "thức nấu ăn, video, sự kiện và sản phẩm"
1571
+
1572
+ #: inc/admin/admin.php:1567
1573
+ msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
1574
+ msgstr "Bật Breadcrumbs cho theme của bạn và cải thiện SEO trong SERPs"
1575
+
1576
+ #: inc/admin/admin.php:1596
1577
+ msgid "Guide to enable Breadcrumbs - new window"
1578
+ msgstr "Hướng dẫn kích hoạt tính năng Breadcrumbs - mở trong cửa sổ mới"
1579
+
1580
+ #: inc/admin/admin.php:1605
1581
+ msgid "Track your website performance to improve SEO with Google Page Speed"
1582
+ msgstr ""
1583
+ "Theo dõi hiệu suất trang web của bạn để cải thiện SEO với Google Page Speed"
1584
+
1585
+ #: inc/admin/admin.php:1616
1586
+ msgid "Guide to analyse your site with Google Page Speed - new window"
1587
+ msgstr "Phân tích trang này với Google Page Speed"
1588
+
1589
+ #: inc/admin/admin.php:1626
1590
+ msgid "Edit your robots.txt file"
1591
+ msgstr "Chỉnh sửa tệp robots.txt của bạn"
1592
+
1593
+ #: inc/admin/admin.php:1627
1594
+ msgid "View your robots.txt"
1595
+ msgstr "Chỉnh sửa tệp robots.txt của bạn"
1596
+
1597
+ #: inc/admin/admin.php:1657
1598
+ msgid "Guide to edit your robots.txt file - new window"
1599
+ msgstr "Chỉnh sửa tệp robots.txt của bạn"
1600
+
1601
+ #: inc/admin/admin.php:1667
1602
+ msgid "Optimize your site for Google News"
1603
+ msgstr "Tối ưu hóa trang web của bạn cho Google Tin tức"
1604
+
1605
+ #: inc/admin/admin.php:1695
1606
+ msgid "Monitor 404, create 301, 302 and 307 redirections"
1607
+ msgstr "Theo dõi 404, tạo chuyển hướng 301, 302 và 307"
1608
+
1609
+ #: inc/admin/admin.php:1696
1610
+ msgid "See redirects"
1611
+ msgstr "Xem chuyển hướng"
1612
+
1613
+ #: inc/admin/admin.php:1725
1614
+ msgid "Guide to enable 301 redirections and 404 monitoring - new window"
1615
+ msgstr "Hướng dẫn bật chuyển hướng 301 và giám sát 404 - mở trong cửa sổ mới"
1616
+
1617
+ #: inc/admin/admin.php:1734
1618
+ msgid "Scan your site to find SEO problems."
1619
+ msgstr "Quét trang của bạn để tìm các vấn đề về SEO."
1620
+
1621
+ #: inc/admin/admin.php:1735
1622
+ msgid "See broken links"
1623
+ msgstr "Xem link hỏng"
1624
+
1625
+ #: inc/admin/admin.php:1736
1626
+ msgid "Scan"
1627
+ msgstr "Quét"
1628
+
1629
+ #: inc/admin/admin.php:1745
1630
+ msgid "Check your backlinks with Majestic API."
1631
+ msgstr "Kiểm tra các backlinks của bạn với API Majestic."
1632
+
1633
+ #: inc/admin/admin.php:1746
1634
+ msgid "See backlinks"
1635
+ msgstr "Xem backlinks"
1636
+
1637
+ #: inc/admin/admin.php:1757
1638
+ msgid "Edit your htaccess file."
1639
+ msgstr "Chỉnh sửa tệp htaccess của bạn."
1640
+
1641
+ #: inc/admin/admin.php:1769
1642
+ msgid "Configure default WordPress RSS."
1643
+ msgstr "Định cấu hình mặc định WordPress RSS."
1644
+
1645
+ #: inc/admin/admin.php:1781
1646
+ msgid "Import / export SEOPress settings from site to site."
1647
+ msgstr "Nhập / xuất các cài đặt SEOPress từ trang này qua trang khác."
1648
+
1649
+ #: inc/admin/admin.php:1792
1650
+ msgid "Guide to export / import / reset settings - new window"
1651
+ msgstr "Hướng dẫn xuất / nhập / thiết lập lại cài đặt - mở trong cửa sổ mới"
1652
+
1653
+ #: inc/admin/admin.php:1802
1654
+ msgid "Edit your SEOPress license key."
1655
+ msgstr "Chỉnh sửa khóa cấp phép SEOPress của bạn."
1656
+
1657
+ #: inc/admin/admin.php:1813
1658
+ msgid "Guide to activate SEOPress PRO - new window"
1659
+ msgstr "Hướng dẫn kích hoạt SEOPress PRO - mở trong cửa sổ mới"
1660
+
1661
+ #: inc/admin/admin.php:1880 inc/admin/admin.php:3106
1662
+ msgid "Site title"
1663
+ msgstr "Tiêu đề trang"
1664
+
1665
+ #: inc/admin/admin.php:2121
1666
+ msgid "Indicate paginated content to Google"
1667
+ msgstr "Cho biết nội dung được phân trang tới Google"
1668
+
1669
+ #: inc/admin/admin.php:2138 inc/admin/admin.php:3825
1670
+ msgid "Enable XML Sitemap"
1671
+ msgstr "Bật Sơ đồ trang web XML"
1672
+
1673
+ #: inc/admin/admin.php:2146
1674
+ msgid "Enable XML Image Sitemaps"
1675
+ msgstr "Bật Sơ đồ trang web ảnh XML"
1676
+
1677
+ #: inc/admin/admin.php:2154 inc/admin/admin.php:3879
1678
+ msgid "Enable HTML Sitemap"
1679
+ msgstr "Bật Sơ đồ trang web HTML"
1680
+
1681
+ #: inc/admin/admin.php:2170
1682
+ msgid "Check to INCLUDE Post Types"
1683
+ msgstr "Kiểm tra để BAO GỒM các loại bài đăng"
1684
+
1685
+ #: inc/admin/admin.php:2186
1686
+ msgid "Check to INCLUDE Taxonomies"
1687
+ msgstr "Kiểm tra BAO GỒM các phân loại"
1688
+
1689
+ #: inc/admin/admin.php:2202 inc/admin/admin.php:3984
1690
+ msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
1691
+ msgstr ""
1692
+ "Nhập vào một ID bài đăng, trang hoặc (các) bài đăng tuỳ chỉnh để hiển thị Sơ "
1693
+ "đồ trang web"
1694
+
1695
+ #: inc/admin/admin.php:2210 inc/admin/admin.php:3998
1696
+ msgid "Exclude some Posts, Pages or Custom Post Types"
1697
+ msgstr "Loại trừ một số bài đăng, trang hoặc các loại bài đăng tùy chỉnh"
1698
+
1699
+ #: inc/admin/admin.php:2218
1700
+ msgid "Disable the display of the publication date"
1701
+ msgstr "Vô hiệu hoá hiển thị ngày đăng bài"
1702
+
1703
+ #: inc/admin/admin.php:2235
1704
+ msgid "Person or organization"
1705
+ msgstr "Cá nhân hoặc tổ chức"
1706
+
1707
+ #: inc/admin/admin.php:2243 inc/admin/admin.php:4045
1708
+ msgid "Your name / organization"
1709
+ msgstr "Tên / tổ chức của bạn"
1710
+
1711
+ #: inc/admin/admin.php:2251 inc/admin/admin.php:4058
1712
+ msgid "Your photo / organization logo"
1713
+ msgstr "Logo của bạn / tổ chức của bạn"
1714
+
1715
+ #: inc/admin/admin.php:2259 inc/admin/admin.php:4086
1716
+ msgid "Organization Phone number (only for Organization)"
1717
+ msgstr "Tổ chức Số điện thoại (chỉ dành cho Tổ chức)"
1718
+
1719
+ #: inc/admin/admin.php:2267
1720
+ msgid "Contact type (only for Organization)"
1721
+ msgstr "Loại liên hệ (chỉ dành cho Tổ chức)"
1722
+
1723
+ #: inc/admin/admin.php:2275
1724
+ msgid "Contact option (only for Organization)"
1725
+ msgstr "Tùy chọn liên hệ (chỉ dành cho Tổ chức)"
1726
+
1727
+ #: inc/admin/admin.php:2292 inc/admin/admin.php:4161
1728
+ msgid "Facebook Page URL"
1729
+ msgstr "URL trang Facebook"
1730
+
1731
+ #: inc/admin/admin.php:2300
1732
+ msgid "Twitter Username"
1733
+ msgstr "Tên tài khoản Twitter"
1734
+
1735
+ #: inc/admin/admin.php:2308 inc/admin/admin.php:4186
1736
+ msgid "Google + URL"
1737
+ msgstr "Google + URL"
1738
+
1739
+ #: inc/admin/admin.php:2316 inc/admin/admin.php:4198
1740
+ msgid "Pinterest URL"
1741
+ msgstr "Pinterest URL"
1742
+
1743
+ #: inc/admin/admin.php:2324 inc/admin/admin.php:4210
1744
+ msgid "Instagram URL"
1745
+ msgstr "Instagram URL"
1746
+
1747
+ #: inc/admin/admin.php:2332 inc/admin/admin.php:4222
1748
+ msgid "YouTube URL"
1749
+ msgstr "YouTube URL"
1750
+
1751
+ #: inc/admin/admin.php:2340 inc/admin/admin.php:4234
1752
+ msgid "LinkedIn URL"
1753
+ msgstr "LinkedIn URL"
1754
+
1755
+ #: inc/admin/admin.php:2348 inc/admin/admin.php:4246
1756
+ msgid "MySpace URL"
1757
+ msgstr "MySpace URL"
1758
+
1759
+ #: inc/admin/admin.php:2356 inc/admin/admin.php:4258
1760
+ msgid "Soundcloud URL"
1761
+ msgstr "Soundcloud URL"
1762
+
1763
+ #: inc/admin/admin.php:2364 inc/admin/admin.php:4270
1764
+ msgid "Tumblr URL"
1765
+ msgstr "Tumblr URL"
1766
+
1767
+ #: inc/admin/admin.php:2381
1768
+ msgid "Enable Open Graph Data"
1769
+ msgstr "Bật Open Graph Data"
1770
+
1771
+ #: inc/admin/admin.php:2389 inc/admin/admin.php:4302
1772
+ msgid "Select a default image"
1773
+ msgstr "Lựa chọn một ảnh mặc định"
1774
+
1775
+ #: inc/admin/admin.php:2397
1776
+ msgid "Facebook Link Ownership ID"
1777
+ msgstr "ID Quản trị Facebook"
1778
+
1779
+ #: inc/admin/admin.php:2405
1780
+ msgid "Facebook Admin ID"
1781
+ msgstr "ID Quản trị Facebook"
1782
+
1783
+ #: inc/admin/admin.php:2413
1784
+ msgid "Facebook App ID"
1785
+ msgstr "ID ứng dụng Facebook"
1786
+
1787
+ #: inc/admin/admin.php:2430
1788
+ msgid "Enable Twitter Card"
1789
+ msgstr "Bật Twitter Card"
1790
+
1791
+ #: inc/admin/admin.php:2438
1792
+ msgid "Use Open Graph if no Twitter Cards filled"
1793
+ msgstr "Sử dụng Open Graph nếu thẻ Twitter không được điền"
1794
+
1795
+ #: inc/admin/admin.php:2446 inc/admin/admin.php:4391
1796
+ msgid "Default Twitter Image"
1797
+ msgstr "Ảnh mặc định Twitter"
1798
+
1799
+ #: inc/admin/admin.php:2454
1800
+ msgid "Image size for Twitter Summary card"
1801
+ msgstr "Kích thước ảnh cho thẻ Twitter tổng hợp"
1802
+
1803
+ #: inc/admin/admin.php:2471
1804
+ msgid "Enable Google Analytics tracking"
1805
+ msgstr "Bật theo dõi Google Analytics"
1806
+
1807
+ #: inc/admin/admin.php:2479 inc/admin/admin.php:4440
1808
+ msgid "Enter your tracking ID"
1809
+ msgstr "Nhập ID theo dõi của bạn"
1810
+
1811
+ #: inc/admin/admin.php:2487
1812
+ msgid "Exclude user roles from tracking"
1813
+ msgstr "Loại trừ vai trò người dùng khỏi việc theo dõi"
1814
+
1815
+ #: inc/admin/admin.php:2505 inc/admin/admin.php:4483
1816
+ msgid "Enable remarketing, demographics and interest reporting"
1817
+ msgstr "Bật tiếp thị lại, nhân khẩu học và báo cáo sở thích"
1818
+
1819
+ #: inc/admin/admin.php:2513 inc/admin/admin.php:4504
1820
+ msgid "Enable IP Anonymization"
1821
+ msgstr "Bật ẩn danh IP"
1822
+
1823
+ #: inc/admin/admin.php:2521 inc/admin/admin.php:4525
1824
+ msgid "Enhanced Link Attribution"
1825
+ msgstr "Thuộc tính liên kết nâng cao"
1826
+
1827
+ #: inc/admin/admin.php:2529 inc/admin/admin.php:4546
1828
+ msgid "Enable cross-domain tracking"
1829
+ msgstr "Bật theo dõi tên miền chéo"
1830
+
1831
+ #: inc/admin/admin.php:2537 inc/admin/admin.php:4560
1832
+ msgid "Cross domains"
1833
+ msgstr "Tên miền chéo"
1834
+
1835
+ #: inc/admin/admin.php:2555
1836
+ msgid "Enable external links tracking (all links with target _blank attribute)"
1837
+ msgstr ""
1838
+ "Bật tính năng theo dõi liên kết bên ngoài (tất cả các liên kết có thuộc tính "
1839
+ "_blank mục tiêu)"
1840
+
1841
+ #: inc/admin/admin.php:2563
1842
+ msgid "Enable downloads tracking (eg: PDF, XLSX, DOCX...)"
1843
+ msgstr "Bật theo dõi tải xuống (ví dụ: PDF, XLSX, DOCX ...)"
1844
+
1845
+ #: inc/admin/admin.php:2571 inc/admin/admin.php:4606
1846
+ msgid "Track click downloads"
1847
+ msgstr "Theo dõi nhấp chuột tải xuống"
1848
+
1849
+ #: inc/admin/admin.php:2579
1850
+ msgid ""
1851
+ "Enable affiliate / outbound links tracking (eg: aff, go, out, recommends"
1852
+ msgstr ""
1853
+ "Bật liên kết tiếp thị / liên kết trỏ ra bên ngoài (ví dụ: aff, go, out, "
1854
+ "recommends"
1855
+
1856
+ #: inc/admin/admin.php:2587 inc/admin/admin.php:4637
1857
+ msgid "Track affiliate / outbound links"
1858
+ msgstr "Theo dõi liên kết tiếp thị / liên kết trỏ ra ngoài"
1859
+
1860
+ #: inc/admin/admin.php:2605
1861
+ msgid "Track Authors"
1862
+ msgstr "Theo dõi tác giả"
1863
+
1864
+ #: inc/admin/admin.php:2613
1865
+ msgid "Track Categories"
1866
+ msgstr "Danh mục theo dõi"
1867
+
1868
+ #: inc/admin/admin.php:2621
1869
+ msgid "Track Tags"
1870
+ msgstr "Thẻ theo dõi"
1871
+
1872
+ #: inc/admin/admin.php:2629
1873
+ msgid "Track Post Types"
1874
+ msgstr "Theo dõi các loại bài đăng"
1875
+
1876
+ #: inc/admin/admin.php:2637
1877
+ msgid "Track Logged In Users"
1878
+ msgstr "Theo dõi người dùng đăng nhập"
1879
+
1880
+ #: inc/admin/admin.php:2654
1881
+ msgid "Redirect attachment pages to post parent"
1882
+ msgstr "Chuyển hướng trang đính kèm sang bài đăng cha"
1883
+
1884
+ #: inc/admin/admin.php:2662
1885
+ msgid "Add WP Editor to taxonomy description textarea"
1886
+ msgstr "Thêm trình soạn thảo WP vào khu vực văn bản mô tả phân loại"
1887
+
1888
+ #: inc/admin/admin.php:2670
1889
+ msgid "Remove stop words from URL"
1890
+ msgstr "Loại bỏ từ dừng khỏi URL"
1891
+
1892
+ #: inc/admin/admin.php:2678
1893
+ msgid "Remove /category/ in URL"
1894
+ msgstr "Loại bỏ /danh-muc/ trong URL"
1895
+
1896
+ #: inc/admin/admin.php:2686 inc/admin/admin.php:5109
1897
+ msgid "Disable trailing slash for metas"
1898
+ msgstr "Tắt dấu gạch chéo cho metas"
1899
+
1900
+ #: inc/admin/admin.php:2694
1901
+ msgid "Remove WordPress generator meta tag"
1902
+ msgstr "Xóa thẻ meta tự tạo của Wordpress"
1903
+
1904
+ #: inc/admin/admin.php:2702
1905
+ msgid "Remove WordPress shortlink meta tag"
1906
+ msgstr "Xóa thẻ meta ngắn của WordPress"
1907
+
1908
+ #: inc/admin/admin.php:2710
1909
+ msgid "Remove Windows Live Writer meta tag"
1910
+ msgstr "Xóa thẻ meta của Windows Live Writer"
1911
+
1912
+ #: inc/admin/admin.php:2718
1913
+ msgid "Remove RSD meta tag"
1914
+ msgstr "Loại bỏ thẻ meta RSD"
1915
+
1916
+ #: inc/admin/admin.php:2726 inc/admin/admin.php:5189
1917
+ msgid "Google site verification"
1918
+ msgstr "Xác minh trang web của Google"
1919
+
1920
+ #: inc/admin/admin.php:2734 inc/admin/admin.php:5201
1921
+ msgid "Bing site verification"
1922
+ msgstr "Xác minh trang web Bing"
1923
+
1924
+ #: inc/admin/admin.php:2742 inc/admin/admin.php:5213
1925
+ msgid "Pinterest site verification"
1926
+ msgstr "Xác minh trang web Pinterest"
1927
+
1928
+ #: inc/admin/admin.php:2750 inc/admin/admin.php:5225
1929
+ msgid "Yandex site verification"
1930
+ msgstr "Xác minh trang web Yandex"
1931
+
1932
+ #: inc/admin/admin.php:2767
1933
+ msgid "SEOPress in admin bar"
1934
+ msgstr "SEOPress trong thanh quản trị"
1935
+
1936
+ #: inc/admin/admin.php:2775
1937
+ msgid "Move SEOPress metaboxe position"
1938
+ msgstr "Di chuyển SEOPress vị trí metaboxe"
1939
+
1940
+ #: inc/admin/admin.php:2783
1941
+ msgid "Hide SEOPress Notifications Center"
1942
+ msgstr "Ẩn trung tâm thông báo SEOPress"
1943
+
1944
+ #: inc/admin/admin.php:2791
1945
+ msgid "Show Title tag column in post types"
1946
+ msgstr "Hiển thị thẻ tiêu đề cột trong các loại bài đăng"
1947
+
1948
+ #: inc/admin/admin.php:2799
1949
+ msgid "Show Meta description column in post types"
1950
+ msgstr "Hiển thị cột mô tả Meta trong các loại bài đăng"
1951
+
1952
+ #: inc/admin/admin.php:2807
1953
+ msgid "Show Redirection Enable column in post types"
1954
+ msgstr "Hiển thị cột mô tả Meta trong các loại bài đăng"
1955
+
1956
+ #: inc/admin/admin.php:2815
1957
+ msgid "Show Redirect URL column in post types"
1958
+ msgstr "Hiển thị thẻ tiêu đề cột trong các loại bài đăng"
1959
+
1960
+ #: inc/admin/admin.php:2823
1961
+ msgid "Show canonical URL column in post types"
1962
+ msgstr "Hiển thị cột noindex trong các loại bài đăng"
1963
+
1964
+ #: inc/admin/admin.php:2831
1965
+ msgid "Show Target Keyword column in post types"
1966
+ msgstr "Hiển thị thẻ tiêu đề cột trong các loại bài đăng"
1967
+
1968
+ #: inc/admin/admin.php:2839
1969
+ msgid "Show noindex column in post types"
1970
+ msgstr "Hiển thị cột noindex trong các loại bài đăng"
1971
+
1972
+ #: inc/admin/admin.php:2847
1973
+ msgid "Show nofollow column in post types"
1974
+ msgstr "Hiển thị cột nofollow trong các loại bài đăng"
1975
+
1976
+ #: inc/admin/admin.php:2855
1977
+ msgid "Show total number of words column in post types"
1978
+ msgstr "Hiển thị tổng số từ của cột trong các loại bài đăng"
1979
+
1980
+ #: inc/admin/admin.php:2863
1981
+ msgid "Show W3C validator column in post types"
1982
+ msgstr "Hiển thị cột xác thực W3C trong các loại bài đăng"
1983
+
1984
+ #: inc/admin/admin.php:2871
1985
+ msgid "Show Google Page Speed column in post types"
1986
+ msgstr "Hiển thị cột Google Page Speed trong các loại bài đăng"
1987
+
1988
+ #: inc/admin/admin.php:2880
1989
+ msgid "Hide Genesis SEO Metaboxe"
1990
+ msgstr "Ẩn Genesis SEO Metaboxe"
1991
+
1992
+ #: inc/admin/admin.php:2897
1993
+ msgid "Block SEO metaboxe to user roles"
1994
+ msgstr "Chặn SEO metaboxe đến vai trò người dùng"
1995
+
1996
+ #: inc/admin/admin.php:2905
1997
+ msgid "Block Content analysis metaboxe to user roles"
1998
+ msgstr "Chặn SEO metaboxe đến vai trò người dùng"
1999
+
2000
+ #: inc/admin/admin.php:2949
2001
+ msgid "<p>Customize your titles & metas for homepage</p>"
2002
+ msgstr "<p>Tùy chỉnh tiêu đề và trang web của bạn cho trang chủ</p>"
2003
+
2004
+ #: inc/admin/admin.php:2954
2005
+ msgid "<p>Customize your titles & metas for Single Custom Post Types</p>"
2006
+ msgstr ""
2007
+ "<p>Tùy chỉnh tiêu đề và metas của bạn cho các loại bài đăng tùy chỉnh đơn</p>"
2008
+
2009
+ #: inc/admin/admin.php:2959
2010
+ msgid "<p>Customize your metas for all pages</p>"
2011
+ msgstr "<p>Tùy chỉnh metas của bạn cho tất cả các trang</p>"
2012
+
2013
+ #: inc/admin/admin.php:2964
2014
+ msgid "<p>Customize your metas for all taxonomies archives</p>"
2015
+ msgstr "<p>Tùy chỉnh metas của bạn cho tất cả các lưu trữ phân loại</p>"
2016
+
2017
+ #: inc/admin/admin.php:2969
2018
+ msgid "<p>Customize your metas for all archives</p>"
2019
+ msgstr "<p>Tùy chỉnh metas của bạn cho tất cả các lưu trữ</p>"
2020
+
2021
+ #: inc/admin/admin.php:2977
2022
+ msgid "Change this settings"
2023
+ msgstr "Thay đổi cài đặt này"
2024
+
2025
+ #: inc/admin/admin.php:2980
2026
+ msgid ""
2027
+ "To view your sitemap, enable permalinks (not default one), and save settings "
2028
+ "to flush them."
2029
+ msgstr ""
2030
+ "Để xem sơ đồ trang web của bạn, bật đường dẫn tĩnh (không phải cái mặc định) "
2031
+ "và lưu cài đặt để làm sạch chúng."
2032
+
2033
+ #: inc/admin/admin.php:2981
2034
+ msgid ""
2035
+ "Only the last 1000 items are listed in Sitemaps for performances issues."
2036
+ msgstr ""
2037
+ "Chỉ 1000 mục cuối cùng được liệt kê trong Sơ đồ trang web cho các vấn đề về "
2038
+ "hiệu suất."
2039
+
2040
+ #: inc/admin/admin.php:2987
2041
+ msgid ""
2042
+ "Your server use NGINX. If XML Sitemaps doesn't work, you have to add this "
2043
+ "rules to your configuration:"
2044
+ msgstr ""
2045
+ "Máy chủ của bạn sử dụng NGINX. Nếu XML Sitemaps không hoạt động, bạn phải "
2046
+ "thêm các quy tắc này vào cấu hình của mình:"
2047
+
2048
+ #: inc/admin/admin.php:2998
2049
+ msgid "Noindex content will not be displayed in Sitemaps."
2050
+ msgstr "Nội dung không xếp hạng sẽ không được hiển thị trong Sơ đồ trang web."
2051
+
2052
+ #: inc/admin/admin.php:3000
2053
+ msgid "View your sitemap"
2054
+ msgstr "Xem sơ đồ trang web của bạn"
2055
+
2056
+ #: inc/admin/admin.php:3002
2057
+ msgid "Ping Google manually"
2058
+ msgstr "Ping Google bằng tay"
2059
+
2060
+ #: inc/admin/admin.php:3004
2061
+ msgid "Flush permalinks"
2062
+ msgstr "Flush đường dẫn"
2063
+
2064
+ #: inc/admin/admin.php:3010
2065
+ msgid "<p>Create an HTML for your visitors and boost your SEO.</p>"
2066
+ msgstr "<p>Tạo một HTML cho khách truy cập và tăng SEO của bạn</p>"
2067
+
2068
+ #: inc/admin/admin.php:3020 inc/admin/admin.php:3889
2069
+ msgid "Guide to enable HTML Sitemap - new window"
2070
+ msgstr "Bật Sơ đồ trang web HTML"
2071
+
2072
+ #: inc/admin/admin.php:3025
2073
+ msgid "<p>Include / Exclude Post Types.</p>"
2074
+ msgstr "<p>Bao gồm / loại trừ các loại bài đăng</p>"
2075
+
2076
+ #: inc/admin/admin.php:3030
2077
+ msgid "<p>Include / Exclude Taxonomies.</p>"
2078
+ msgstr "<p>Bao gồm / Loại trừ Quy tắc Phân loại</p>"
2079
+
2080
+ #: inc/admin/admin.php:3035
2081
+ msgid "<p>Configure Google Knowledge Graph.</p>"
2082
+ msgstr "<p>Cấu hình biểu đồ hiểu biết Google</p>"
2083
+
2084
+ #: inc/admin/admin.php:3040
2085
+ msgid "<p>Link your site with your social accounts.</p>"
2086
+ msgstr "<p>Liên kết trang web của bạn với các tài khoản xã hội của bạn</p>"
2087
+
2088
+ #: inc/admin/admin.php:3045
2089
+ msgid "<p>Manage Open Graph datas.</p>"
2090
+ msgstr "<p>Quản lý dữ liệu đồ thị mở</p>"
2091
+
2092
+ #: inc/admin/admin.php:3050
2093
+ msgid "<p>Manage your Twitter card.</p>"
2094
+ msgstr "<p>Quản lý thẻ Twitter của bạn</p>"
2095
+
2096
+ #: inc/admin/admin.php:3055
2097
+ msgid "<p>Link your Google Analytics to your website.</p>"
2098
+ msgstr "<p>Liên kết Google Analytics với trang web của bạn</p>"
2099
+
2100
+ #: inc/admin/admin.php:3060
2101
+ msgid "<p>Configure your Google Analytics tracking code.</p>"
2102
+ msgstr "<p>Cấu hình mã theo dõi Google Analytics</p>"
2103
+
2104
+ #: inc/admin/admin.php:3065
2105
+ msgid "<p>Track events in Google Analytics.</p>"
2106
+ msgstr "<p>Theo dõi sự kiện trong Google Analytics</p>"
2107
+
2108
+ #: inc/admin/admin.php:3070
2109
+ msgid ""
2110
+ "<p>Configure your Google Analytics custom dimensions. <br>Custom dimensions "
2111
+ "and custom metrics are like default dimensions and metrics in your Analytics "
2112
+ "account,<br> except you create them yourself. You can use them to collect "
2113
+ "and analyze data that Analytics doesn't automatically track.<br> Notice that "
2114
+ "you have to setup your custom dimensions in your Google Analytics account "
2115
+ "too. More info by clicking on help icon."
2116
+ msgstr ""
2117
+ "<p>Cấu hình Google Analytics dimensions tùy biến của bạn. <br>Tùy biến "
2118
+ "dimensions và tùy biến metrics giống như dimensions và metrics mặc định "
2119
+ "trong tài khoản Analytics của bạn,<br> trừ khi bạn tự tạo riêng cho mình. "
2120
+ "Bạn có thể sử dụng chúng để thu thập và phân tích dữ liệu mà Analytics không "
2121
+ "tự động theo dõi.<br> Lưu ý rằng bạn cũng phải cài đặt dimensions tùy chỉnh "
2122
+ "trong tài khoản Google Analytics. Để biết thêm thông tin hãy click vào icon "
2123
+ "giúp đỡ."
2124
+
2125
+ #: inc/admin/admin.php:3080
2126
+ msgid "Guide to create custom dimensions in Google Analytics - new window"
2127
+ msgstr ""
2128
+ "Hướng dẫn tạo tùy chỉnh dimensions trong Google Analytics - mở trong cửa sổ "
2129
+ "mới"
2130
+
2131
+ #: inc/admin/admin.php:3085
2132
+ msgid "<p>Advanced SEO options.</p>"
2133
+ msgstr "Lựa chọn SEO nâng cao"
2134
+
2135
+ #: inc/admin/admin.php:3090
2136
+ msgid "<p>Customize SEOPress to fit your needs.</p>"
2137
+ msgstr "<p>Tùy chỉnh SEOPress để phù hợp với nhu cầu của bạn</p>"
2138
+
2139
+ #: inc/admin/admin.php:3095
2140
+ msgid "<p>Manage security.</p>"
2141
+ msgstr "<p>Quản lý bảo mật</p>"
2142
+
2143
+ #: inc/admin/admin.php:3106
2144
+ msgid "My awesome website"
2145
+ msgstr "Trang web tuyệt vời của tôi"
2146
+
2147
+ #: inc/admin/admin.php:3111 inc/admin/admin.php:3122 inc/admin/admin.php:3165
2148
+ #: inc/admin/admin.php:3284 inc/admin/admin.php:3317 inc/admin/admin.php:3397
2149
+ #: inc/admin/admin.php:3473 inc/admin/admin.php:3543 inc/admin/admin.php:3612
2150
+ #: inc/admin/admin.php:3662
2151
+ msgid "More tags"
2152
+ msgstr "Nhiều thẻ hơn"
2153
+
2154
+ #: inc/admin/admin.php:3117
2155
+ msgid "This is a cool website about Wookiees"
2156
+ msgstr "Đây là một trang web mát mẻ về Wookiees"
2157
+
2158
+ #: inc/admin/admin.php:3125
2159
+ msgid "Looking for editing your blog page?"
2160
+ msgstr "Bạn đang tìm kiếm chỉnh sửa trang blog của bạn?"
2161
+
2162
+ #: inc/admin/admin.php:3139 inc/admin/admin.php:3255 inc/admin/admin.php:3374
2163
+ #: inc/admin/admin.php:3462 inc/admin/admin.php:3532 inc/admin/admin.php:3601
2164
+ #: inc/admin/admin.php:3653
2165
+ msgid "Title template"
2166
+ msgstr "Tiêu đề mẫu"
2167
+
2168
+ #: inc/admin/admin.php:3161
2169
+ msgid "Post Title"
2170
+ msgstr "Tiêu đề bài đăng"
2171
+
2172
+ #: inc/admin/admin.php:3172 inc/admin/admin.php:3293 inc/admin/admin.php:3404
2173
+ #: inc/admin/admin.php:3479 inc/admin/admin.php:3549 inc/admin/admin.php:3618
2174
+ #: inc/admin/admin.php:3668
2175
+ msgid "Meta description template"
2176
+ msgstr "Mẫu mô tả meta"
2177
+
2178
+ #: inc/admin/admin.php:3233
2179
+ msgid "Display date in Google search results?"
2180
+ msgstr "Hiển thị ngày trong kết quả tìm kiếm của Google?"
2181
+
2182
+ #: inc/admin/admin.php:3275
2183
+ msgid "Category Title"
2184
+ msgstr "Tiêu đề Danh mục"
2185
+
2186
+ #: inc/admin/admin.php:3277
2187
+ msgid "Tag Title"
2188
+ msgstr "Tiêu đề thẻ"
2189
+
2190
+ #: inc/admin/admin.php:3279
2191
+ msgid "Term Title"
2192
+ msgstr "Tiêu đề điều khoản"
2193
+
2194
+ #: inc/admin/admin.php:3310
2195
+ msgid "Category Description"
2196
+ msgstr "Mô tả danh mục"
2197
+
2198
+ #: inc/admin/admin.php:3312
2199
+ msgid "Tag Description"
2200
+ msgstr "Mô tả thẻ"
2201
+
2202
+ #: inc/admin/admin.php:3314
2203
+ msgid "Term Description"
2204
+ msgstr "Mô tả điều khoản"
2205
+
2206
+ #: inc/admin/admin.php:3393
2207
+ msgid "Post Type Archive Name"
2208
+ msgstr "Tên loại bài đăng lưu trữ"
2209
+
2210
+ #: inc/admin/admin.php:3460
2211
+ msgid "Author archives"
2212
+ msgstr "Lưu trữ tác giả"
2213
+
2214
+ #: inc/admin/admin.php:3521
2215
+ msgid "Disable author archives"
2216
+ msgstr "Vô hiệu hoá lưu trữ tác giả"
2217
+
2218
+ #: inc/admin/admin.php:3530
2219
+ msgid "Date archives"
2220
+ msgstr "Lưu trữ ngày tháng"
2221
+
2222
+ #: inc/admin/admin.php:3541
2223
+ msgid "Archive date"
2224
+ msgstr "Ngày lưu trữ"
2225
+
2226
+ #: inc/admin/admin.php:3590
2227
+ msgid "Disable date archives"
2228
+ msgstr "Vô hiệu hoá lưu trữ ngày tháng"
2229
+
2230
+ #: inc/admin/admin.php:3599
2231
+ msgid "Search archives"
2232
+ msgstr "Tìm lưu trữ"
2233
+
2234
+ #: inc/admin/admin.php:3610
2235
+ msgid "Search Keywords"
2236
+ msgstr "Tìm kiếm từ khóa"
2237
+
2238
+ #: inc/admin/admin.php:3651
2239
+ msgid "404 archives"
2240
+ msgstr "404 lưu trữ"
2241
+
2242
+ #: inc/admin/admin.php:3806
2243
+ msgid "Add rel next/prev link in head of paginated archive pages"
2244
+ msgstr ""
2245
+ "Thêm liên kết rel / prev liên kết vào đầu các trang lưu trữ được phân trang"
2246
+
2247
+ #: inc/admin/admin.php:3808
2248
+ msgid "Learn more on Google website"
2249
+ msgstr "Tìm hiểu thêm trên trang web của Google"
2250
+
2251
+ #: inc/admin/admin.php:3835
2252
+ msgid "Guide to enable XML Sitemaps - new window"
2253
+ msgstr "Hướng dẫn để sử dụng Sơ đồ trang web XML - mở trong cửa sổ mới"
2254
+
2255
+ #: inc/admin/admin.php:3852
2256
+ msgid "Enable Image Sitemaps"
2257
+ msgstr "Bật Sơ đồ trang web Hình ảnh"
2258
+
2259
+ #: inc/admin/admin.php:3862
2260
+ msgid "Guide to enable XML image sitemaps - new window"
2261
+ msgstr "Bật Sơ đồ trang web ảnh XML"
2262
+
2263
+ #: inc/admin/admin.php:3929 inc/admin/admin.php:3969
2264
+ msgid "Include"
2265
+ msgstr "Bao gồm"
2266
+
2267
+ #: inc/admin/admin.php:3984
2268
+ msgid "eg: 2, 28, 68"
2269
+ msgstr "ví dụ: 2, 28, 68"
2270
+
2271
+ #: inc/admin/admin.php:3988
2272
+ msgid "You can also use this shortcode:"
2273
+ msgstr "Bạn cũng có thể sử dụng mã shorcode này:"
2274
+
2275
+ #: inc/admin/admin.php:3998
2276
+ msgid "eg: 13, 8, 38"
2277
+ msgstr "ví dụ: 13, 8, 38"
2278
+
2279
+ #: inc/admin/admin.php:4013
2280
+ msgid "Disable date after each post, page, post type?"
2281
+ msgstr "Vô hiệu hoá ngày sau mỗi bài đăng, trang, loại bài đăng?"
2282
+
2283
+ #: inc/admin/admin.php:4029
2284
+ msgid "Person"
2285
+ msgstr "Cá nhân"
2286
+
2287
+ #: inc/admin/admin.php:4032
2288
+ msgid "Organization"
2289
+ msgstr "Cơ quan"
2290
+
2291
+ #: inc/admin/admin.php:4045
2292
+ msgid "eg: Apple"
2293
+ msgstr "ví dụ: Apple"
2294
+
2295
+ #: inc/admin/admin.php:4058
2296
+ msgid "Select your logo"
2297
+ msgstr "Chọn biểu trưng của bạn"
2298
+
2299
+ #: inc/admin/admin.php:4086
2300
+ msgid "eg: +33123456789 (internationalized version required)"
2301
+ msgstr "ví dụ: +33123456789 (yêu cầu phiên bản quốc tế)"
2302
+
2303
+ #: inc/admin/admin.php:4101
2304
+ msgid "Customer support"
2305
+ msgstr "Hỗ trợ khách hàng"
2306
+
2307
+ #: inc/admin/admin.php:4104
2308
+ msgid "Technical support"
2309
+ msgstr "Hỗ trợ kỹ thuật"
2310
+
2311
+ #: inc/admin/admin.php:4107
2312
+ msgid "Billing support"
2313
+ msgstr "Hỗ trợ thanh toán"
2314
+
2315
+ #: inc/admin/admin.php:4110
2316
+ msgid "Bill payment"
2317
+ msgstr "Thanh toán hóa đơn"
2318
+
2319
+ #: inc/admin/admin.php:4113
2320
+ msgid "Sales"
2321
+ msgstr "Giảm giá"
2322
+
2323
+ #: inc/admin/admin.php:4116
2324
+ msgid "Credit card support"
2325
+ msgstr "Hỗ trợ thẻ tín dụng"
2326
+
2327
+ #: inc/admin/admin.php:4119
2328
+ msgid "Emergency"
2329
+ msgstr "Trường hợp khẩn cấp"
2330
+
2331
+ #: inc/admin/admin.php:4122
2332
+ msgid "Baggage tracking"
2333
+ msgstr "Theo dõi hành lý"
2334
+
2335
+ #: inc/admin/admin.php:4125
2336
+ msgid "Roadside assistance"
2337
+ msgstr "Hỗ trợ lề"
2338
+
2339
+ #: inc/admin/admin.php:4128
2340
+ msgid "Package tracking"
2341
+ msgstr "Gói đang theo dõi"
2342
+
2343
+ #: inc/admin/admin.php:4145
2344
+ msgid "Toll Free"
2345
+ msgstr "Miễn phí hoàn toàn"
2346
+
2347
+ #: inc/admin/admin.php:4148
2348
+ msgid "Hearing impaired supported"
2349
+ msgstr "Hỗ trợ thính giác"
2350
+
2351
+ #: inc/admin/admin.php:4161
2352
+ msgid "eg: https://www.facebook.com/your-page"
2353
+ msgstr "ví dụ: https://www.facebook.com/your-page"
2354
+
2355
+ #: inc/admin/admin.php:4174
2356
+ msgid "eg: @wp_seopress"
2357
+ msgstr "ví dụ: @wp_seopress"
2358
+
2359
+ #: inc/admin/admin.php:4174
2360
+ msgid "Twitter Page URL"
2361
+ msgstr "Tên tài khoản Twitter"
2362
+
2363
+ #: inc/admin/admin.php:4186
2364
+ msgid "eg: https://plus.google.com/+BenjaminDenis"
2365
+ msgstr "ví dụ: https://plus.google.com/+BenjaminDenis"
2366
+
2367
+ #: inc/admin/admin.php:4198
2368
+ msgid "eg: https://pinterest.com/wpbuy/"
2369
+ msgstr "ví dụ: https://pinterest.com/wpbuy/"
2370
+
2371
+ #: inc/admin/admin.php:4210
2372
+ msgid "eg: https://www.instagram.com/wp_seopress/"
2373
+ msgstr "ví dụ: https://www.instagram.com/wp_seopress/"
2374
+
2375
+ #: inc/admin/admin.php:4222
2376
+ msgid "eg: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
2377
+ msgstr "ví dụ: https://www.youtube.com/channel/UCpQzarWu55UzCIH7-OW6pwA"
2378
+
2379
+ #: inc/admin/admin.php:4234
2380
+ msgid "eg: https://www.linkedin.com/in/benjamin-denis-70672b3b"
2381
+ msgstr "ví dụ: https://www.linkedin.com/in/benjamin-denis-70672b3b"
2382
+
2383
+ #: inc/admin/admin.php:4246
2384
+ msgid "eg: https://myspace.com/your-page"
2385
+ msgstr "ví dụ: https://myspace.com/your-page"
2386
+
2387
+ #: inc/admin/admin.php:4258
2388
+ msgid "eg: https://soundcloud.com/michaelmccannmusic"
2389
+ msgstr "ví dụ: https://soundcloud.com/michaelmccannmusic"
2390
+
2391
+ #: inc/admin/admin.php:4270
2392
+ msgid "eg: https://your-site.tumblr.com"
2393
+ msgstr "ví dụ: https://your-site.tumblr.com"
2394
+
2395
+ #: inc/admin/admin.php:4287
2396
+ msgid "Enable OG data"
2397
+ msgstr "Bật dữ liệu OG"
2398
+
2399
+ #: inc/admin/admin.php:4345
2400
+ msgid "How-to create a Facebook App ID"
2401
+ msgstr "Cách tạo một ID ứng dụng Facebook"
2402
+
2403
+ #: inc/admin/admin.php:4359
2404
+ msgid "Enable Twitter card"
2405
+ msgstr "Bật Twitter card"
2406
+
2407
+ #: inc/admin/admin.php:4376
2408
+ msgid "Use OG if no Twitter Cards"
2409
+ msgstr "Sử dụng OG nếu không có Twitter Cards"
2410
+
2411
+ #: inc/admin/admin.php:4409
2412
+ msgid "Default"
2413
+ msgstr "Mặc định"
2414
+
2415
+ #: inc/admin/admin.php:4412
2416
+ msgid "Large"
2417
+ msgstr "Rộng"
2418
+
2419
+ #: inc/admin/admin.php:4430
2420
+ msgid "Enable Google Analytics tracking (Global Site Tag: gtag.js)"
2421
+ msgstr "Bật theo dõi Google Analytics"
2422
+
2423
+ #: inc/admin/admin.php:4440
2424
+ msgid "Enter your Tracking ID (UA-XXXX-XX)"
2425
+ msgstr "Nhập ID theo dõi của bạn"
2426
+
2427
+ #: inc/admin/admin.php:4444
2428
+ msgid "Find your tracking ID"
2429
+ msgstr "Tìm ID theo dõi của bạn"
2430
+
2431
+ #: inc/admin/admin.php:4485
2432
+ msgid ""
2433
+ "A remarketing audience is a list of cookies or mobile-advertising IDs that "
2434
+ "represents a group of users you want to re-engage because of their "
2435
+ "likelihood to convert."
2436
+ msgstr ""
2437
+ "Một đối tượng tiếp thị lại là danh sách các cookie hoặc ID quảng cáo di động "
2438
+ "đại diện cho một nhóm người dùng bạn muốn tái tham gia vì khả năng của họ để "
2439
+ "chuyển đổi."
2440
+
2441
+ #: inc/admin/admin.php:4506
2442
+ msgid ""
2443
+ "When a customer of Analytics requests IP address anonymization, Analytics "
2444
+ "anonymizes the address as soon as technically feasible at the earliest "
2445
+ "possible stage of the collection network."
2446
+ msgstr ""
2447
+ "Khi một khách hàng Analytics yêu cầu ẩn danh địa chỉ IP, Analytics sẽ ẩn "
2448
+ "danh địa chỉ ngay khi khả thi về mặt kỹ thuật ở giai đoạn sớm nhất có thể "
2449
+ "của mạng thu thập."
2450
+
2451
+ #: inc/admin/admin.php:4527
2452
+ msgid ""
2453
+ "Enhanced Link Attribution improves the accuracy of your In-Page Analytics "
2454
+ "report by automatically differentiating between multiple links to the same "
2455
+ "URL on a single page by using link element IDs."
2456
+ msgstr ""
2457
+ "Thuộc tính liên kết nâng cao cải thiện độ chính xác của Analytics trong "
2458
+ "trang của bạn bằng cách tự động phân biệt giữa nhiều liên kết đến cùng một "
2459
+ "URL trên một trang duy nhất bằng cách sử dụng ID phần tử liên kết."
2460
+
2461
+ #: inc/admin/admin.php:4548
2462
+ msgid ""
2463
+ "Cross domain tracking makes it possible for Analytics to see sessions on two "
2464
+ "related sites (such as an ecommerce site and a separate shopping cart site) "
2465
+ "as a single session. This is sometimes called site linking."
2466
+ msgstr ""
2467
+ "Theo dõi tên miền chéo giúp Analytics có thể xem các phiên trên hai trang "
2468
+ "web có liên quan (chẳng hạn như trang web thương mại điện tử và một trang "
2469
+ "giỏ hàng riêng) dưới dạng một phiên. Điều này đôi khi được gọi là liên kết "
2470
+ "trang web."
2471
+
2472
+ #: inc/admin/admin.php:4560
2473
+ msgid "Enter yours domains (eg: https://www.seopress.org/)"
2474
+ msgstr "Nhập tên miền của bạn (ví dụ: https://www.seopress.org/)"
2475
+
2476
+ #: inc/admin/admin.php:4577
2477
+ msgid "Enable external links tracking"
2478
+ msgstr "Bật tính năng theo dõi liên kết bên ngoài"
2479
+
2480
+ #: inc/admin/admin.php:4594
2481
+ msgid "Enable download tracking"
2482
+ msgstr "Bật tính năng theo dõi tải xuống"
2483
+
2484
+ #: inc/admin/admin.php:4606
2485
+ msgid "pdf|docx|pptx|zip"
2486
+ msgstr "pdf|docx|pptx|zip"
2487
+
2488
+ #: inc/admin/admin.php:4610
2489
+ msgid "Separate each file type extensions with a pipe \"|\""
2490
+ msgstr "Tách từng đuôi tệp tin bằng một kí tự \"|\""
2491
+
2492
+ #: inc/admin/admin.php:4625
2493
+ msgid "Enable affiliate / outbound tracking"
2494
+ msgstr "Bật theo dõi liên kết tiếp thị / liên kết trỏ ra ngoài"
2495
+
2496
+ #: inc/admin/admin.php:4637
2497
+ msgid "aff|go|out"
2498
+ msgstr "aff|go|out"
2499
+
2500
+ #: inc/admin/admin.php:4641
2501
+ msgid "Separate each keyword with a pipe \"|\""
2502
+ msgstr "Tách từng từ khóa bằng một kí tự \"|\""
2503
+
2504
+ #: inc/admin/admin.php:4658 inc/admin/admin.php:4735 inc/admin/admin.php:4812
2505
+ #: inc/admin/admin.php:4889 inc/admin/admin.php:4966
2506
+ msgid "Custom Dimension #1"
2507
+ msgstr "Thứ nguyên tùy chỉnh #1"
2508
+
2509
+ #: inc/admin/admin.php:4661 inc/admin/admin.php:4738 inc/admin/admin.php:4815
2510
+ #: inc/admin/admin.php:4892 inc/admin/admin.php:4969
2511
+ msgid "Custom Dimension #2"
2512
+ msgstr "Thứ nguyên tùy chỉnh #2"
2513
+
2514
+ #: inc/admin/admin.php:4664 inc/admin/admin.php:4741 inc/admin/admin.php:4818
2515
+ #: inc/admin/admin.php:4895 inc/admin/admin.php:4972
2516
+ msgid "Custom Dimension #3"
2517
+ msgstr "Thứ nguyên tùy chỉnh #3"
2518
+
2519
+ #: inc/admin/admin.php:4667 inc/admin/admin.php:4744 inc/admin/admin.php:4821
2520
+ #: inc/admin/admin.php:4898 inc/admin/admin.php:4975
2521
+ msgid "Custom Dimension #4"
2522
+ msgstr "Thứ nguyên tùy chỉnh #4"
2523
+
2524
+ #: inc/admin/admin.php:4670 inc/admin/admin.php:4747 inc/admin/admin.php:4824
2525
+ #: inc/admin/admin.php:4901 inc/admin/admin.php:4978
2526
+ msgid "Custom Dimension #5"
2527
+ msgstr "Thứ nguyên tùy chỉnh #5"
2528
+
2529
+ #: inc/admin/admin.php:4673 inc/admin/admin.php:4750 inc/admin/admin.php:4827
2530
+ #: inc/admin/admin.php:4904 inc/admin/admin.php:4981
2531
+ msgid "Custom Dimension #6"
2532
+ msgstr "Thứ nguyên tùy chỉnh #6"
2533
+
2534
+ #: inc/admin/admin.php:4676 inc/admin/admin.php:4753 inc/admin/admin.php:4830
2535
+ #: inc/admin/admin.php:4907 inc/admin/admin.php:4984
2536
+ msgid "Custom Dimension #7"
2537
+ msgstr "Thứ nguyên tùy chỉnh #7"
2538
+
2539
+ #: inc/admin/admin.php:4679 inc/admin/admin.php:4756 inc/admin/admin.php:4833
2540
+ #: inc/admin/admin.php:4910 inc/admin/admin.php:4987
2541
+ msgid "Custom Dimension #8"
2542
+ msgstr "Thứ nguyên tùy chỉnh #8"
2543
+
2544
+ #: inc/admin/admin.php:4682 inc/admin/admin.php:4759 inc/admin/admin.php:4836
2545
+ #: inc/admin/admin.php:4913 inc/admin/admin.php:4990
2546
+ msgid "Custom Dimension #9"
2547
+ msgstr "Thứ nguyên tùy chỉnh #9"
2548
+
2549
+ #: inc/admin/admin.php:4685 inc/admin/admin.php:4762 inc/admin/admin.php:4839
2550
+ #: inc/admin/admin.php:4916 inc/admin/admin.php:4993
2551
+ msgid "Custom Dimension #10"
2552
+ msgstr "Thứ nguyên tùy chỉnh #10"
2553
+
2554
+ #: inc/admin/admin.php:4688 inc/admin/admin.php:4765 inc/admin/admin.php:4842
2555
+ #: inc/admin/admin.php:4919 inc/admin/admin.php:4996
2556
+ msgid "Custom Dimension #11"
2557
+ msgstr "Thứ nguyên tùy chỉnh #11"
2558
+
2559
+ #: inc/admin/admin.php:4691 inc/admin/admin.php:4768 inc/admin/admin.php:4845
2560
+ #: inc/admin/admin.php:4922 inc/admin/admin.php:4999
2561
+ msgid "Custom Dimension #12"
2562
+ msgstr "Thứ nguyên tùy chỉnh #12"
2563
+
2564
+ #: inc/admin/admin.php:4694 inc/admin/admin.php:4771 inc/admin/admin.php:4848
2565
+ #: inc/admin/admin.php:4925 inc/admin/admin.php:5002
2566
+ msgid "Custom Dimension #13"
2567
+ msgstr "Thứ nguyên tùy chỉnh #13"
2568
+
2569
+ #: inc/admin/admin.php:4697 inc/admin/admin.php:4774 inc/admin/admin.php:4851
2570
+ #: inc/admin/admin.php:4928 inc/admin/admin.php:5005
2571
+ msgid "Custom Dimension #14"
2572
+ msgstr "Thứ nguyên tùy chỉnh #14"
2573
+
2574
+ #: inc/admin/admin.php:4700 inc/admin/admin.php:4777 inc/admin/admin.php:4854
2575
+ #: inc/admin/admin.php:4931 inc/admin/admin.php:5008
2576
+ msgid "Custom Dimension #15"
2577
+ msgstr "Thứ nguyên tùy chỉnh #15"
2578
+
2579
+ #: inc/admin/admin.php:4703 inc/admin/admin.php:4780 inc/admin/admin.php:4857
2580
+ #: inc/admin/admin.php:4934 inc/admin/admin.php:5011
2581
+ msgid "Custom Dimension #16"
2582
+ msgstr "Thứ nguyên tùy chỉnh #16"
2583
+
2584
+ #: inc/admin/admin.php:4706 inc/admin/admin.php:4783 inc/admin/admin.php:4860
2585
+ #: inc/admin/admin.php:4937 inc/admin/admin.php:5014
2586
+ msgid "Custom Dimension #17"
2587
+ msgstr "Thứ nguyên tùy chỉnh #17"
2588
+
2589
+ #: inc/admin/admin.php:4709 inc/admin/admin.php:4786 inc/admin/admin.php:4863
2590
+ #: inc/admin/admin.php:4940 inc/admin/admin.php:5017
2591
+ msgid "Custom Dimension #18"
2592
+ msgstr "Thứ nguyên tùy chỉnh #18"
2593
+
2594
+ #: inc/admin/admin.php:4712 inc/admin/admin.php:4789 inc/admin/admin.php:4866
2595
+ #: inc/admin/admin.php:4943 inc/admin/admin.php:5020
2596
+ msgid "Custom Dimension #19"
2597
+ msgstr "Thứ nguyên tùy chỉnh #19"
2598
+
2599
+ #: inc/admin/admin.php:4715 inc/admin/admin.php:4792 inc/admin/admin.php:4869
2600
+ #: inc/admin/admin.php:4946 inc/admin/admin.php:5023
2601
+ msgid "Custom Dimension #20"
2602
+ msgstr "Thứ nguyên tùy chỉnh #20"
2603
+
2604
+ #: inc/admin/admin.php:5041
2605
+ msgid "Redirect attachment pages to post parent (or homepage if none)"
2606
+ msgstr ""
2607
+ "Chuyển hướng trang đính kèm sang bài đăng cha (hoặc trang chủ nếu không có)"
2608
+
2609
+ #: inc/admin/admin.php:5058
2610
+ msgid "Add TINYMCE editor to term description"
2611
+ msgstr "Mô tả về Twitter"
2612
+
2613
+ #: inc/admin/admin.php:5075
2614
+ msgid "Remove stop words in permalinks"
2615
+ msgstr "Loại bỏ từ dừng trong các đường dẫn tĩnh"
2616
+
2617
+ #: inc/admin/admin.php:5075
2618
+ msgid ""
2619
+ "Setting based on site language. Supported language EN, FR, ES, DE, IT, PT."
2620
+ msgstr ""
2621
+ "Thiết lập dựa trên ngôn ngữ trang web. Ngôn ngữ được hỗ trợ EN, FR, ES, DE, "
2622
+ "IT, PT, VI."
2623
+
2624
+ #: inc/admin/admin.php:5092
2625
+ msgid "Remove /category/ in your permalinks"
2626
+ msgstr "Loại bỏ /danh-muc/ trong đường dẫn tĩnh của bạn"
2627
+
2628
+ #: inc/admin/admin.php:5092
2629
+ msgid "You have to flush your permalinks each time you change this settings"
2630
+ msgstr "Bạn phải flush các đường dẫn tĩnh mỗi khi thay đổi cài đặt này"
2631
+
2632
+ #: inc/admin/admin.php:5109
2633
+ msgid ""
2634
+ "You must check this box if the structure of your permalinks DOES NOT contain "
2635
+ "a slash at the end (eg: /%postname%)"
2636
+ msgstr ""
2637
+ "Bạn phải chọn mục này nếu cấu trúc đường dẫn tĩnh KHÔNG chứa dấu gạch chéo ở "
2638
+ "cuối (ví dụ: /%postname%)"
2639
+
2640
+ #: inc/admin/admin.php:5126
2641
+ msgid "Remove WordPress meta generator in source code"
2642
+ msgstr "Loại bỏ thẻ meta tự tạo Wordpress trong mã nguồn"
2643
+
2644
+ #: inc/admin/admin.php:5143
2645
+ msgid "Remove WordPress shortlink meta tag in source code (eg:"
2646
+ msgstr "Xóa thẻ meta ngắnWordPress trong mã nguồn (ví dụ:"
2647
+
2648
+ #: inc/admin/admin.php:5160
2649
+ msgid "Remove Windows Live Writer meta tag in source code (eg:"
2650
+ msgstr "Loại bỏ thẻ meta của Windows Live Writer trong mã nguồn (ví dụ:"
2651
+
2652
+ #: inc/admin/admin.php:5177
2653
+ msgid "Remove Really Simple Discovery meta tag in source code (eg:"
2654
+ msgstr "Loại bỏ tReally Simple Discovery trong mã nguồn (ví dụ:"
2655
+
2656
+ #: inc/admin/admin.php:5189
2657
+ msgid "Enter Google meta value site verification"
2658
+ msgstr "Xác minh trang web của Google"
2659
+
2660
+ #: inc/admin/admin.php:5201
2661
+ msgid "Enter Bing meta value site verification"
2662
+ msgstr "Xác minh trang web Pinterest"
2663
+
2664
+ #: inc/admin/admin.php:5213
2665
+ msgid "Enter Pinterest meta value site verification"
2666
+ msgstr "Xác minh trang web Pinterest"
2667
+
2668
+ #: inc/admin/admin.php:5225
2669
+ msgid "Enter Yandex meta value site verification"
2670
+ msgstr "Xác minh trang web Yandex"
2671
+
2672
+ #: inc/admin/admin.php:5242
2673
+ msgid "Remove SEOPress from Admin Bar in backend and frontend"
2674
+ msgstr "Xóa SEOPress khỏi Thanh quản trị bên trên ở backend and frontend"
2675
+
2676
+ #: inc/admin/admin.php:5258
2677
+ msgid "High priority (top)"
2678
+ msgstr "Ưu tiên cao (top)"
2679
+
2680
+ #: inc/admin/admin.php:5261
2681
+ msgid "Normal priority (default)"
2682
+ msgstr "Ưu tiên thông thường (mặc định)"
2683
+
2684
+ #: inc/admin/admin.php:5264
2685
+ msgid "Low priority"
2686
+ msgstr "Ưu tiên thấp"
2687
+
2688
+ #: inc/admin/admin.php:5282
2689
+ msgid "Hide Notifications Center in SEOPress Dashboard page"
2690
+ msgstr "Ẩn trung tâm thông báo trong trang bảng điều khiển SEOPress"
2691
+
2692
+ #: inc/admin/admin.php:5299
2693
+ msgid "Add title column"
2694
+ msgstr "Thêm tiêu đề cột"
2695
+
2696
+ #: inc/admin/admin.php:5316
2697
+ msgid "Add meta description column"
2698
+ msgstr "Thêm cột mô tả meta"
2699
+
2700
+ #: inc/admin/admin.php:5333
2701
+ msgid "Add redirection enable column"
2702
+ msgstr "Thêm cột mô tả meta"
2703
+
2704
+ #: inc/admin/admin.php:5350
2705
+ msgid "Add redirection URL column"
2706
+ msgstr "Thêm cột mô tả meta"
2707
+
2708
+ #: inc/admin/admin.php:5367
2709
+ msgid "Add canonical URL column"
2710
+ msgstr "Thêm tiêu đề cột"
2711
+
2712
+ #: inc/admin/admin.php:5384
2713
+ msgid "Add target keyword column"
2714
+ msgstr "Thêm tiêu đề cột"
2715
+
2716
+ #: inc/admin/admin.php:5401
2717
+ msgid "Display noindex status"
2718
+ msgstr "Hiển thị trạng thái noindex"
2719
+
2720
+ #: inc/admin/admin.php:5418
2721
+ msgid "Display nofollow status"
2722
+ msgstr "Hiển thị trạng thái nofollow"
2723
+
2724
+ #: inc/admin/admin.php:5435
2725
+ msgid "Display total number of words in content"
2726
+ msgstr "Hiển thị tổng số từ trong nội dung"
2727
+
2728
+ #: inc/admin/admin.php:5452
2729
+ msgid "Display W3C column to check code quality"
2730
+ msgstr "Hiển thị cột W3C để kiểm tra chất lượng mã"
2731
+
2732
+ #: inc/admin/admin.php:5470
2733
+ msgid "Display Page Speed column to check performances"
2734
+ msgstr "Cột Hiển thị Tốc độ trang để kiểm tra hiệu suất"
2735
+
2736
+ #: inc/admin/admin.php:5488
2737
+ msgid "Remove Genesis SEO Metaboxe"
2738
+ msgstr "Loại bỏ Genesis SEO Metaboxe"
2739
+
2740
+ #: inc/admin/adminbar.php:60
2741
+ msgid "BOT"
2742
+ msgstr "BOT"
2743
+
2744
+ #: inc/admin/adminbar.php:84
2745
+ msgid "Broken Links"
2746
+ msgstr "Đường dẫn hỏng"
2747
+
2748
+ #: inc/functions/options-advanced-admin.php:144
2749
+ #: inc/functions/options-advanced-admin.php:750
2750
+ msgid "Title tag"
2751
+ msgstr "Thẻ tiêu đề"
2752
+
2753
+ #: inc/functions/options-advanced-admin.php:147
2754
+ msgid "Meta Desc."
2755
+ msgstr "Meta Desc."
2756
+
2757
+ #: inc/functions/options-advanced-admin.php:150
2758
+ msgid "Redirect?"
2759
+ msgstr "Chuyển hướng?"
2760
+
2761
+ #: inc/functions/options-advanced-admin.php:153
2762
+ msgid "Redirect URL"
2763
+ msgstr "Chuyển hướng"
2764
+
2765
+ #: inc/functions/options-advanced-admin.php:156
2766
+ #: inc/functions/options-advanced-admin.php:766
2767
+ msgid "Canonical"
2768
+ msgstr "Canonical URL"
2769
+
2770
+ #: inc/functions/options-advanced-admin.php:159
2771
+ msgid "Target Kw"
2772
+ msgstr "Từ khóa mục tiêu"
2773
+
2774
+ #: inc/functions/options-advanced-admin.php:162
2775
+ msgid "Noindex?"
2776
+ msgstr "Noindex?"
2777
+
2778
+ #: inc/functions/options-advanced-admin.php:165
2779
+ msgid "Nofollow?"
2780
+ msgstr "Nofollow?"
2781
+
2782
+ #: inc/functions/options-advanced-admin.php:168
2783
+ msgid "Count words?"
2784
+ msgstr "Đếm từ?"
2785
+
2786
+ #: inc/functions/options-advanced-admin.php:171
2787
+ msgid "W3C check"
2788
+ msgstr "Kiểm tra W3C"
2789
+
2790
+ #: inc/functions/options-advanced-admin.php:174
2791
+ msgid "Page Speed"
2792
+ msgstr "Tốc độ trang"
2793
+
2794
+ #: inc/functions/options-advanced-admin.php:225
2795
+ msgid "Check code quality of this page"
2796
+ msgstr "Kiểm tra chất lượng mã của trang này"
2797
+
2798
+ #: inc/functions/options-advanced-admin.php:229
2799
+ msgid "Analyse this page with Google Page Speed"
2800
+ msgstr "Phân tích trang này với Google Page Speed"
2801
+
2802
+ #: inc/functions/options-advanced-admin.php:453
2803
+ msgid "Enable noindex"
2804
+ msgstr "Bật noindex"
2805
+
2806
+ #: inc/functions/options-advanced-admin.php:506
2807
+ msgid "Enable index"
2808
+ msgstr "Bật chỉ mục"
2809
+
2810
+ #: inc/functions/options-advanced-admin.php:559
2811
+ msgid "Enable nofollow"
2812
+ msgstr "Bật nofollow"
2813
+
2814
+ #: inc/functions/options-advanced-admin.php:611
2815
+ msgid "Enable follow"
2816
+ msgstr "Bật follow"
2817
+
2818
+ #: inc/functions/options-advanced-admin.php:658
2819
+ msgid "Enable redirection"
2820
+ msgstr "Bật chuyển hướng"
2821
+
2822
+ #: inc/functions/options-advanced-admin.php:697
2823
+ msgid "Disable redirection"
2824
+ msgstr "Bật chuyển hướng"
2825
+
2826
+ #: inc/functions/options-advanced-admin.php:853
2827
+ msgid "Description"
2828
+ msgstr "Mô tả thẻ"
2829
+
2830
+ #: inc/functions/options-advanced-admin.php:862
2831
+ msgid ""
2832
+ "The description is not prominent by default; however, some themes may show "
2833
+ "it."
2834
+ msgstr ""
2835
+ "Mô tả không được làm nổi bật theo mặc định; tuy nhiên, một số chủ đề có thể "
2836
+ "hiển thị nó."
2837
+
2838
+ #: inc/functions/options-google-analytics.php:247
2839
+ msgid "Authors"
2840
+ msgstr "Theo dõi tác giả"
2841
+
2842
+ #: inc/functions/options-google-analytics.php:266
2843
+ msgid "Categories"
2844
+ msgstr "Danh mục theo dõi"
2845
+
2846
+ #: inc/functions/options-google-analytics.php:292
2847
+ msgid "Tags"
2848
+ msgstr "Các thẻ"
2849
+
2850
+ #: inc/functions/options-google-analytics.php:306
2851
+ msgid "Post types"
2852
+ msgstr "Các loại bài đăng"
2853
+
2854
+ #: inc/functions/options-google-analytics.php:320
2855
+ msgid "Connected users"
2856
+ msgstr "Người dùng đã được kết nối"
2857
+
2858
+ #: inc/functions/options-import-export.php:51
2859
+ msgid "Please upload a valid .json file"
2860
+ msgstr "Vui lòng tải lên một tệp .json hợp lệ"
2861
+
2862
+ #: inc/functions/options-import-export.php:55
2863
+ #: inc/functions/options-import-export.php:92
2864
+ msgid "Please upload a file to import"
2865
+ msgstr "Vui lòng tải lên một tệp để nhập vào"
2866
+
2867
+ #: inc/functions/options-import-export.php:88
2868
+ msgid "Please upload a valid .csv file"
2869
+ msgstr "Vui lòng tải lên một tệp .csv hợp lệ"
2870
+
2871
+ #: inc/functions/options-redirections.php:120
2872
+ msgid "Once per day"
2873
+ msgstr "Một lần mỗi ngày"
2874
+
2875
+ #: inc/functions/sitemap/template-xml-sitemaps-xsl.php:113
2876
+ msgid "XML Sitemaps"
2877
+ msgstr "XML Sitemaps"
2878
+
2879
+ #: seopress.php:262
2880
+ msgid "You like SEOPress? Don't forget to rate it 5 stars!"
2881
+ msgstr "Bạn thích SEOPress? Đừng quên để lại đánh giá 5 sao! :)"
2882
+
2883
+ #: seopress.php:309
2884
+ msgid "Settings"
2885
+ msgstr "Cài đặt"
2886
+
2887
+ #: seopress.php:310
2888
+ msgid "SEOPress.org"
2889
+ msgstr "SEOPress.org"
2890
+
2891
+ #: seopress.php:312
2892
+ msgid "GO PRO!"
2893
+ msgstr "NÂNG CẤP PRO!"
2894
+
2895
+ #: seopress.php:584
2896
+ msgid ""
2897
+ "The PRO release of SEOPress with Google Local Business, Dublin Core, "
2898
+ "WooCommerce, Google Structured Data Types, Breadcrumbs, Google Page Speed, "
2899
+ "robots.txt, Google News, 404 monitoring, .htaccess, RSS, Broken links, "
2900
+ "Redirections and more..."
2901
+ msgstr ""
2902
+ "Bản phát hành PRO của SEOPress với Google Local Business, Dublin Core, "
2903
+ "WooCommerce, Google Structured Data Types, Breadcrumbs, Google Page Speed, "
2904
+ "robots.txt, Google News, 404 monitoring, .htaccess, RSS, Link vỡ, Chuyển "
2905
+ "hướng và nhiều nữa..."
2906
+
2907
+ #: seopress.php:603
2908
+ msgid "Buy now"
2909
+ msgstr "Mua ngay"
2910
+
2911
+ #: seopress.php:604
2912
+ msgid "More details"
2913
+ msgstr "Chi tiết hơn"
languages/wp-seopress.mo CHANGED
Binary file
languages/wp-seopress.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
- "POT-Creation-Date: 2018-04-05 19:43+0200\n"
6
- "PO-Revision-Date: 2018-04-05 19:44+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
2
  msgstr ""
3
  "Project-Id-Version: SEOPress\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-cloudy\n"
5
+ "POT-Creation-Date: 2018-04-14 10:55+0200\n"
6
+ "PO-Revision-Date: 2018-04-14 10:55+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Benjamin DENIS <contact@seopress.org>\n"
9
  "Language: en\n"
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: seo, search engine optimization, meta title, open graph, content analysis,
6
  Requires at least: 4.4+
7
  Tested up to: 4.9
8
  Requires PHP: 5.4
9
- Stable tag: 2.7.1
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -93,6 +93,7 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
93
  <li>Tamil</li>
94
  <li>Brazilian Portguese</li>
95
  <li>Dutch</li>
 
96
  <li>German (in progress)</li>
97
  <li>Japanese (in progress)</li>
98
  <li><a href="https://www.seopress.org/contact-us/">Add yours and get SEOPress PRO for free!</a></li>
@@ -154,6 +155,30 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
154
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
155
 
156
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  = 2.7.1 =
158
  * NEW Add seopress_titles_title hook to filter title tag
159
  * NEW Add seopress_titles_desc hook to filter meta description
@@ -393,7 +418,7 @@ Subscribe on <a href="https://www.seopress.org/" target="_blank">seopress.org</a
393
  * FIX Undefined offset in admin.php
394
  * FIX Whois if subdomain
395
  = 2.0.3 =
396
- * NEW Add indonesian language (thanks to Tomtom)
397
  * FIX Title/meta desc/OG, DC and Twitter metas for blog page
398
  * FIX OG/Twitter metas for term archive
399
  * FIX Esc quotes
6
  Requires at least: 4.4+
7
  Tested up to: 4.9
8
  Requires PHP: 5.4
9
+ Stable tag: 2.7.2
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
93
  <li>Tamil</li>
94
  <li>Brazilian Portguese</li>
95
  <li>Dutch</li>
96
+ <li>Vietnamese</li>
97
  <li>German (in progress)</li>
98
  <li>Japanese (in progress)</li>
99
  <li><a href="https://www.seopress.org/contact-us/">Add yours and get SEOPress PRO for free!</a></li>
155
  44. Structured Data Types metaboxe in post, page, custom post type (PRO)
156
 
157
  == Changelog ==
158
+ = 2.7.2 =
159
+ * NEW Add Vietnamese language (thanks to Anh)
160
+ * NEW Add seopress_titles_canonical hook to filter canonical URL tag
161
+ * NEW Add seopress_social_og_title hook to filter OG title tag
162
+ * NEW Add seopress_social_og_desc hook to filter OG description tag
163
+ * NEW Add seopress_social_og_thumb hook to filter OG thumbnail tag
164
+ * NEW Add seopress_social_og_url hook to filter OG URL tag
165
+ * NEW Add seopress_social_og_site_name hook to filter OG site name tag
166
+ * NEW Add seopress_social_og_locale hook to filter OG locale tag
167
+ * NEW Add seopress_social_twitter_card_title hook to filter Twitter card title tag
168
+ * NEW Add seopress_social_twitter_card_desc hook to filter Twitter card description tag
169
+ * NEW Add seopress_social_twitter_card_thumb hook to filter Twitter card thumbnail tag
170
+ * NEW Add seopress_social_twitter_card_summary hook to filter Twitter card summary tag
171
+ * NEW Add seopress_social_twitter_card_site hook to filter Twitter card site tag
172
+ * NEW Add seopress_social_twitter_card_creator hook to filter Twitter card creator tag
173
+ * NEW Add seopress_dublin_core_title hook to filter Dublic Core title tag
174
+ * NEW Add seopress_dublin_core_desc hook to filter Dublic Core description tag
175
+ * NEW Add seopress_dublin_core_relation hook to filter Dublic Core relation tag
176
+ * NEW Add seopress_dublin_core_source hook to filter Dublic Core source tag
177
+ * INFO Remove canonical URL if noindex set
178
+ * FIX Notice: Undefined variable: seopress_titles_title_template
179
+ * FIX Notice: Undefined variable: seopress_titles_description_template
180
+ * FIX Improve breadcrumbs compatibility with WooCommerce
181
+ * FIX Dutch translation
182
  = 2.7.1 =
183
  * NEW Add seopress_titles_title hook to filter title tag
184
  * NEW Add seopress_titles_desc hook to filter meta description
418
  * FIX Undefined offset in admin.php
419
  * FIX Whois if subdomain
420
  = 2.0.3 =
421
+ * NEW Add Indonesian language (thanks to Tomtom)
422
  * FIX Title/meta desc/OG, DC and Twitter metas for blog page
423
  * FIX OG/Twitter metas for term archive
424
  * FIX Esc quotes
seopress.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best SEO plugin.
6
- Version: 2.7.1
7
  Author: Benjamin DENIS
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
@@ -55,7 +55,7 @@ register_deactivation_hook(__FILE__, 'seopress_deactivation');
55
  //Define
56
  ///////////////////////////////////////////////////////////////////////////////////////////////////
57
 
58
- define( 'SEOPRESS_VERSION', '2.7.1' );
59
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
60
 
61
  ///////////////////////////////////////////////////////////////////////////////////////////////////
3
  Plugin Name: SEOPress
4
  Plugin URI: https://www.seopress.org/
5
  Description: The best SEO plugin.
6
+ Version: 2.7.2
7
  Author: Benjamin DENIS
8
  Author URI: https://www.seopress.org/
9
  License: GPLv2
55
  //Define
56
  ///////////////////////////////////////////////////////////////////////////////////////////////////
57
 
58
+ define( 'SEOPRESS_VERSION', '2.7.2' );
59
  define( 'SEOPRESS_AUTHOR', 'Benjamin Denis' );
60
 
61
  ///////////////////////////////////////////////////////////////////////////////////////////////////