Advanced Ads - Version 1.10.6

Version Description

  • fixed HTML issue with paragraph index when saving the placement page
Download this release

Release Info

Developer webzunft
Plugin Icon 128x128 Advanced Ads
Version 1.10.6
Comparing to
See all releases

Code changes from version 1.10.5 to 1.10.6

admin/views/placement-injection-top.php CHANGED
@@ -31,11 +31,9 @@ if ( isset( $_GET['message'] ) && 6 === $_GET['message'] ) : ?>
31
  endif;
32
  ?>
33
  <p><?php esc_attr_e( 'Click on the button below to add the Auto ads code to the header of your site.', 'advanced-ads' ); ?></p>
34
- <div class="advads-ad-injection-box-button-wrap"><button type="button" class="advads-ad-injection-button button-primary" data-placement-type="header" style="background-image: url(
35
- <?php
36
  echo ADVADS_BASE_URL . 'admin/assets/img/placements/header.png';
37
- ?>
38
- )">
39
  <?php
40
  /**
41
  * translators: this is a label in a button when a user uses an AdSense Auto ads code in a plain code field
31
  endif;
32
  ?>
33
  <p><?php esc_attr_e( 'Click on the button below to add the Auto ads code to the header of your site.', 'advanced-ads' ); ?></p>
34
+ <div class="advads-ad-injection-box-button-wrap"><button type="button" class="advads-ad-injection-button button-primary" data-placement-type="header" style="background-image: url(<?php
 
35
  echo ADVADS_BASE_URL . 'admin/assets/img/placements/header.png';
36
+ ?>)">
 
37
  <?php
38
  /**
39
  * translators: this is a label in a button when a user uses an AdSense Auto ads code in a plain code field
admin/views/placements-content-index.php CHANGED
@@ -4,36 +4,27 @@
4
  ); ?>
5
  <select name="advads[placements][<?php echo $_placement_slug; ?>][options][position]">
6
  <?php foreach ( $_positions as $_pos_key => $_pos ) : ?>
7
- <option value="<?php echo $_pos_key; ?>"
8
- <?php
9
- if ( isset( $_placement['options']['position'] ) ) {
10
- selected( $_placement['options']['position'], $_pos_key ); }
11
- ?>
12
- ><?php echo $_pos; ?></option>
13
  <?php endforeach; ?>
14
  </select>
15
 
16
- <input type="number" name="advads[placements][<?php echo $_placement_slug; ?>][options][index]" value="
17
- <?php
18
- echo ( isset( $_placement['options']['index'] ) ) ? max( 1, (int) $_placement['options']['index'] ) : 1;
19
- ?>
20
- " min="1"/>.
21
 
22
  <?php $tags = Advanced_Ads_Placements::tags_for_content_injection(); ?>
23
  <select name="advads[placements][<?php echo $_placement_slug; ?>][options][tag]">
24
  <?php foreach ( $tags as $_tag_key => $_tag ) : ?>
25
- <option value="<?php echo $_tag_key; ?>"
26
- <?php
27
- if ( isset( $_placement['options']['tag'] ) ) {
28
- selected( $_placement['options']['tag'], $_tag_key ); }
29
- ?>
30
- ><?php echo $_tag; ?></option>
31
  <?php endforeach; ?>
32
  </select>
33
 
34
- <p><label><input type="checkbox" name="advads[placements][<?php echo $_placement_slug; ?>][options][start_from_bottom]" value="1"
35
- <?php
36
- if ( isset( $_placement['options']['start_from_bottom'] ) ) {
37
- checked( $_placement['options']['start_from_bottom'], 1 ); }
38
- ?>
39
- /><?php _e( 'start counting from bottom', 'advanced-ads' ); ?></label></p>
4
  ); ?>
5
  <select name="advads[placements][<?php echo $_placement_slug; ?>][options][position]">
6
  <?php foreach ( $_positions as $_pos_key => $_pos ) : ?>
7
+ <option value="<?php echo $_pos_key; ?>" <?php
8
+ if ( isset( $_placement['options']['position'] ) ) {
9
+ selected( $_placement['options']['position'], $_pos_key ); }
10
+ ?>><?php echo $_pos; ?></option>
 
 
11
  <?php endforeach; ?>
12
  </select>
13
 
14
+ <input type="number" name="advads[placements][<?php echo $_placement_slug; ?>][options][index]" value="<?php
15
+ echo ( isset( $_placement['options']['index'] ) ) ? max( 1, (int) $_placement['options']['index'] ) : 1;
16
+ ?>" min="1"/>.
 
 
17
 
18
  <?php $tags = Advanced_Ads_Placements::tags_for_content_injection(); ?>
19
  <select name="advads[placements][<?php echo $_placement_slug; ?>][options][tag]">
20
  <?php foreach ( $tags as $_tag_key => $_tag ) : ?>
21
+ <option value="<?php echo $_tag_key; ?>" <?php
22
+ if ( isset( $_placement['options']['tag'] ) ) {
23
+ selected( $_placement['options']['tag'], $_tag_key ); }
24
+ ?>><?php echo $_tag; ?></option>
 
 
25
  <?php endforeach; ?>
26
  </select>
27
 
28
+ <p><label><input type="checkbox" name="advads[placements][<?php echo $_placement_slug; ?>][options][start_from_bottom]" value="1" <?php
29
+ if ( isset( $_placement['options']['start_from_bottom'] ) ) { checked( $_placement['options']['start_from_bottom'], 1 ); }
30
+ ?>/><?php _e( 'start counting from bottom', 'advanced-ads' ); ?></label></p>
 
 
 
advanced-ads.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
- * Version: 1.10.5
16
  * Author: Thomas Maier
17
  * Author URI: https://wpadvancedads.com
18
  * Text Domain: advanced-ads
@@ -39,7 +39,7 @@ define( 'ADVADS_BASE_DIR', dirname( ADVADS_BASE ) ); // directory of the plugin
39
  // general and global slug, e.g. to store options in WP
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
- define( 'ADVADS_VERSION', '1.10.5' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
12
  * Plugin Name: Advanced Ads
13
  * Plugin URI: https://wpadvancedads.com
14
  * Description: Manage and optimize your ads in WordPress
15
+ * Version: 1.10.6
16
  * Author: Thomas Maier
17
  * Author URI: https://wpadvancedads.com
18
  * Text Domain: advanced-ads
39
  // general and global slug, e.g. to store options in WP
40
  define( 'ADVADS_SLUG', 'advanced-ads' );
41
  define( 'ADVADS_URL', 'https://wpadvancedads.com/' );
42
+ define( 'ADVADS_VERSION', '1.10.6' );
43
 
44
  /*----------------------------------------------------------------------------*
45
  * Autoloading, modules and functions
languages/advanced-ads.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Advanved Ads\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
- "POT-Creation-Date: 2018-09-26 09:27+0000\n"
7
  "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
@@ -23,37 +23,37 @@ msgstr ""
23
  "X-Poedit-Basepath: ../\n"
24
  "X-Poedit-SearchPath-0: ."
25
 
26
- #: admin/class-advanced-ads-admin.php:224 classes/display-conditions.php:215
27
- #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:134
28
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:74
29
  msgid "or"
30
  msgstr ""
31
 
32
- #: admin/class-advanced-ads-admin.php:225 classes/display-conditions.php:215
33
- #: classes/visitor-conditions.php:241 admin/views/ad-visitor-metabox.php:120
34
  msgid "and"
35
  msgstr ""
36
 
37
- #: admin/class-advanced-ads-admin.php:226
38
  msgid "After which paragraph?"
39
  msgstr ""
40
 
41
- #: admin/class-advanced-ads-admin.php:338
42
  #, php-format
43
  msgid "time of %s"
44
  msgstr ""
45
 
46
- #: admin/class-advanced-ads-admin.php:379 admin/includes/class-menu.php:107
47
- #: admin/includes/class-menu.php:110 admin/views/settings.php:26
48
  msgid "Support"
49
  msgstr ""
50
 
51
- #: admin/class-advanced-ads-admin.php:383
52
  #: admin/includes/class-overview-widgets.php:33
53
  msgid "Add-Ons"
54
  msgstr ""
55
 
56
- #: admin/class-advanced-ads-admin.php:637
57
  #: admin/includes/class-overview-widgets.php:135
58
  #, php-format
59
  msgid ""
@@ -94,7 +94,7 @@ msgid "main query"
94
  msgstr ""
95
 
96
  #: classes/ad-debug.php:118 classes/ad-debug.php:167 classes/ad-debug.php:169
97
- #: public/class-advanced-ads.php:692 admin/views/ad-group-list-ads.php:2
98
  msgid "Ad"
99
  msgstr ""
100
 
@@ -146,7 +146,7 @@ msgstr ""
146
  msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
147
  msgstr ""
148
 
149
- #: classes/ad_placements.php:47 admin/views/placement-injection-top.php:36
150
  msgid "Before Content"
151
  msgstr ""
152
 
@@ -154,7 +154,7 @@ msgstr ""
154
  msgid "Injected before the post content."
155
  msgstr ""
156
 
157
- #: classes/ad_placements.php:53 admin/views/placement-injection-top.php:38
158
  msgid "After Content"
159
  msgstr ""
160
 
@@ -162,7 +162,7 @@ msgstr ""
162
  msgid "Injected after the post content."
163
  msgstr ""
164
 
165
- #: classes/ad_placements.php:59 admin/views/placement-injection-top.php:37
166
  msgid "Content"
167
  msgstr ""
168
 
@@ -238,7 +238,7 @@ msgstr ""
238
  msgid "URL"
239
  msgstr ""
240
 
241
- #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:3
242
  msgid "Ad Group"
243
  msgstr ""
244
 
@@ -584,33 +584,38 @@ msgstr ""
584
  msgid "IDs: %s"
585
  msgstr ""
586
 
587
- #: classes/frontend_checks.php:280
 
 
 
 
 
588
  msgid "Consent not given"
589
  msgstr ""
590
 
591
- #: classes/frontend_checks.php:292
592
  msgid "debug DFP ads"
593
  msgstr ""
594
 
595
- #: classes/frontend_checks.php:303
596
  msgid "highlight ads"
597
  msgstr ""
598
 
599
- #: classes/frontend_checks.php:319
600
  msgid "Ad Health"
601
  msgstr ""
602
 
603
- #: classes/frontend_checks.php:334
604
  msgid "Everything is fine"
605
  msgstr ""
606
 
607
- #: classes/frontend_checks.php:380
608
  msgid ""
609
  "the following code is used for automatic error detection and only visible to "
610
  "admins"
611
  msgstr ""
612
 
613
- #: classes/frontend_checks.php:507
614
  #, php-format
615
  msgid ""
616
  "This ad was automatically placed here by AdSense. <a href=\"%s\" "
@@ -679,14 +684,14 @@ msgid "--empty--"
679
  msgstr ""
680
 
681
  #: classes/widget.php:79 admin/includes/class-menu.php:89
682
- #: admin/includes/class-shortcode-creator.php:98 admin/views/placements.php:18
683
  #: modules/gutenberg/includes/class-gutenberg.php:81
684
  #: modules/import-export/views/page.php:25
685
  msgid "Placements"
686
  msgstr ""
687
 
688
  #: classes/widget.php:86 admin/includes/class-shortcode-creator.php:91
689
- #: admin/views/placements-item.php:4 admin/views/placements.php:193
690
  #: modules/gutenberg/includes/class-gutenberg.php:80
691
  msgid "Ad Groups"
692
  msgstr ""
@@ -694,9 +699,9 @@ msgstr ""
694
  #: classes/widget.php:93 public/class-advanced-ads.php:691
695
  #: admin/includes/class-menu.php:62 admin/includes/class-menu.php:62
696
  #: admin/includes/class-shortcode-creator.php:84
697
- #: admin/views/ad-group-list-form-row.php:68
698
- #: admin/views/ad-group-list-header.php:5 admin/views/placements-item.php:11
699
- #: admin/views/placements.php:200
700
  #: modules/gutenberg/includes/class-gutenberg.php:79
701
  #: modules/import-export/views/page.php:23
702
  msgid "Ads"
@@ -783,7 +788,7 @@ msgid "No Ad Group found"
783
  msgstr ""
784
 
785
  #: public/class-advanced-ads.php:693 public/class-advanced-ads.php:697
786
- #: admin/includes/class-menu.php:79 admin/views/ad-group-list-ads.php:17
787
  msgid "New Ad"
788
  msgstr ""
789
 
@@ -1011,7 +1016,7 @@ msgstr ""
1011
  msgid "Error while trying to register the license. Please contact support."
1012
  msgstr ""
1013
 
1014
- #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:49
1015
  msgid "Please enter a valid license key"
1016
  msgstr ""
1017
 
@@ -1134,7 +1139,7 @@ msgstr ""
1134
 
1135
  #: admin/includes/class-meta-box.php:140 admin/includes/class-meta-box.php:151
1136
  #: admin/includes/class-meta-box.php:156 admin/includes/class-settings.php:519
1137
- #: admin/views/ad-output-metabox.php:51
1138
  #: modules/privacy/admin/views/setting-enable.php:2
1139
  msgid "Manual"
1140
  msgstr ""
@@ -1397,7 +1402,7 @@ msgid "Get full access"
1397
  msgstr ""
1398
 
1399
  #: admin/includes/class-overview-widgets.php:444
1400
- #: admin/views/ad-display-metabox.php:31 admin/views/ad-visitor-metabox.php:39
1401
  msgid "Visit the manual"
1402
  msgstr ""
1403
 
@@ -1693,82 +1698,82 @@ msgctxt "shortcode creator"
1693
  msgid "Cancel"
1694
  msgstr ""
1695
 
1696
- #: admin/views/ad-conditions-string-operators.php:2
1697
  #: modules/privacy/admin/views/setting-consent-method.php:10
1698
  msgid "contains"
1699
  msgstr ""
1700
 
1701
- #: admin/views/ad-conditions-string-operators.php:3
1702
  msgid "starts with"
1703
  msgstr ""
1704
 
1705
- #: admin/views/ad-conditions-string-operators.php:4
1706
  msgid "ends with"
1707
  msgstr ""
1708
 
1709
- #: admin/views/ad-conditions-string-operators.php:5
1710
  msgid "matches"
1711
  msgstr ""
1712
 
1713
- #: admin/views/ad-conditions-string-operators.php:6
1714
  msgid "matches regex"
1715
  msgstr ""
1716
 
1717
- #: admin/views/ad-conditions-string-operators.php:7
1718
  msgid "does not contain"
1719
  msgstr ""
1720
 
1721
- #: admin/views/ad-conditions-string-operators.php:8
1722
  msgid "does not start with"
1723
  msgstr ""
1724
 
1725
- #: admin/views/ad-conditions-string-operators.php:9
1726
  msgid "does not end with"
1727
  msgstr ""
1728
 
1729
- #: admin/views/ad-conditions-string-operators.php:10
1730
  msgid "does not match"
1731
  msgstr ""
1732
 
1733
- #: admin/views/ad-conditions-string-operators.php:11
1734
  msgid "does not match regex"
1735
  msgstr ""
1736
 
1737
- #: admin/views/ad-display-metabox.php:7
1738
  msgid "parent page"
1739
  msgstr ""
1740
 
1741
- #: admin/views/ad-display-metabox.php:8
1742
  msgid "post meta"
1743
  msgstr ""
1744
 
1745
- #: admin/views/ad-display-metabox.php:9
1746
  msgid "page template"
1747
  msgstr ""
1748
 
1749
- #: admin/views/ad-display-metabox.php:10
1750
  msgid "url parameters"
1751
  msgstr ""
1752
 
1753
- #: admin/views/ad-display-metabox.php:13
1754
  msgid "accelerated mobile pages"
1755
  msgstr ""
1756
 
1757
- #: admin/views/ad-display-metabox.php:21
1758
  msgid ""
1759
  "Click on the button below if the ad should NOT show up on all pages when "
1760
  "included automatically."
1761
  msgstr ""
1762
 
1763
- #: admin/views/ad-display-metabox.php:22
1764
  msgid "Hide the ad on some pages"
1765
  msgstr ""
1766
 
1767
- #: admin/views/ad-display-metabox.php:29
1768
  msgid "Watch video"
1769
  msgstr ""
1770
 
1771
- #: admin/views/ad-display-metabox.php:34
1772
  #: admin/views/notices/jqueryui_error.php:2
1773
  #, php-format
1774
  msgid ""
@@ -1776,153 +1781,156 @@ msgid ""
1776
  "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1777
  msgstr ""
1778
 
1779
- #: admin/views/ad-display-metabox.php:35
1780
  msgid "A page with this ad on it must match all of the following conditions."
1781
  msgstr ""
1782
 
1783
- #: admin/views/ad-display-metabox.php:71
1784
  msgid "Forced to OR."
1785
  msgstr ""
1786
 
1787
- #: admin/views/ad-display-metabox.php:72
1788
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:119
1789
  msgid "manual"
1790
  msgstr ""
1791
 
1792
- #: admin/views/ad-display-metabox.php:88
1793
  msgid "If you want to display the ad everywhere, don't do anything here. "
1794
  msgstr ""
1795
 
1796
- #: admin/views/ad-display-metabox.php:92 admin/views/ad-visitor-metabox.php:76
 
1797
  msgid "New condition"
1798
  msgstr ""
1799
 
1800
- #: admin/views/ad-display-metabox.php:95 admin/views/ad-visitor-metabox.php:79
 
1801
  msgid "-- choose a condition --"
1802
  msgstr ""
1803
 
1804
- #: admin/views/ad-display-metabox.php:100 admin/views/ad-visitor-metabox.php:86
 
1805
  msgid "Add-On features"
1806
  msgstr ""
1807
 
1808
- #: admin/views/ad-display-metabox.php:107 admin/views/ad-group-list-ads.php:24
1809
- #: admin/views/ad-visitor-metabox.php:93
1810
  msgid "add"
1811
  msgstr ""
1812
 
1813
- #: admin/views/ad-group-edit.php:14
1814
  msgid "You did not select an item for editing."
1815
  msgstr ""
1816
 
1817
- #: admin/views/ad-group-edit.php:33
1818
  msgctxt "Taxonomy Name"
1819
  msgid "Name"
1820
  msgstr ""
1821
 
1822
- #: admin/views/ad-group-edit.php:38
1823
  msgctxt "Taxonomy Slug"
1824
  msgid "Slug"
1825
  msgstr ""
1826
 
1827
- #: admin/views/ad-group-edit.php:40
1828
  msgid ""
1829
  "An id-like string with only letters in lower case, numbers, and hyphens."
1830
  msgstr ""
1831
 
1832
- #: admin/views/ad-group-edit.php:45
1833
  msgctxt "Taxonomy Description"
1834
  msgid "Description"
1835
  msgstr ""
1836
 
1837
- #: admin/views/ad-group-edit.php:57
1838
  msgid "Create new Ad Group"
1839
  msgstr ""
1840
 
1841
- #: admin/views/ad-group-edit.php:59
1842
  msgid "Update"
1843
  msgstr ""
1844
 
1845
- #: admin/views/ad-group-list-ads.php:3
1846
  msgid "weight"
1847
  msgstr ""
1848
 
1849
- #: admin/views/ad-group-list-form-row.php:12 admin/views/placements.php:24
1850
  #: modules/gadsense/admin/views/mapi-ad-selector.php:29
1851
  #: modules/gadsense/admin/views/mapi-ad-selector.php:41
1852
  #: modules/privacy/admin/views/setting-consent-method.php:9
1853
  msgid "Name"
1854
  msgstr ""
1855
 
1856
- #: admin/views/ad-group-list-form-row.php:41 admin/views/placements.php:23
1857
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:108
1858
  msgid "Type"
1859
  msgstr ""
1860
 
1861
- #: admin/views/ad-group-list-form-row.php:51
1862
  msgctxt "option to display all ads in an ad groups"
1863
  msgid "all"
1864
  msgstr ""
1865
 
1866
- #: admin/views/ad-group-list-form-row.php:57
1867
  msgid "Visible ads"
1868
  msgstr ""
1869
 
1870
- #: admin/views/ad-group-list-form-row.php:59
1871
  msgid "Number of ads that are visible at the same time"
1872
  msgstr ""
1873
 
1874
- #: admin/views/ad-group-list-header.php:4
1875
  msgid "Details"
1876
  msgstr ""
1877
 
1878
- #: admin/views/ad-group-list-row.php:8 admin/views/ad-info.php:3
1879
- #: admin/views/placements.php:66
1880
  msgid "shortcode"
1881
  msgstr ""
1882
 
1883
- #: admin/views/ad-group-list-row.php:11
1884
  msgid "template"
1885
  msgstr ""
1886
 
1887
- #: admin/views/ad-group-list-row.php:14
1888
  #, php-format
1889
  msgid ""
1890
  "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1891
  "manual</a>."
1892
  msgstr ""
1893
 
1894
- #: admin/views/ad-group-list-row.php:19
1895
  #, php-format
1896
  msgid "Type: %s"
1897
  msgstr ""
1898
 
1899
- #: admin/views/ad-group-list-row.php:20
1900
  #, php-format
1901
  msgid "ID: %s"
1902
  msgstr ""
1903
 
1904
- #: admin/views/ad-group.php:18
1905
  msgid "Ad Group successfully created"
1906
  msgstr ""
1907
 
1908
- #: admin/views/ad-group.php:29
1909
  msgid "Ad Groups successfully updated"
1910
  msgstr ""
1911
 
1912
- #: admin/views/ad-group.php:59
1913
  #, php-format
1914
  msgid "Search results for &#8220;%s&#8221;"
1915
  msgstr ""
1916
 
1917
- #: admin/views/ad-group.php:65
1918
  msgid "Group title"
1919
  msgstr ""
1920
 
1921
- #: admin/views/ad-group.php:66
1922
  msgid "save"
1923
  msgstr ""
1924
 
1925
- #: admin/views/ad-group.php:68
1926
  msgid ""
1927
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
1928
  "display random ads in the frontend or run split tests, but also just for "
@@ -1930,44 +1938,44 @@ msgid ""
1930
  "ad can belong to multiple ad groups."
1931
  msgstr ""
1932
 
1933
- #: admin/views/ad-group.php:69
1934
  #, php-format
1935
  msgid ""
1936
  "Find more information about ad groups in the <a href=\"%s\" "
1937
  "target=\"_blank\">manual</a>."
1938
  msgstr ""
1939
 
1940
- #: admin/views/ad-group.php:96
1941
  msgid "Update Groups"
1942
  msgstr ""
1943
 
1944
- #: admin/views/ad-info-after-textarea.php:5
1945
  msgid ""
1946
  "The code of this ad might not work properly with the <em>Content</em> "
1947
  "placement."
1948
  msgstr ""
1949
 
1950
- #: admin/views/ad-info-after-textarea.php:6
1951
  #, php-format
1952
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1953
  msgstr ""
1954
 
1955
- #: admin/views/ad-info-bottom.php:2
1956
  msgctxt "wizard navigation"
1957
  msgid "previous"
1958
  msgstr ""
1959
 
1960
- #: admin/views/ad-info-bottom.php:5 admin/views/ad-info-bottom.php:6
1961
  msgctxt "wizard navigation"
1962
  msgid "next"
1963
  msgstr ""
1964
 
1965
- #: admin/views/ad-info-bottom.php:5
1966
  msgctxt "wizard navigation"
1967
  msgid "save"
1968
  msgstr ""
1969
 
1970
- #: admin/views/ad-info-bottom.php:7 admin/views/ad-info-top.php:19
1971
  msgid "Stop Wizard and show all options"
1972
  msgstr ""
1973
 
@@ -1998,11 +2006,11 @@ msgstr ""
1998
  msgid "click to change"
1999
  msgstr ""
2000
 
2001
- #: admin/views/ad-info.php:15
2002
  msgid "Add a description"
2003
  msgstr ""
2004
 
2005
- #: admin/views/ad-info.php:18
2006
  msgid "Internal description or your own notes about this ad."
2007
  msgstr ""
2008
 
@@ -2039,85 +2047,85 @@ msgstr ""
2039
  msgid "Position"
2040
  msgstr ""
2041
 
2042
- #: admin/views/ad-output-metabox.php:6
2043
  msgid "- default -"
2044
  msgstr ""
2045
 
2046
- #: admin/views/ad-output-metabox.php:7
2047
  #: admin/views/placements-ad-label-position.php:2
2048
- #: admin/views/placements-ad-label-position.php:4
2049
- #: admin/views/placements-ad-label.php:1 admin/views/placements-ad-label.php:3
2050
- #: admin/views/placements.php:53
2051
  msgid "default"
2052
  msgstr ""
2053
 
2054
- #: admin/views/ad-output-metabox.php:8
2055
- #: admin/views/placements-ad-label-position.php:6
2056
- #: admin/views/placements-ad-label-position.php:8
2057
  msgid "left"
2058
  msgstr ""
2059
 
2060
- #: admin/views/ad-output-metabox.php:11
2061
- #: admin/views/placements-ad-label-position.php:9
2062
- #: admin/views/placements-ad-label-position.php:11
2063
  msgid "center"
2064
  msgstr ""
2065
 
2066
- #: admin/views/ad-output-metabox.php:14
2067
- #: admin/views/placements-ad-label-position.php:12
2068
- #: admin/views/placements-ad-label-position.php:14
2069
  msgid "right"
2070
  msgstr ""
2071
 
2072
- #: admin/views/ad-output-metabox.php:18
2073
  msgid ""
2074
  "Check this if you don't want the following elements to float around the ad. "
2075
  "(adds a clearfix)"
2076
  msgstr ""
2077
 
2078
- #: admin/views/ad-output-metabox.php:22
2079
  msgid "Margin"
2080
  msgstr ""
2081
 
2082
- #: admin/views/ad-output-metabox.php:24
2083
  msgid "top:"
2084
  msgstr ""
2085
 
2086
- #: admin/views/ad-output-metabox.php:26
2087
  msgid "right:"
2088
  msgstr ""
2089
 
2090
- #: admin/views/ad-output-metabox.php:28
2091
  msgid "bottom:"
2092
  msgstr ""
2093
 
2094
- #: admin/views/ad-output-metabox.php:30
2095
  msgid "left:"
2096
  msgstr ""
2097
 
2098
- #: admin/views/ad-output-metabox.php:32
2099
  msgid "tip: use this to add a margin around the ad"
2100
  msgstr ""
2101
 
2102
- #: admin/views/ad-output-metabox.php:35
2103
  msgid "container ID"
2104
  msgstr ""
2105
 
2106
- #: admin/views/ad-output-metabox.php:38
2107
  msgid "Specify the id of the ad container. Leave blank for random or no id."
2108
  msgstr ""
2109
 
2110
- #: admin/views/ad-output-metabox.php:41
2111
  msgid "container classes"
2112
  msgstr ""
2113
 
2114
- #: admin/views/ad-output-metabox.php:44
2115
  msgid ""
2116
  "Specify one or more classes for the container. Separate multiple classes "
2117
  "with a space"
2118
  msgstr ""
2119
 
2120
- #: admin/views/ad-output-metabox.php:47
2121
  msgid "Enable debug mode"
2122
  msgstr ""
2123
 
@@ -2133,7 +2141,7 @@ msgstr ""
2133
  msgid "height"
2134
  msgstr ""
2135
 
2136
- #: admin/views/ad-parameters-size.php:8
2137
  msgid "reserve this space"
2138
  msgstr ""
2139
 
@@ -2141,33 +2149,33 @@ msgstr ""
2141
  msgid "Set expiry date"
2142
  msgstr ""
2143
 
2144
- #: admin/views/ad-submitbox-meta.php:12
2145
  msgid "Month"
2146
  msgstr ""
2147
 
2148
- #: admin/views/ad-submitbox-meta.php:16
2149
  #, php-format
2150
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2151
  msgid "%1$s-%2$s"
2152
  msgstr ""
2153
 
2154
- #: admin/views/ad-submitbox-meta.php:21
2155
  msgid "Day"
2156
  msgstr ""
2157
 
2158
- #: admin/views/ad-submitbox-meta.php:22
2159
  msgid "Year"
2160
  msgstr ""
2161
 
2162
- #: admin/views/ad-submitbox-meta.php:23
2163
  msgid "Hour"
2164
  msgstr ""
2165
 
2166
- #: admin/views/ad-submitbox-meta.php:24
2167
  msgid "Minute"
2168
  msgstr ""
2169
 
2170
- #: admin/views/ad-submitbox-meta.php:29
2171
  #, php-format
2172
  msgctxt ""
2173
  "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
@@ -2227,52 +2235,52 @@ msgstr ""
2227
  msgid "Hide the ad from some users"
2228
  msgstr ""
2229
 
2230
- #: admin/views/ad-visitor-metabox.php:34
2231
  msgid ""
2232
  "Display conditions that are based on the user. Use with caution on cached "
2233
  "websites."
2234
  msgstr ""
2235
 
2236
- #: admin/views/ad-visitor-metabox.php:69
2237
  msgid ""
2238
  "Visitor conditions limit the number of users who can see your ad. There is "
2239
  "no need to set visitor conditions if you want all users to see the ad."
2240
  msgstr ""
2241
 
2242
- #: admin/views/ad-visitor-metabox.php:71
2243
  #: modules/privacy/admin/views/setting-enable.php:4
2244
  msgid "It seems that a caching plugin is activated."
2245
  msgstr ""
2246
 
2247
- #: admin/views/ad-visitor-metabox.php:72
2248
  #, php-format
2249
  msgid ""
2250
  "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2251
  "Pro</a> if dynamic features get cached."
2252
  msgstr ""
2253
 
2254
- #: admin/views/ad-visitor-metabox.php:98
2255
  #, php-format
2256
  msgid ""
2257
  "Define the exact browser width for which an ad should be visible using the "
2258
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2259
  msgstr ""
2260
 
2261
- #: admin/views/ad-visitor-metabox.php:145
2262
  msgid ""
2263
  "The visitor conditions below are deprecated. Please use the new version of "
2264
  "visitor conditions to replace it."
2265
  msgstr ""
2266
 
2267
- #: admin/views/ad-visitor-metabox.php:151
2268
  msgid "Display on all devices"
2269
  msgstr ""
2270
 
2271
- #: admin/views/ad-visitor-metabox.php:155
2272
  msgid "only on mobile devices"
2273
  msgstr ""
2274
 
2275
- #: admin/views/ad-visitor-metabox.php:159
2276
  msgid "not on mobile devices"
2277
  msgstr ""
2278
 
@@ -2340,55 +2348,71 @@ msgstr ""
2340
  msgid "Advanced Ads related constants enabled"
2341
  msgstr ""
2342
 
2343
- #: admin/views/feedback-disable.php:4
2344
  msgid "Why did you decide to disable Advanced Ads?"
2345
  msgstr ""
2346
 
2347
- #: admin/views/feedback-disable.php:6
2348
  msgid "I have a problem, a question or need help."
2349
  msgstr ""
2350
 
2351
- #: admin/views/feedback-disable.php:7
2352
  msgid "Please let us know how we can help"
2353
  msgstr ""
2354
 
2355
- #: admin/views/feedback-disable.php:12
2356
  #, php-format
2357
  msgid "Send me free help to %s"
2358
  msgstr ""
2359
 
2360
- #: admin/views/feedback-disable.php:14
2361
  msgid "It is only temporary"
2362
  msgstr ""
2363
 
2364
- #: admin/views/feedback-disable.php:15
2365
  msgid "I miss a feature"
2366
  msgstr ""
2367
 
2368
- #: admin/views/feedback-disable.php:16
2369
  msgid "Which one?"
2370
  msgstr ""
2371
 
2372
- #: admin/views/feedback-disable.php:17
2373
  msgid "I stopped using ads on my site."
2374
  msgstr ""
2375
 
2376
- #: admin/views/feedback-disable.php:18
2377
  msgid "I switched to another plugin"
2378
  msgstr ""
2379
 
2380
- #: admin/views/feedback-disable.php:23
2381
- msgid "Submit & Deactivate"
2382
  msgstr ""
2383
 
2384
- #: admin/views/feedback-disable.php:24
2385
- msgid "Keep it & get a reply within 12h"
2386
  msgstr ""
2387
 
2388
- #: admin/views/feedback-disable.php:26
2389
  msgid "Only Deactivate"
2390
  msgstr ""
2391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2392
  #: admin/views/pitch-bundle.php:1
2393
  msgid "All Access – with all available add-ons"
2394
  msgstr ""
@@ -2398,7 +2422,7 @@ msgid "Risk free with 30-day Money-Back guarantee"
2398
  msgstr ""
2399
 
2400
  #: admin/views/pitch-bundle.php:13
2401
- msgid "Get the Pro Bundle"
2402
  msgstr ""
2403
 
2404
  #: admin/views/pitch-pro-tab.php:2
@@ -2441,25 +2465,25 @@ msgstr ""
2441
  msgid "spread impressions or clicks equally over a given period"
2442
  msgstr ""
2443
 
2444
- #: admin/views/placement-injection-top.php:11
2445
  msgid "Congratulations! Your ad is now visible in the frontend."
2446
  msgstr ""
2447
 
2448
- #: admin/views/placement-injection-top.php:12
2449
  msgid "Adjust the placement options"
2450
  msgstr ""
2451
 
2452
- #: admin/views/placement-injection-top.php:13
2453
  #, php-format
2454
  msgid ""
2455
  "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
2456
  msgstr ""
2457
 
2458
- #: admin/views/placement-injection-top.php:16
2459
  msgid "Where do you want to display the ad?"
2460
  msgstr ""
2461
 
2462
- #: admin/views/placement-injection-top.php:20
2463
  #: modules/gadsense/admin/admin.php:418
2464
  #, php-format
2465
  msgid ""
@@ -2467,14 +2491,14 @@ msgid ""
2467
  "href=\"%s\">AdSense settings</a>."
2468
  msgstr ""
2469
 
2470
- #: admin/views/placement-injection-top.php:22
2471
  #: modules/gadsense/admin/admin.php:420
2472
  msgid ""
2473
  "No need to add the code manually here, unless you want to include it into "
2474
  "certain pages only."
2475
  msgstr ""
2476
 
2477
- #: admin/views/placement-injection-top.php:24
2478
  msgid ""
2479
  "Click on the button below to add the Auto ads code to the header of your "
2480
  "site."
@@ -2482,240 +2506,241 @@ msgstr ""
2482
 
2483
  #. this is a label in a button when a user uses an AdSense Auto ads code in a plain code field
2484
  #. the button has barely space for the original English text, so keep it short
2485
- #: admin/views/placement-injection-top.php:31
2486
  msgid "inject Auto ads"
2487
  msgstr ""
2488
 
2489
- #: admin/views/placement-injection-top.php:35
2490
  msgid "New placement"
2491
  msgstr ""
2492
 
2493
- #: admin/views/placement-injection-top.php:39
2494
  msgid "PHP or Shortcode"
2495
  msgstr ""
2496
 
2497
- #: admin/views/placement-injection-top.php:40
2498
  msgid "Manage Sidebar"
2499
  msgstr ""
2500
 
2501
- #: admin/views/placement-injection-top.php:41
2502
  msgid "Header (Manual)"
2503
  msgstr ""
2504
 
2505
- #: admin/views/placement-injection-top.php:44
2506
- #: admin/views/placement-injection-top.php:47
2507
  msgid "Custom Position"
2508
  msgstr ""
2509
 
2510
- #: admin/views/placement-injection-top.php:45
2511
  msgid "Show Pro Places"
2512
  msgstr ""
2513
 
2514
- #: admin/views/placement-injection-top.php:50
2515
  msgid "AdSense In-feed"
2516
  msgstr ""
2517
 
2518
- #: admin/views/placement-injection-top.php:54
2519
  msgid "Show Sticky Places"
2520
  msgstr ""
2521
 
2522
- #: admin/views/placement-injection-top.php:58
2523
  msgid "Show PopUp"
2524
  msgstr ""
2525
 
2526
- #: admin/views/placement-injection-top.php:60
2527
  msgid "PopUp & Layer"
2528
  msgstr ""
2529
 
2530
- #: admin/views/placement-injection-top.php:63
2531
  msgid "see all…"
2532
  msgstr ""
2533
 
2534
- #: admin/views/placement-injection-top.php:87
2535
  msgid "Existing placement"
2536
  msgstr ""
2537
 
2538
- #: admin/views/placement-injection-top.php:92
2539
  #, php-format
2540
  msgid "Or use the shortcode %s to insert the ad into the content manually."
2541
  msgstr ""
2542
 
2543
- #: admin/views/placement-injection-top.php:93
2544
  #, php-format
2545
  msgid ""
2546
  "Learn more about your choices to display an ad in the <a href=\"%s\" "
2547
  "target=\"_blank\">manual</a>."
2548
  msgstr ""
2549
 
2550
- #: admin/views/placements-ad-label-position.php:18
2551
  msgid ""
2552
  "Check this if you don't want the following elements to float around the ad. "
2553
  "(adds a placement_clearfix)"
2554
  msgstr ""
2555
 
2556
- #: admin/views/placements-ad-label.php:5 admin/views/placements-ad-label.php:7
2557
  msgid "enabled"
2558
  msgstr ""
2559
 
2560
- #: admin/views/placements-ad-label.php:9 admin/views/placements-ad-label.php:11
 
2561
  msgid "disabled"
2562
  msgstr ""
2563
 
2564
- #: admin/views/placements-content-index.php:1
2565
  msgid "after"
2566
  msgstr ""
2567
 
2568
- #: admin/views/placements-content-index.php:1
2569
  msgid "before"
2570
  msgstr ""
2571
 
2572
- #: admin/views/placements-content-index.php:21
2573
  msgid "start counting from bottom"
2574
  msgstr ""
2575
 
2576
- #: admin/views/placements-item.php:2 admin/views/placements.php:191
2577
  msgid "--not selected--"
2578
  msgstr ""
2579
 
2580
- #: admin/views/placements.php:8
2581
  msgid ""
2582
  "Couldn’t create the new placement. Please check your form field and whether "
2583
  "the name is already in use."
2584
  msgstr ""
2585
 
2586
- #: admin/views/placements.php:10
2587
  msgid "Placements updated"
2588
  msgstr ""
2589
 
2590
- #: admin/views/placements.php:14
2591
  msgid ""
2592
  "Placements are physically places in your theme and posts. You can use them "
2593
  "if you plan to change ads and ad groups on the same place without the need "
2594
  "to change your templates."
2595
  msgstr ""
2596
 
2597
- #: admin/views/placements.php:15
2598
  #, php-format
2599
  msgid ""
2600
  "See also the manual for more information on <a href=\"%s\">placements</a>."
2601
  msgstr ""
2602
 
2603
- #: admin/views/placements.php:25 modules/import-export/views/page.php:26
2604
  msgid "Options"
2605
  msgstr ""
2606
 
2607
- #: admin/views/placements.php:43
2608
  #, php-format
2609
  msgid ""
2610
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2611
  "check if the responsible add-on is activated."
2612
  msgstr ""
2613
 
2614
- #: admin/views/placements.php:59
2615
  msgid "show usage"
2616
  msgstr ""
2617
 
2618
- #: admin/views/placements.php:69
2619
  msgid "template (PHP)"
2620
  msgstr ""
2621
 
2622
- #: admin/views/placements.php:84
2623
  msgid "Item"
2624
  msgstr ""
2625
 
2626
- #: admin/views/placements.php:96
2627
  msgid "position"
2628
  msgstr ""
2629
 
2630
- #: admin/views/placements.php:100
2631
  msgid "Important Notice"
2632
  msgstr ""
2633
 
2634
- #: admin/views/placements.php:100
2635
  msgid ""
2636
  "Your server is missing an extension. This might break the content injection."
2637
  "<br/>Ignore this warning if everything works fine or else ask your hosting "
2638
  "provider to enable <em>mbstring</em>."
2639
  msgstr ""
2640
 
2641
- #: admin/views/placements.php:121
2642
  msgid "ad label"
2643
  msgstr ""
2644
 
2645
- #: admin/views/placements.php:129
2646
  msgid "show all options"
2647
  msgstr ""
2648
 
2649
- #: admin/views/placements.php:138
2650
  #, php-format
2651
  msgid ""
2652
  "Tutorial: <a href=\"%s\" target=\"_blank\">How to place visible ads in the "
2653
  "header of your website</a>."
2654
  msgstr ""
2655
 
2656
- #: admin/views/placements.php:145
2657
  msgctxt "checkbox to remove placement"
2658
  msgid "delete"
2659
  msgstr ""
2660
 
2661
- #: admin/views/placements.php:152
2662
  msgid "Save Placements"
2663
  msgstr ""
2664
 
2665
- #: admin/views/placements.php:154
2666
  msgid "Create a new placement"
2667
  msgstr ""
2668
 
2669
- #: admin/views/placements.php:155
2670
  msgid "New Placement"
2671
  msgstr ""
2672
 
2673
- #: admin/views/placements.php:164
2674
  msgid "Choose a placement type"
2675
  msgstr ""
2676
 
2677
- #: admin/views/placements.php:165
2678
  #, php-format
2679
  msgid ""
2680
  "Placement types define where the ad is going to be displayed. Learn more "
2681
  "about the different types from the <a href=\"%s\">manual</a>"
2682
  msgstr ""
2683
 
2684
- #: admin/views/placements.php:182
2685
  msgid "Please select a placement type."
2686
  msgstr ""
2687
 
2688
- #: admin/views/placements.php:184
2689
  msgid "Choose a Name"
2690
  msgstr ""
2691
 
2692
- #: admin/views/placements.php:185
2693
  msgid ""
2694
  "The name of the placement is only visible to you. Tip: choose a descriptive "
2695
  "one, e.g. <em>Below Post Headline</em>."
2696
  msgstr ""
2697
 
2698
- #: admin/views/placements.php:186
2699
  msgid "Placement Name"
2700
  msgstr ""
2701
 
2702
- #: admin/views/placements.php:187
2703
  msgid "Please enter a name for your placement."
2704
  msgstr ""
2705
 
2706
- #: admin/views/placements.php:188
2707
  msgid "Choose the Ad or Group"
2708
  msgstr ""
2709
 
2710
- #: admin/views/placements.php:189
2711
  msgid "The ad or group that should be displayed."
2712
  msgstr ""
2713
 
2714
- #: admin/views/placements.php:208
2715
  msgid "Save New Placement"
2716
  msgstr ""
2717
 
2718
- #: admin/views/post-ad-settings-metabox.php:3
2719
  msgid "Disable ads on this page"
2720
  msgstr ""
2721
 
@@ -2727,95 +2752,95 @@ msgstr ""
2727
  msgid "Update expiry date"
2728
  msgstr ""
2729
 
2730
- #: admin/views/setting-license.php:15
2731
  #, php-format
2732
  msgid ""
2733
  "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
2734
  "target=\"_blank\">renew your license</a>."
2735
  msgstr ""
2736
 
2737
- #: admin/views/setting-license.php:27
2738
  #, php-format
2739
  msgid "(%d days left)"
2740
  msgstr ""
2741
 
2742
- #: admin/views/setting-license.php:31
2743
  msgid "License key"
2744
  msgstr ""
2745
 
2746
- #: admin/views/setting-license.php:41
2747
  msgid "Deactivate License"
2748
  msgstr ""
2749
 
2750
- #: admin/views/setting-license.php:47
2751
  msgid "Update License"
2752
  msgstr ""
2753
 
2754
- #: admin/views/setting-license.php:47
2755
  msgid "Activate License"
2756
  msgstr ""
2757
 
2758
- #: admin/views/setting-license.php:51
2759
  msgid "License key invalid"
2760
  msgstr ""
2761
 
2762
- #: admin/views/setting-license.php:54
2763
  msgid "active"
2764
  msgstr ""
2765
 
2766
- #: admin/views/setting-target.php:3
2767
  msgid ""
2768
  "Open programatically created links in a new window (use <code>"
2769
  "target=\"_blank\"</code>)"
2770
  msgstr ""
2771
 
2772
- #: admin/views/settings-disable-ads.php:3
2773
  msgid "Disable all ads in frontend"
2774
  msgstr ""
2775
 
2776
- #: admin/views/settings-disable-ads.php:4
2777
  msgid ""
2778
  "Use this option to disable all ads in the frontend, but still be able to use "
2779
  "the plugin."
2780
  msgstr ""
2781
 
2782
- #: admin/views/settings-disable-ads.php:8
2783
  msgid "Disable ads on 404 error pages"
2784
  msgstr ""
2785
 
2786
- #: admin/views/settings-disable-ads.php:12
2787
  msgid "Disable ads on non-singular pages"
2788
  msgstr ""
2789
 
2790
- #: admin/views/settings-disable-ads.php:13
2791
  msgid ""
2792
  "e.g. archive pages like categories, tags, authors, front page (if a list)"
2793
  msgstr ""
2794
 
2795
- #: admin/views/settings-disable-ads.php:16
2796
  msgid "Disable ads on secondary queries"
2797
  msgstr ""
2798
 
2799
- #: admin/views/settings-disable-ads.php:17
2800
  msgid ""
2801
  "Secondary queries are custom queries of posts outside the main query of a "
2802
  "page. Try this option if you see ads injected on places where they shouldn’t "
2803
  "appear."
2804
  msgstr ""
2805
 
2806
- #: admin/views/settings-disable-ads.php:21
2807
  msgid "Disable ads in Feed"
2808
  msgstr ""
2809
 
2810
- #: admin/views/settings.php:12
2811
  msgid "General"
2812
  msgstr ""
2813
 
2814
- #: admin/views/settings.php:40
2815
  msgid "Save settings on this page"
2816
  msgstr ""
2817
 
2818
- #: admin/views/settings.php:47 modules/import-export/main.php:15
2819
  #: modules/import-export/main.php:15
2820
  msgid "Import &amp; Export"
2821
  msgstr ""
3
  msgstr ""
4
  "Project-Id-Version: Advanved Ads\n"
5
  "Report-Msgid-Bugs-To: http://wordpress.org/plugins/plugin-name\n"
6
+ "POT-Creation-Date: 2018-10-11 08:39+0000\n"
7
  "POT-Revision-Date: Wed Jul 13 2016 13:23:05 GMT+0200 (CEST)\n"
8
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
9
  "Last-Translator: Thomas Maier <post@webzunft.de>\n"
23
  "X-Poedit-Basepath: ../\n"
24
  "X-Poedit-SearchPath-0: ."
25
 
26
+ #: admin/class-advanced-ads-admin.php:220 classes/display-conditions.php:215
27
+ #: classes/visitor-conditions.php:241 admin/views/ad-display-metabox.php:189
28
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:74
29
  msgid "or"
30
  msgstr ""
31
 
32
+ #: admin/class-advanced-ads-admin.php:221 classes/display-conditions.php:215
33
+ #: classes/visitor-conditions.php:241 admin/views/ad-visitor-metabox.php:160
34
  msgid "and"
35
  msgstr ""
36
 
37
+ #: admin/class-advanced-ads-admin.php:222
38
  msgid "After which paragraph?"
39
  msgstr ""
40
 
41
+ #: admin/class-advanced-ads-admin.php:334
42
  #, php-format
43
  msgid "time of %s"
44
  msgstr ""
45
 
46
+ #: admin/class-advanced-ads-admin.php:375 admin/includes/class-menu.php:107
47
+ #: admin/includes/class-menu.php:110 admin/views/settings.php:28
48
  msgid "Support"
49
  msgstr ""
50
 
51
+ #: admin/class-advanced-ads-admin.php:379
52
  #: admin/includes/class-overview-widgets.php:33
53
  msgid "Add-Ons"
54
  msgstr ""
55
 
56
+ #: admin/class-advanced-ads-admin.php:635
57
  #: admin/includes/class-overview-widgets.php:135
58
  #, php-format
59
  msgid ""
94
  msgstr ""
95
 
96
  #: classes/ad-debug.php:118 classes/ad-debug.php:167 classes/ad-debug.php:169
97
+ #: public/class-advanced-ads.php:692 admin/views/ad-group-list-ads.php:13
98
  msgid "Ad"
99
  msgstr ""
100
 
146
  msgid "Injected in Footer (before closing &lt;/body&gt; Tag)."
147
  msgstr ""
148
 
149
+ #: classes/ad_placements.php:47 admin/views/placement-injection-top.php:51
150
  msgid "Before Content"
151
  msgstr ""
152
 
154
  msgid "Injected before the post content."
155
  msgstr ""
156
 
157
+ #: classes/ad_placements.php:53 admin/views/placement-injection-top.php:53
158
  msgid "After Content"
159
  msgstr ""
160
 
162
  msgid "Injected after the post content."
163
  msgstr ""
164
 
165
+ #: classes/ad_placements.php:59 admin/views/placement-injection-top.php:52
166
  msgid "Content"
167
  msgstr ""
168
 
238
  msgid "URL"
239
  msgstr ""
240
 
241
+ #: classes/ad_type_group.php:30 admin/views/ad-group-list-header.php:15
242
  msgid "Ad Group"
243
  msgstr ""
244
 
584
  msgid "IDs: %s"
585
  msgstr ""
586
 
587
+ #: classes/frontend_checks.php:277
588
+ #, php-format
589
+ msgid "The following responsive AdSense ads are not showing up: %s"
590
+ msgstr ""
591
+
592
+ #: classes/frontend_checks.php:291
593
  msgid "Consent not given"
594
  msgstr ""
595
 
596
+ #: classes/frontend_checks.php:303
597
  msgid "debug DFP ads"
598
  msgstr ""
599
 
600
+ #: classes/frontend_checks.php:314
601
  msgid "highlight ads"
602
  msgstr ""
603
 
604
+ #: classes/frontend_checks.php:330
605
  msgid "Ad Health"
606
  msgstr ""
607
 
608
+ #: classes/frontend_checks.php:345
609
  msgid "Everything is fine"
610
  msgstr ""
611
 
612
+ #: classes/frontend_checks.php:391
613
  msgid ""
614
  "the following code is used for automatic error detection and only visible to "
615
  "admins"
616
  msgstr ""
617
 
618
+ #: classes/frontend_checks.php:549
619
  #, php-format
620
  msgid ""
621
  "This ad was automatically placed here by AdSense. <a href=\"%s\" "
684
  msgstr ""
685
 
686
  #: classes/widget.php:79 admin/includes/class-menu.php:89
687
+ #: admin/includes/class-shortcode-creator.php:98 admin/views/placements.php:26
688
  #: modules/gutenberg/includes/class-gutenberg.php:81
689
  #: modules/import-export/views/page.php:25
690
  msgid "Placements"
691
  msgstr ""
692
 
693
  #: classes/widget.php:86 admin/includes/class-shortcode-creator.php:91
694
+ #: admin/views/placements-item.php:4 admin/views/placements.php:253
695
  #: modules/gutenberg/includes/class-gutenberg.php:80
696
  msgid "Ad Groups"
697
  msgstr ""
699
  #: classes/widget.php:93 public/class-advanced-ads.php:691
700
  #: admin/includes/class-menu.php:62 admin/includes/class-menu.php:62
701
  #: admin/includes/class-shortcode-creator.php:84
702
+ #: admin/views/ad-group-list-form-row.php:90
703
+ #: admin/views/ad-group-list-header.php:17 admin/views/placements-item.php:16
704
+ #: admin/views/placements.php:260
705
  #: modules/gutenberg/includes/class-gutenberg.php:79
706
  #: modules/import-export/views/page.php:23
707
  msgid "Ads"
788
  msgstr ""
789
 
790
  #: public/class-advanced-ads.php:693 public/class-advanced-ads.php:697
791
+ #: admin/includes/class-menu.php:79 admin/views/ad-group-list-ads.php:28
792
  msgid "New Ad"
793
  msgstr ""
794
 
1016
  msgid "Error while trying to register the license. Please contact support."
1017
  msgstr ""
1018
 
1019
+ #: admin/includes/class-licenses.php:106 admin/views/setting-license.php:58
1020
  msgid "Please enter a valid license key"
1021
  msgstr ""
1022
 
1139
 
1140
  #: admin/includes/class-meta-box.php:140 admin/includes/class-meta-box.php:151
1141
  #: admin/includes/class-meta-box.php:156 admin/includes/class-settings.php:519
1142
+ #: admin/views/ad-output-metabox.php:109
1143
  #: modules/privacy/admin/views/setting-enable.php:2
1144
  msgid "Manual"
1145
  msgstr ""
1402
  msgstr ""
1403
 
1404
  #: admin/includes/class-overview-widgets.php:444
1405
+ #: admin/views/ad-display-metabox.php:48 admin/views/ad-visitor-metabox.php:47
1406
  msgid "Visit the manual"
1407
  msgstr ""
1408
 
1698
  msgid "Cancel"
1699
  msgstr ""
1700
 
1701
+ #: admin/views/ad-conditions-string-operators.php:12
1702
  #: modules/privacy/admin/views/setting-consent-method.php:10
1703
  msgid "contains"
1704
  msgstr ""
1705
 
1706
+ #: admin/views/ad-conditions-string-operators.php:13
1707
  msgid "starts with"
1708
  msgstr ""
1709
 
1710
+ #: admin/views/ad-conditions-string-operators.php:14
1711
  msgid "ends with"
1712
  msgstr ""
1713
 
1714
+ #: admin/views/ad-conditions-string-operators.php:15
1715
  msgid "matches"
1716
  msgstr ""
1717
 
1718
+ #: admin/views/ad-conditions-string-operators.php:16
1719
  msgid "matches regex"
1720
  msgstr ""
1721
 
1722
+ #: admin/views/ad-conditions-string-operators.php:17
1723
  msgid "does not contain"
1724
  msgstr ""
1725
 
1726
+ #: admin/views/ad-conditions-string-operators.php:18
1727
  msgid "does not start with"
1728
  msgstr ""
1729
 
1730
+ #: admin/views/ad-conditions-string-operators.php:19
1731
  msgid "does not end with"
1732
  msgstr ""
1733
 
1734
+ #: admin/views/ad-conditions-string-operators.php:20
1735
  msgid "does not match"
1736
  msgstr ""
1737
 
1738
+ #: admin/views/ad-conditions-string-operators.php:21
1739
  msgid "does not match regex"
1740
  msgstr ""
1741
 
1742
+ #: admin/views/ad-display-metabox.php:17
1743
  msgid "parent page"
1744
  msgstr ""
1745
 
1746
+ #: admin/views/ad-display-metabox.php:18
1747
  msgid "post meta"
1748
  msgstr ""
1749
 
1750
+ #: admin/views/ad-display-metabox.php:19
1751
  msgid "page template"
1752
  msgstr ""
1753
 
1754
+ #: admin/views/ad-display-metabox.php:20
1755
  msgid "url parameters"
1756
  msgstr ""
1757
 
1758
+ #: admin/views/ad-display-metabox.php:23
1759
  msgid "accelerated mobile pages"
1760
  msgstr ""
1761
 
1762
+ #: admin/views/ad-display-metabox.php:31
1763
  msgid ""
1764
  "Click on the button below if the ad should NOT show up on all pages when "
1765
  "included automatically."
1766
  msgstr ""
1767
 
1768
+ #: admin/views/ad-display-metabox.php:32
1769
  msgid "Hide the ad on some pages"
1770
  msgstr ""
1771
 
1772
+ #: admin/views/ad-display-metabox.php:46
1773
  msgid "Watch video"
1774
  msgstr ""
1775
 
1776
+ #: admin/views/ad-display-metabox.php:58
1777
  #: admin/views/notices/jqueryui_error.php:2
1778
  #, php-format
1779
  msgid ""
1781
  "check <a href=\"%s\" target=\"_blank\">this article to learn more</a>."
1782
  msgstr ""
1783
 
1784
+ #: admin/views/ad-display-metabox.php:59
1785
  msgid "A page with this ad on it must match all of the following conditions."
1786
  msgstr ""
1787
 
1788
+ #: admin/views/ad-display-metabox.php:103
1789
  msgid "Forced to OR."
1790
  msgstr ""
1791
 
1792
+ #: admin/views/ad-display-metabox.php:104
1793
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:119
1794
  msgid "manual"
1795
  msgstr ""
1796
 
1797
+ #: admin/views/ad-display-metabox.php:129
1798
  msgid "If you want to display the ad everywhere, don't do anything here. "
1799
  msgstr ""
1800
 
1801
+ #: admin/views/ad-display-metabox.php:139
1802
+ #: admin/views/ad-visitor-metabox.php:106
1803
  msgid "New condition"
1804
  msgstr ""
1805
 
1806
+ #: admin/views/ad-display-metabox.php:142
1807
+ #: admin/views/ad-visitor-metabox.php:109
1808
  msgid "-- choose a condition --"
1809
  msgstr ""
1810
 
1811
+ #: admin/views/ad-display-metabox.php:149
1812
+ #: admin/views/ad-visitor-metabox.php:118
1813
  msgid "Add-On features"
1814
  msgstr ""
1815
 
1816
+ #: admin/views/ad-display-metabox.php:162 admin/views/ad-group-list-ads.php:37
1817
+ #: admin/views/ad-visitor-metabox.php:131
1818
  msgid "add"
1819
  msgstr ""
1820
 
1821
+ #: admin/views/ad-group-edit.php:18
1822
  msgid "You did not select an item for editing."
1823
  msgstr ""
1824
 
1825
+ #: admin/views/ad-group-edit.php:39
1826
  msgctxt "Taxonomy Name"
1827
  msgid "Name"
1828
  msgstr ""
1829
 
1830
+ #: admin/views/ad-group-edit.php:49
1831
  msgctxt "Taxonomy Slug"
1832
  msgid "Slug"
1833
  msgstr ""
1834
 
1835
+ #: admin/views/ad-group-edit.php:56
1836
  msgid ""
1837
  "An id-like string with only letters in lower case, numbers, and hyphens."
1838
  msgstr ""
1839
 
1840
+ #: admin/views/ad-group-edit.php:63
1841
  msgctxt "Taxonomy Description"
1842
  msgid "Description"
1843
  msgstr ""
1844
 
1845
+ #: admin/views/ad-group-edit.php:75
1846
  msgid "Create new Ad Group"
1847
  msgstr ""
1848
 
1849
+ #: admin/views/ad-group-edit.php:77
1850
  msgid "Update"
1851
  msgstr ""
1852
 
1853
+ #: admin/views/ad-group-list-ads.php:14
1854
  msgid "weight"
1855
  msgstr ""
1856
 
1857
+ #: admin/views/ad-group-list-form-row.php:26 admin/views/placements.php:32
1858
  #: modules/gadsense/admin/views/mapi-ad-selector.php:29
1859
  #: modules/gadsense/admin/views/mapi-ad-selector.php:41
1860
  #: modules/privacy/admin/views/setting-consent-method.php:9
1861
  msgid "Name"
1862
  msgstr ""
1863
 
1864
+ #: admin/views/ad-group-list-form-row.php:55 admin/views/placements.php:31
1865
  #: modules/gadsense/admin/views/adsense-ad-parameters.php:108
1866
  msgid "Type"
1867
  msgstr ""
1868
 
1869
+ #: admin/views/ad-group-list-form-row.php:71
1870
  msgctxt "option to display all ads in an ad groups"
1871
  msgid "all"
1872
  msgstr ""
1873
 
1874
+ #: admin/views/ad-group-list-form-row.php:78
1875
  msgid "Visible ads"
1876
  msgstr ""
1877
 
1878
+ #: admin/views/ad-group-list-form-row.php:80
1879
  msgid "Number of ads that are visible at the same time"
1880
  msgstr ""
1881
 
1882
+ #: admin/views/ad-group-list-header.php:16
1883
  msgid "Details"
1884
  msgstr ""
1885
 
1886
+ #: admin/views/ad-group-list-row.php:20 admin/views/ad-info.php:3
1887
+ #: admin/views/placements.php:92
1888
  msgid "shortcode"
1889
  msgstr ""
1890
 
1891
+ #: admin/views/ad-group-list-row.php:23
1892
  msgid "template"
1893
  msgstr ""
1894
 
1895
+ #: admin/views/ad-group-list-row.php:26
1896
  #, php-format
1897
  msgid ""
1898
  "Learn more about using groups in the <a href=\"%s\" target=\"_blank\">"
1899
  "manual</a>."
1900
  msgstr ""
1901
 
1902
+ #: admin/views/ad-group-list-row.php:35
1903
  #, php-format
1904
  msgid "Type: %s"
1905
  msgstr ""
1906
 
1907
+ #: admin/views/ad-group-list-row.php:40
1908
  #, php-format
1909
  msgid "ID: %s"
1910
  msgstr ""
1911
 
1912
+ #: admin/views/ad-group.php:23
1913
  msgid "Ad Group successfully created"
1914
  msgstr ""
1915
 
1916
+ #: admin/views/ad-group.php:34
1917
  msgid "Ad Groups successfully updated"
1918
  msgstr ""
1919
 
1920
+ #: admin/views/ad-group.php:47
1921
  #, php-format
1922
  msgid "Search results for &#8220;%s&#8221;"
1923
  msgstr ""
1924
 
1925
+ #: admin/views/ad-group.php:54
1926
  msgid "Group title"
1927
  msgstr ""
1928
 
1929
+ #: admin/views/ad-group.php:55
1930
  msgid "save"
1931
  msgstr ""
1932
 
1933
+ #: admin/views/ad-group.php:57
1934
  msgid ""
1935
  "Ad Groups are a very flexible method to bundle ads. You can use them to "
1936
  "display random ads in the frontend or run split tests, but also just for "
1938
  "ad can belong to multiple ad groups."
1939
  msgstr ""
1940
 
1941
+ #: admin/views/ad-group.php:63
1942
  #, php-format
1943
  msgid ""
1944
  "Find more information about ad groups in the <a href=\"%s\" "
1945
  "target=\"_blank\">manual</a>."
1946
  msgstr ""
1947
 
1948
+ #: admin/views/ad-group.php:91
1949
  msgid "Update Groups"
1950
  msgstr ""
1951
 
1952
+ #: admin/views/ad-info-after-textarea.php:18
1953
  msgid ""
1954
  "The code of this ad might not work properly with the <em>Content</em> "
1955
  "placement."
1956
  msgstr ""
1957
 
1958
+ #: admin/views/ad-info-after-textarea.php:25
1959
  #, php-format
1960
  msgid "Reach out to <a href=\"%s\">support</a> to get help."
1961
  msgstr ""
1962
 
1963
+ #: admin/views/ad-info-bottom.php:14
1964
  msgctxt "wizard navigation"
1965
  msgid "previous"
1966
  msgstr ""
1967
 
1968
+ #: admin/views/ad-info-bottom.php:17 admin/views/ad-info-bottom.php:19
1969
  msgctxt "wizard navigation"
1970
  msgid "next"
1971
  msgstr ""
1972
 
1973
+ #: admin/views/ad-info-bottom.php:17
1974
  msgctxt "wizard navigation"
1975
  msgid "save"
1976
  msgstr ""
1977
 
1978
+ #: admin/views/ad-info-bottom.php:20 admin/views/ad-info-top.php:26
1979
  msgid "Stop Wizard and show all options"
1980
  msgstr ""
1981
 
2006
  msgid "click to change"
2007
  msgstr ""
2008
 
2009
+ #: admin/views/ad-info.php:18
2010
  msgid "Add a description"
2011
  msgstr ""
2012
 
2013
+ #: admin/views/ad-info.php:22
2014
  msgid "Internal description or your own notes about this ad."
2015
  msgstr ""
2016
 
2047
  msgid "Position"
2048
  msgstr ""
2049
 
2050
+ #: admin/views/ad-output-metabox.php:8
2051
  msgid "- default -"
2052
  msgstr ""
2053
 
2054
+ #: admin/views/ad-output-metabox.php:15
2055
  #: admin/views/placements-ad-label-position.php:2
2056
+ #: admin/views/placements-ad-label-position.php:7
2057
+ #: admin/views/placements-ad-label.php:1 admin/views/placements-ad-label.php:6
2058
+ #: admin/views/placements.php:74
2059
  msgid "default"
2060
  msgstr ""
2061
 
2062
+ #: admin/views/ad-output-metabox.php:16
2063
+ #: admin/views/placements-ad-label-position.php:9
2064
+ #: admin/views/placements-ad-label-position.php:14
2065
  msgid "left"
2066
  msgstr ""
2067
 
2068
+ #: admin/views/ad-output-metabox.php:23
2069
+ #: admin/views/placements-ad-label-position.php:15
2070
+ #: admin/views/placements-ad-label-position.php:20
2071
  msgid "center"
2072
  msgstr ""
2073
 
2074
+ #: admin/views/ad-output-metabox.php:30
2075
+ #: admin/views/placements-ad-label-position.php:21
2076
+ #: admin/views/placements-ad-label-position.php:26
2077
  msgid "right"
2078
  msgstr ""
2079
 
2080
+ #: admin/views/ad-output-metabox.php:44
2081
  msgid ""
2082
  "Check this if you don't want the following elements to float around the ad. "
2083
  "(adds a clearfix)"
2084
  msgstr ""
2085
 
2086
+ #: admin/views/ad-output-metabox.php:49
2087
  msgid "Margin"
2088
  msgstr ""
2089
 
2090
+ #: admin/views/ad-output-metabox.php:51
2091
  msgid "top:"
2092
  msgstr ""
2093
 
2094
+ #: admin/views/ad-output-metabox.php:57
2095
  msgid "right:"
2096
  msgstr ""
2097
 
2098
+ #: admin/views/ad-output-metabox.php:63
2099
  msgid "bottom:"
2100
  msgstr ""
2101
 
2102
+ #: admin/views/ad-output-metabox.php:69
2103
  msgid "left:"
2104
  msgstr ""
2105
 
2106
+ #: admin/views/ad-output-metabox.php:75
2107
  msgid "tip: use this to add a margin around the ad"
2108
  msgstr ""
2109
 
2110
+ #: admin/views/ad-output-metabox.php:78
2111
  msgid "container ID"
2112
  msgstr ""
2113
 
2114
+ #: admin/views/ad-output-metabox.php:86
2115
  msgid "Specify the id of the ad container. Leave blank for random or no id."
2116
  msgstr ""
2117
 
2118
+ #: admin/views/ad-output-metabox.php:89
2119
  msgid "container classes"
2120
  msgstr ""
2121
 
2122
+ #: admin/views/ad-output-metabox.php:97
2123
  msgid ""
2124
  "Specify one or more classes for the container. Separate multiple classes "
2125
  "with a space"
2126
  msgstr ""
2127
 
2128
+ #: admin/views/ad-output-metabox.php:100
2129
  msgid "Enable debug mode"
2130
  msgstr ""
2131
 
2141
  msgid "height"
2142
  msgstr ""
2143
 
2144
+ #: admin/views/ad-parameters-size.php:14
2145
  msgid "reserve this space"
2146
  msgstr ""
2147
 
2149
  msgid "Set expiry date"
2150
  msgstr ""
2151
 
2152
+ #: admin/views/ad-submitbox-meta.php:16
2153
  msgid "Month"
2154
  msgstr ""
2155
 
2156
+ #: admin/views/ad-submitbox-meta.php:21
2157
  #, php-format
2158
  msgctxt "1: month number (01, 02, etc.), 2: month abbreviation"
2159
  msgid "%1$s-%2$s"
2160
  msgstr ""
2161
 
2162
+ #: admin/views/ad-submitbox-meta.php:27
2163
  msgid "Day"
2164
  msgstr ""
2165
 
2166
+ #: admin/views/ad-submitbox-meta.php:28
2167
  msgid "Year"
2168
  msgstr ""
2169
 
2170
+ #: admin/views/ad-submitbox-meta.php:29
2171
  msgid "Hour"
2172
  msgstr ""
2173
 
2174
+ #: admin/views/ad-submitbox-meta.php:30
2175
  msgid "Minute"
2176
  msgstr ""
2177
 
2178
+ #: admin/views/ad-submitbox-meta.php:35
2179
  #, php-format
2180
  msgctxt ""
2181
  "order of expiry date fields 1: month, 2: day, 3: year, 4: hour, 5: minute"
2235
  msgid "Hide the ad from some users"
2236
  msgstr ""
2237
 
2238
+ #: admin/views/ad-visitor-metabox.php:40
2239
  msgid ""
2240
  "Display conditions that are based on the user. Use with caution on cached "
2241
  "websites."
2242
  msgstr ""
2243
 
2244
+ #: admin/views/ad-visitor-metabox.php:89
2245
  msgid ""
2246
  "Visitor conditions limit the number of users who can see your ad. There is "
2247
  "no need to set visitor conditions if you want all users to see the ad."
2248
  msgstr ""
2249
 
2250
+ #: admin/views/ad-visitor-metabox.php:93
2251
  #: modules/privacy/admin/views/setting-enable.php:4
2252
  msgid "It seems that a caching plugin is activated."
2253
  msgstr ""
2254
 
2255
+ #: admin/views/ad-visitor-metabox.php:95
2256
  #, php-format
2257
  msgid ""
2258
  "Check out cache-busting in <a href=\"%s\" target=\"_blank\">Advanced Ads "
2259
  "Pro</a> if dynamic features get cached."
2260
  msgstr ""
2261
 
2262
+ #: admin/views/ad-visitor-metabox.php:136
2263
  #, php-format
2264
  msgid ""
2265
  "Define the exact browser width for which an ad should be visible using the "
2266
  "<a href=\"%s\" target=\"_blank\">Responsive add-on</a>."
2267
  msgstr ""
2268
 
2269
+ #: admin/views/ad-visitor-metabox.php:187
2270
  msgid ""
2271
  "The visitor conditions below are deprecated. Please use the new version of "
2272
  "visitor conditions to replace it."
2273
  msgstr ""
2274
 
2275
+ #: admin/views/ad-visitor-metabox.php:193
2276
  msgid "Display on all devices"
2277
  msgstr ""
2278
 
2279
+ #: admin/views/ad-visitor-metabox.php:197
2280
  msgid "only on mobile devices"
2281
  msgstr ""
2282
 
2283
+ #: admin/views/ad-visitor-metabox.php:201
2284
  msgid "not on mobile devices"
2285
  msgstr ""
2286
 
2348
  msgid "Advanced Ads related constants enabled"
2349
  msgstr ""
2350
 
2351
+ #: admin/views/feedback-disable.php:5
2352
  msgid "Why did you decide to disable Advanced Ads?"
2353
  msgstr ""
2354
 
2355
+ #: admin/views/feedback-disable.php:7
2356
  msgid "I have a problem, a question or need help."
2357
  msgstr ""
2358
 
2359
+ #: admin/views/feedback-disable.php:8
2360
  msgid "Please let us know how we can help"
2361
  msgstr ""
2362
 
2363
+ #: admin/views/feedback-disable.php:15
2364
  #, php-format
2365
  msgid "Send me free help to %s"
2366
  msgstr ""
2367
 
2368
+ #: admin/views/feedback-disable.php:20
2369
  msgid "It is only temporary"
2370
  msgstr ""
2371
 
2372
+ #: admin/views/feedback-disable.php:21
2373
  msgid "I miss a feature"
2374
  msgstr ""
2375
 
2376
+ #: admin/views/feedback-disable.php:22
2377
  msgid "Which one?"
2378
  msgstr ""
2379
 
2380
+ #: admin/views/feedback-disable.php:23
2381
  msgid "I stopped using ads on my site."
2382
  msgstr ""
2383
 
2384
+ #: admin/views/feedback-disable.php:24
2385
  msgid "I switched to another plugin"
2386
  msgstr ""
2387
 
2388
+ #: admin/views/feedback-disable.php:29
2389
+ msgid "Send feedback & deactivate"
2390
  msgstr ""
2391
 
2392
+ #: admin/views/feedback-disable.php:30
2393
+ msgid "Send feedback"
2394
  msgstr ""
2395
 
2396
+ #: admin/views/feedback-disable.php:32
2397
  msgid "Only Deactivate"
2398
  msgstr ""
2399
 
2400
+ #: admin/views/feedback-disable.php:35
2401
+ msgid ""
2402
+ "Thanks for submitting your feedback. I will reply within 24 hours on working "
2403
+ "days."
2404
+ msgstr ""
2405
+
2406
+ #. %s is the title of the website
2407
+ #: admin/views/feedback-disable.php:40
2408
+ #, php-format
2409
+ msgid "All the best to you and %s."
2410
+ msgstr ""
2411
+
2412
+ #: admin/views/feedback-disable.php:41
2413
+ msgid "Disabling the plugin now…"
2414
+ msgstr ""
2415
+
2416
  #: admin/views/pitch-bundle.php:1
2417
  msgid "All Access – with all available add-ons"
2418
  msgstr ""
2422
  msgstr ""
2423
 
2424
  #: admin/views/pitch-bundle.php:13
2425
+ msgid "Get All Access"
2426
  msgstr ""
2427
 
2428
  #: admin/views/pitch-pro-tab.php:2
2465
  msgid "spread impressions or clicks equally over a given period"
2466
  msgstr ""
2467
 
2468
+ #: admin/views/placement-injection-top.php:10
2469
  msgid "Congratulations! Your ad is now visible in the frontend."
2470
  msgstr ""
2471
 
2472
+ #: admin/views/placement-injection-top.php:11
2473
  msgid "Adjust the placement options"
2474
  msgstr ""
2475
 
2476
+ #: admin/views/placement-injection-top.php:12
2477
  #, php-format
2478
  msgid ""
2479
  "Ad not showing up? Take a look <a href=\"%s\" target=\"_blank\">here</a>"
2480
  msgstr ""
2481
 
2482
+ #: admin/views/placement-injection-top.php:15
2483
  msgid "Where do you want to display the ad?"
2484
  msgstr ""
2485
 
2486
+ #: admin/views/placement-injection-top.php:24
2487
  #: modules/gadsense/admin/admin.php:418
2488
  #, php-format
2489
  msgid ""
2491
  "href=\"%s\">AdSense settings</a>."
2492
  msgstr ""
2493
 
2494
+ #: admin/views/placement-injection-top.php:30
2495
  #: modules/gadsense/admin/admin.php:420
2496
  msgid ""
2497
  "No need to add the code manually here, unless you want to include it into "
2498
  "certain pages only."
2499
  msgstr ""
2500
 
2501
+ #: admin/views/placement-injection-top.php:33
2502
  msgid ""
2503
  "Click on the button below to add the Auto ads code to the header of your "
2504
  "site."
2506
 
2507
  #. this is a label in a button when a user uses an AdSense Auto ads code in a plain code field
2508
  #. the button has barely space for the original English text, so keep it short
2509
+ #: admin/views/placement-injection-top.php:44
2510
  msgid "inject Auto ads"
2511
  msgstr ""
2512
 
2513
+ #: admin/views/placement-injection-top.php:50
2514
  msgid "New placement"
2515
  msgstr ""
2516
 
2517
+ #: admin/views/placement-injection-top.php:54
2518
  msgid "PHP or Shortcode"
2519
  msgstr ""
2520
 
2521
+ #: admin/views/placement-injection-top.php:55
2522
  msgid "Manage Sidebar"
2523
  msgstr ""
2524
 
2525
+ #: admin/views/placement-injection-top.php:56
2526
  msgid "Header (Manual)"
2527
  msgstr ""
2528
 
2529
+ #: admin/views/placement-injection-top.php:60
2530
+ #: admin/views/placement-injection-top.php:64
2531
  msgid "Custom Position"
2532
  msgstr ""
2533
 
2534
+ #: admin/views/placement-injection-top.php:60
2535
  msgid "Show Pro Places"
2536
  msgstr ""
2537
 
2538
+ #: admin/views/placement-injection-top.php:69
2539
  msgid "AdSense In-feed"
2540
  msgstr ""
2541
 
2542
+ #: admin/views/placement-injection-top.php:75
2543
  msgid "Show Sticky Places"
2544
  msgstr ""
2545
 
2546
+ #: admin/views/placement-injection-top.php:81
2547
  msgid "Show PopUp"
2548
  msgstr ""
2549
 
2550
+ #: admin/views/placement-injection-top.php:85
2551
  msgid "PopUp & Layer"
2552
  msgstr ""
2553
 
2554
+ #: admin/views/placement-injection-top.php:90
2555
  msgid "see all…"
2556
  msgstr ""
2557
 
2558
+ #: admin/views/placement-injection-top.php:122
2559
  msgid "Existing placement"
2560
  msgstr ""
2561
 
2562
+ #: admin/views/placement-injection-top.php:127
2563
  #, php-format
2564
  msgid "Or use the shortcode %s to insert the ad into the content manually."
2565
  msgstr ""
2566
 
2567
+ #: admin/views/placement-injection-top.php:128
2568
  #, php-format
2569
  msgid ""
2570
  "Learn more about your choices to display an ad in the <a href=\"%s\" "
2571
  "target=\"_blank\">manual</a>."
2572
  msgstr ""
2573
 
2574
+ #: admin/views/placements-ad-label-position.php:34
2575
  msgid ""
2576
  "Check this if you don't want the following elements to float around the ad. "
2577
  "(adds a placement_clearfix)"
2578
  msgstr ""
2579
 
2580
+ #: admin/views/placements-ad-label.php:8 admin/views/placements-ad-label.php:13
2581
  msgid "enabled"
2582
  msgstr ""
2583
 
2584
+ #: admin/views/placements-ad-label.php:15
2585
+ #: admin/views/placements-ad-label.php:20
2586
  msgid "disabled"
2587
  msgstr ""
2588
 
2589
+ #: admin/views/placements-content-index.php:2
2590
  msgid "after"
2591
  msgstr ""
2592
 
2593
+ #: admin/views/placements-content-index.php:3
2594
  msgid "before"
2595
  msgstr ""
2596
 
2597
+ #: admin/views/placements-content-index.php:39
2598
  msgid "start counting from bottom"
2599
  msgstr ""
2600
 
2601
+ #: admin/views/placements-item.php:2 admin/views/placements.php:251
2602
  msgid "--not selected--"
2603
  msgstr ""
2604
 
2605
+ #: admin/views/placements.php:10
2606
  msgid ""
2607
  "Couldn’t create the new placement. Please check your form field and whether "
2608
  "the name is already in use."
2609
  msgstr ""
2610
 
2611
+ #: admin/views/placements.php:14
2612
  msgid "Placements updated"
2613
  msgstr ""
2614
 
2615
+ #: admin/views/placements.php:20
2616
  msgid ""
2617
  "Placements are physically places in your theme and posts. You can use them "
2618
  "if you plan to change ads and ad groups on the same place without the need "
2619
  "to change your templates."
2620
  msgstr ""
2621
 
2622
+ #: admin/views/placements.php:21
2623
  #, php-format
2624
  msgid ""
2625
  "See also the manual for more information on <a href=\"%s\">placements</a>."
2626
  msgstr ""
2627
 
2628
+ #: admin/views/placements.php:33 modules/import-export/views/page.php:26
2629
  msgid "Options"
2630
  msgstr ""
2631
 
2632
+ #: admin/views/placements.php:55
2633
  #, php-format
2634
  msgid ""
2635
  "Placement type \"%s\" is missing and was reset to \"default\".<br/>Please "
2636
  "check if the responsible add-on is activated."
2637
  msgstr ""
2638
 
2639
+ #: admin/views/placements.php:83
2640
  msgid "show usage"
2641
  msgstr ""
2642
 
2643
+ #: admin/views/placements.php:95
2644
  msgid "template (PHP)"
2645
  msgstr ""
2646
 
2647
+ #: admin/views/placements.php:110
2648
  msgid "Item"
2649
  msgstr ""
2650
 
2651
+ #: admin/views/placements.php:124
2652
  msgid "position"
2653
  msgstr ""
2654
 
2655
+ #: admin/views/placements.php:130
2656
  msgid "Important Notice"
2657
  msgstr ""
2658
 
2659
+ #: admin/views/placements.php:130
2660
  msgid ""
2661
  "Your server is missing an extension. This might break the content injection."
2662
  "<br/>Ignore this warning if everything works fine or else ask your hosting "
2663
  "provider to enable <em>mbstring</em>."
2664
  msgstr ""
2665
 
2666
+ #: admin/views/placements.php:152
2667
  msgid "ad label"
2668
  msgstr ""
2669
 
2670
+ #: admin/views/placements.php:162
2671
  msgid "show all options"
2672
  msgstr ""
2673
 
2674
+ #: admin/views/placements.php:181
2675
  #, php-format
2676
  msgid ""
2677
  "Tutorial: <a href=\"%s\" target=\"_blank\">How to place visible ads in the "
2678
  "header of your website</a>."
2679
  msgstr ""
2680
 
2681
+ #: admin/views/placements.php:190
2682
  msgctxt "checkbox to remove placement"
2683
  msgid "delete"
2684
  msgstr ""
2685
 
2686
+ #: admin/views/placements.php:197
2687
  msgid "Save Placements"
2688
  msgstr ""
2689
 
2690
+ #: admin/views/placements.php:199
2691
  msgid "Create a new placement"
2692
  msgstr ""
2693
 
2694
+ #: admin/views/placements.php:201
2695
  msgid "New Placement"
2696
  msgstr ""
2697
 
2698
+ #: admin/views/placements.php:220
2699
  msgid "Choose a placement type"
2700
  msgstr ""
2701
 
2702
+ #: admin/views/placements.php:221
2703
  #, php-format
2704
  msgid ""
2705
  "Placement types define where the ad is going to be displayed. Learn more "
2706
  "about the different types from the <a href=\"%s\">manual</a>"
2707
  msgstr ""
2708
 
2709
+ #: admin/views/placements.php:242
2710
  msgid "Please select a placement type."
2711
  msgstr ""
2712
 
2713
+ #: admin/views/placements.php:244
2714
  msgid "Choose a Name"
2715
  msgstr ""
2716
 
2717
+ #: admin/views/placements.php:245
2718
  msgid ""
2719
  "The name of the placement is only visible to you. Tip: choose a descriptive "
2720
  "one, e.g. <em>Below Post Headline</em>."
2721
  msgstr ""
2722
 
2723
+ #: admin/views/placements.php:246
2724
  msgid "Placement Name"
2725
  msgstr ""
2726
 
2727
+ #: admin/views/placements.php:247
2728
  msgid "Please enter a name for your placement."
2729
  msgstr ""
2730
 
2731
+ #: admin/views/placements.php:248
2732
  msgid "Choose the Ad or Group"
2733
  msgstr ""
2734
 
2735
+ #: admin/views/placements.php:249
2736
  msgid "The ad or group that should be displayed."
2737
  msgstr ""
2738
 
2739
+ #: admin/views/placements.php:268
2740
  msgid "Save New Placement"
2741
  msgstr ""
2742
 
2743
+ #: admin/views/post-ad-settings-metabox.php:4
2744
  msgid "Disable ads on this page"
2745
  msgstr ""
2746
 
2752
  msgid "Update expiry date"
2753
  msgstr ""
2754
 
2755
+ #: admin/views/setting-license.php:16
2756
  #, php-format
2757
  msgid ""
2758
  "Click on %2$s if you renewed it or have a subscription or <a href=\"%1$s\" "
2759
  "target=\"_blank\">renew your license</a>."
2760
  msgstr ""
2761
 
2762
+ #: admin/views/setting-license.php:28
2763
  #, php-format
2764
  msgid "(%d days left)"
2765
  msgstr ""
2766
 
2767
+ #: admin/views/setting-license.php:33
2768
  msgid "License key"
2769
  msgstr ""
2770
 
2771
+ #: admin/views/setting-license.php:49
2772
  msgid "Deactivate License"
2773
  msgstr ""
2774
 
2775
+ #: admin/views/setting-license.php:55
2776
  msgid "Update License"
2777
  msgstr ""
2778
 
2779
+ #: admin/views/setting-license.php:55
2780
  msgid "Activate License"
2781
  msgstr ""
2782
 
2783
+ #: admin/views/setting-license.php:60
2784
  msgid "License key invalid"
2785
  msgstr ""
2786
 
2787
+ #: admin/views/setting-license.php:69
2788
  msgid "active"
2789
  msgstr ""
2790
 
2791
+ #: admin/views/setting-target.php:6
2792
  msgid ""
2793
  "Open programatically created links in a new window (use <code>"
2794
  "target=\"_blank\"</code>)"
2795
  msgstr ""
2796
 
2797
+ #: admin/views/settings-disable-ads.php:6
2798
  msgid "Disable all ads in frontend"
2799
  msgstr ""
2800
 
2801
+ #: admin/views/settings-disable-ads.php:7
2802
  msgid ""
2803
  "Use this option to disable all ads in the frontend, but still be able to use "
2804
  "the plugin."
2805
  msgstr ""
2806
 
2807
+ #: admin/views/settings-disable-ads.php:17
2808
  msgid "Disable ads on 404 error pages"
2809
  msgstr ""
2810
 
2811
+ #: admin/views/settings-disable-ads.php:27
2812
  msgid "Disable ads on non-singular pages"
2813
  msgstr ""
2814
 
2815
+ #: admin/views/settings-disable-ads.php:28
2816
  msgid ""
2817
  "e.g. archive pages like categories, tags, authors, front page (if a list)"
2818
  msgstr ""
2819
 
2820
+ #: admin/views/settings-disable-ads.php:37
2821
  msgid "Disable ads on secondary queries"
2822
  msgstr ""
2823
 
2824
+ #: admin/views/settings-disable-ads.php:38
2825
  msgid ""
2826
  "Secondary queries are custom queries of posts outside the main query of a "
2827
  "page. Try this option if you see ads injected on places where they shouldn’t "
2828
  "appear."
2829
  msgstr ""
2830
 
2831
+ #: admin/views/settings-disable-ads.php:48
2832
  msgid "Disable ads in Feed"
2833
  msgstr ""
2834
 
2835
+ #: admin/views/settings.php:13
2836
  msgid "General"
2837
  msgstr ""
2838
 
2839
+ #: admin/views/settings.php:42
2840
  msgid "Save settings on this page"
2841
  msgstr ""
2842
 
2843
+ #: admin/views/settings.php:49 modules/import-export/main.php:15
2844
  #: modules/import-export/main.php:15
2845
  msgid "Import &amp; Export"
2846
  msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: ads, ad manager, ad widget, ad rotation, adsense, advertise, advertisement
5
  Requires at least: 4.6
6
  Tested up to: 4.9
7
  Requires PHP: 5.4
8
- Stable tag: 1.10.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -267,6 +267,10 @@ Yes. Advanced Ads is based on WordPress standards and therefore easily customiza
267
 
268
  == Changelog ==
269
 
 
 
 
 
270
  = 1.10.5 =
271
 
272
  * improved list of ads imported from AdSense account
@@ -275,7 +279,7 @@ Yes. Advanced Ads is based on WordPress standards and therefore easily customiza
275
  * show warning if AdSense Auto ads code is used in ad code field
276
  * added a warning if Advanced Ads constants are enabled
277
  * prevented possible JavaScript error created by the Privacy module
278
- * extended "Transpartent Background" option for AdSense to fix a border they have in some themes
279
  * removed ad block counter code when not used
280
  * updated add-on updater class
281
  * added a warning about floated responsive AdSense ads
5
  Requires at least: 4.6
6
  Tested up to: 4.9
7
  Requires PHP: 5.4
8
+ Stable tag: 1.10.6
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
267
 
268
  == Changelog ==
269
 
270
+ = 1.10.6 =
271
+
272
+ * fixed HTML issue with paragraph index when saving the placement page
273
+
274
  = 1.10.5 =
275
 
276
  * improved list of ads imported from AdSense account
279
  * show warning if AdSense Auto ads code is used in ad code field
280
  * added a warning if Advanced Ads constants are enabled
281
  * prevented possible JavaScript error created by the Privacy module
282
+ * extended "Transparent Background" option for AdSense to fix a border they have in some themes
283
  * removed ad block counter code when not used
284
  * updated add-on updater class
285
  * added a warning about floated responsive AdSense ads