Version Description
Download this release
Release Info
Developer | DannyCooper |
Plugin | Google Fonts for WordPress |
Version | 1.6.3 |
Comparing to | |
See all releases |
Code changes from version 1.6.2 to 1.6.3
- assets/js/customize-controls.js +2 -0
- assets/js/customize-preview.js +2 -0
- assets/js/deactivation.js +2 -0
- assets/js/dismiss.js +2 -0
- assets/js/multiple-checkbox.js +2 -0
- assets/js/panels.js +2 -0
- includes/class-ogf-notifications.php +2 -3
- includes/customizer/controls/class-ogf-customize-typography-control.php +1 -1
- includes/customizer/controls/class-ogf-customize-upsell-control.php +3 -4
- includes/customizer/panels.php +20 -14
- languages/olympus-google-fonts.pot +30 -31
- olympus-google-fonts.php +2 -2
- readme.txt +9 -7
assets/js/customize-controls.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
/* global ogf_font_array */
|
2 |
( function( api ) {
|
3 |
api.controlConstructor.typography = api.Control.extend(
|
1 |
+
'use strict';
|
2 |
+
|
3 |
/* global ogf_font_array */
|
4 |
( function( api ) {
|
5 |
api.controlConstructor.typography = api.Control.extend(
|
assets/js/customize-preview.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
/* global ogf_elements */
|
2 |
jQuery( document ).ready(
|
3 |
function() {
|
1 |
+
'use strict';
|
2 |
+
|
3 |
/* global ogf_elements */
|
4 |
jQuery( document ).ready(
|
5 |
function() {
|
assets/js/deactivation.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
/* global ajaxurl */
|
2 |
jQuery( document ).ready(
|
3 |
function() {
|
1 |
+
'use strict';
|
2 |
+
|
3 |
/* global ajaxurl */
|
4 |
jQuery( document ).ready(
|
5 |
function() {
|
assets/js/dismiss.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
/* global ajaxurl */
|
2 |
jQuery( document ).ready( function() {
|
3 |
// Hook into the "notice-dismiss-welcome" class we added to the notice, so
|
1 |
+
'use strict';
|
2 |
+
|
3 |
/* global ajaxurl */
|
4 |
jQuery( document ).ready( function() {
|
5 |
// Hook into the "notice-dismiss-welcome" class we added to the notice, so
|
assets/js/multiple-checkbox.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
wp.customize.controlConstructor[ 'multiple-checkbox' ] = wp.customize.Control.extend( {
|
2 |
|
3 |
// When we're finished loading continue processing.
|
1 |
+
'use strict';
|
2 |
+
|
3 |
wp.customize.controlConstructor[ 'multiple-checkbox' ] = wp.customize.Control.extend( {
|
4 |
|
5 |
// When we're finished loading continue processing.
|
assets/js/panels.js
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
( function( $ ) {
|
2 |
const api = wp.customize;
|
3 |
|
1 |
+
'use strict';
|
2 |
+
|
3 |
( function( $ ) {
|
4 |
const api = wp.customize;
|
5 |
|
includes/class-ogf-notifications.php
CHANGED
@@ -211,7 +211,7 @@ if ( ! class_exists( 'OGF_Notifications' ) ) :
|
|
211 |
<?php
|
212 |
if ( $this->type === 'review' ) {
|
213 |
$this->review();
|
214 |
-
} elseif( $this->type === 'addon' ) {
|
215 |
$this->addon();
|
216 |
}
|
217 |
}
|
@@ -264,8 +264,7 @@ if ( ! class_exists( 'OGF_Notifications' ) ) :
|
|
264 |
<h3><?php echo esc_html__( 'Speed Up Your Website!', 'olympus-google-fonts' ); ?></h3>
|
265 |
<p>
|
266 |
<?php
|
267 |
-
|
268 |
-
printf( __( 'Our latest <strong>free</strong> addon allows you to host Google Fonts locally.<br>This removes the requests to Google\'s servers and can equal faster load times.', 'olympus-google-fonts' ), esc_html( $this->name ), esc_html( $time ) );
|
269 |
?>
|
270 |
</p>
|
271 |
</div>
|
211 |
<?php
|
212 |
if ( $this->type === 'review' ) {
|
213 |
$this->review();
|
214 |
+
} elseif ( $this->type === 'addon' ) {
|
215 |
$this->addon();
|
216 |
}
|
217 |
}
|
264 |
<h3><?php echo esc_html__( 'Speed Up Your Website!', 'olympus-google-fonts' ); ?></h3>
|
265 |
<p>
|
266 |
<?php
|
267 |
+
_e( 'Our latest <strong>free</strong> addon allows you to host Google Fonts locally.<br>This removes the requests to Google\'s servers and can improve page speed.', 'olympus-google-fonts' );
|
|
|
268 |
?>
|
269 |
</p>
|
270 |
</div>
|
includes/customizer/controls/class-ogf-customize-typography-control.php
CHANGED
@@ -252,7 +252,7 @@ class OGF_Customize_Typography_Control extends WP_Customize_Control {
|
|
252 |
*/
|
253 |
public function get_font_style_choices() {
|
254 |
return array(
|
255 |
-
'default'
|
256 |
'normal' => esc_html__( 'Normal', 'olympus-google-fonts' ),
|
257 |
'italic' => esc_html__( 'Italic', 'olympus-google-fonts' ),
|
258 |
'oblique' => esc_html__( 'Oblique', 'olympus-google-fonts' ),
|
252 |
*/
|
253 |
public function get_font_style_choices() {
|
254 |
return array(
|
255 |
+
'default' => esc_html__( '- Default -', 'olympus-google-fonts' ),
|
256 |
'normal' => esc_html__( 'Normal', 'olympus-google-fonts' ),
|
257 |
'italic' => esc_html__( 'Italic', 'olympus-google-fonts' ),
|
258 |
'oblique' => esc_html__( 'Oblique', 'olympus-google-fonts' ),
|
includes/customizer/controls/class-ogf-customize-upsell-control.php
CHANGED
@@ -34,13 +34,12 @@ class OGF_Customize_Upsell_Control extends WP_Customize_Control {
|
|
34 |
<div class="ogf-upsell">
|
35 |
<h2 class="upsell__title">Upgrade to Google Fonts Pro</h2>
|
36 |
<ul>
|
37 |
-
<li>✅ Unlock Font Size</li>
|
38 |
-
<li
|
39 |
-
<li>✅ Unlock Line Height</li>
|
40 |
<li>⚡️ Optimized Font Loading</li>
|
41 |
<li>🧙 Custom Elements</li>
|
42 |
</ul>
|
43 |
-
<a class="upsell__button button button-primary" href="https://fontsplugin.com/upgrade/?utm_source=customizer&utm_campaign=<?php echo esc_attr( $this->section ); ?>" target="_blank">Learn More</a>
|
44 |
</div>
|
45 |
<?php
|
46 |
}
|
34 |
<div class="ogf-upsell">
|
35 |
<h2 class="upsell__title">Upgrade to Google Fonts Pro</h2>
|
36 |
<ul>
|
37 |
+
<li>✅ Unlock Font Size & Color</li>
|
38 |
+
<li>📦 Host Fonts Locally</li>
|
|
|
39 |
<li>⚡️ Optimized Font Loading</li>
|
40 |
<li>🧙 Custom Elements</li>
|
41 |
</ul>
|
42 |
+
<a class="upsell__button button button-primary" href="https://fontsplugin.com/pro-upgrade/?utm_source=customizer&utm_campaign=<?php echo esc_attr( $this->section ); ?>" target="_blank">Learn More</a>
|
43 |
</div>
|
44 |
<?php
|
45 |
}
|
includes/customizer/panels.php
CHANGED
@@ -35,11 +35,21 @@ function ogf_panels_customize_register( $wp_customize ) {
|
|
35 |
);
|
36 |
$wp_customize->add_panel( $ogf_panel );
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
$wp_customize->add_section(
|
39 |
'ogf_basic',
|
40 |
array(
|
41 |
-
'title'
|
42 |
-
'
|
|
|
43 |
)
|
44 |
);
|
45 |
|
@@ -47,25 +57,19 @@ function ogf_panels_customize_register( $wp_customize ) {
|
|
47 |
$wp_customize,
|
48 |
'ogf_advanced',
|
49 |
array(
|
50 |
-
'title'
|
51 |
-
'
|
|
|
52 |
)
|
53 |
);
|
54 |
|
55 |
$wp_customize->add_panel( $ogf_advanced_panel );
|
56 |
|
57 |
-
$wp_customize->add_section(
|
58 |
-
'ogf_theme',
|
59 |
-
array(
|
60 |
-
'title' => esc_html__( 'Theme Settings', 'olympus-google-fonts' ),
|
61 |
-
'panel' => 'ogf_google_fonts',
|
62 |
-
)
|
63 |
-
);
|
64 |
-
|
65 |
$wp_customize->add_section(
|
66 |
'ogf_custom',
|
67 |
array(
|
68 |
'title' => esc_html__( 'Custom Elements', 'olympus-google-fonts' ),
|
|
|
69 |
/* Translators: %s Custom Elements Customizer Panel URL */
|
70 |
'description' => sprintf( __( 'Define your Custom Elements here and then customize them under <a href="%s">Advanced Settings → Custom Elements</a>.', 'olympus-google-fonts' ), esc_url( admin_url( '/customize.php?autofocus[section]=ogf_advanced__custom' ) ) ),
|
71 |
'panel' => 'ogf_google_fonts',
|
@@ -76,6 +80,7 @@ function ogf_panels_customize_register( $wp_customize ) {
|
|
76 |
'ogf_font_loading',
|
77 |
array(
|
78 |
'title' => esc_html__( 'Font Loading', 'olympus-google-fonts' ),
|
|
|
79 |
'description' => 'Optimize your site\'s performance by unchecking any font weights you don\'t need.',
|
80 |
'panel' => 'ogf_google_fonts',
|
81 |
)
|
@@ -84,8 +89,9 @@ function ogf_panels_customize_register( $wp_customize ) {
|
|
84 |
$wp_customize->add_section(
|
85 |
'ogf_debugging',
|
86 |
array(
|
87 |
-
'title'
|
88 |
-
'
|
|
|
89 |
)
|
90 |
);
|
91 |
|
35 |
);
|
36 |
$wp_customize->add_panel( $ogf_panel );
|
37 |
|
38 |
+
$wp_customize->add_section(
|
39 |
+
'ogf_theme',
|
40 |
+
array(
|
41 |
+
'title' => esc_html__( 'Theme Settings', 'olympus-google-fonts' ),
|
42 |
+
'priority' => '1',
|
43 |
+
'panel' => 'ogf_google_fonts',
|
44 |
+
)
|
45 |
+
);
|
46 |
+
|
47 |
$wp_customize->add_section(
|
48 |
'ogf_basic',
|
49 |
array(
|
50 |
+
'title' => __( 'Basic Settings', 'olympus-google-fonts' ),
|
51 |
+
'priority' => '2',
|
52 |
+
'panel' => 'ogf_google_fonts',
|
53 |
)
|
54 |
);
|
55 |
|
57 |
$wp_customize,
|
58 |
'ogf_advanced',
|
59 |
array(
|
60 |
+
'title' => __( 'Advanced Settings', 'olympus-google-fonts' ),
|
61 |
+
'priority' => '3',
|
62 |
+
'panel' => 'ogf_google_fonts',
|
63 |
)
|
64 |
);
|
65 |
|
66 |
$wp_customize->add_panel( $ogf_advanced_panel );
|
67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
$wp_customize->add_section(
|
69 |
'ogf_custom',
|
70 |
array(
|
71 |
'title' => esc_html__( 'Custom Elements', 'olympus-google-fonts' ),
|
72 |
+
'priority' => '5',
|
73 |
/* Translators: %s Custom Elements Customizer Panel URL */
|
74 |
'description' => sprintf( __( 'Define your Custom Elements here and then customize them under <a href="%s">Advanced Settings → Custom Elements</a>.', 'olympus-google-fonts' ), esc_url( admin_url( '/customize.php?autofocus[section]=ogf_advanced__custom' ) ) ),
|
75 |
'panel' => 'ogf_google_fonts',
|
80 |
'ogf_font_loading',
|
81 |
array(
|
82 |
'title' => esc_html__( 'Font Loading', 'olympus-google-fonts' ),
|
83 |
+
'priority' => '6',
|
84 |
'description' => 'Optimize your site\'s performance by unchecking any font weights you don\'t need.',
|
85 |
'panel' => 'ogf_google_fonts',
|
86 |
)
|
89 |
$wp_customize->add_section(
|
90 |
'ogf_debugging',
|
91 |
array(
|
92 |
+
'title' => esc_html__( 'Debugging', 'olympus-google-fonts' ),
|
93 |
+
'priority' => '7',
|
94 |
+
'panel' => 'ogf_google_fonts',
|
95 |
)
|
96 |
);
|
97 |
|
languages/olympus-google-fonts.pot
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
# This file is distributed under the same license as the Google Fonts for WordPress plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Google Fonts for WordPress 1.6.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/olympus-google-fonts\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2019-04-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.1.0\n"
|
15 |
"X-Domain: olympus-google-fonts\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
-
#: includes/class-ogf-notifications.php:
|
19 |
msgid "Google Fonts for WordPress"
|
20 |
msgstr ""
|
21 |
|
@@ -252,46 +252,45 @@ msgstr ""
|
|
252 |
msgid "a day"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-ogf-notifications.php:
|
256 |
msgid "Google Fonts WordPress Plugin"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-ogf-notifications.php:
|
260 |
msgid "Are you enjoying using Google Fonts?"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: 1. Name, 2. Time
|
264 |
-
#: includes/class-ogf-notifications.php:
|
265 |
msgid "You have been using <strong>%1$s</strong> for %2$s now! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/class-ogf-notifications.php:
|
269 |
msgid "Leave a Review"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: includes/class-ogf-notifications.php:
|
273 |
msgid "No thanks / I already have"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/class-ogf-notifications.php:
|
277 |
-
#: includes/class-ogf-notifications.php:
|
278 |
msgid "Host Google Fonts Locally"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-ogf-notifications.php:
|
282 |
msgid "Speed Up Your Website!"
|
283 |
msgstr ""
|
284 |
|
285 |
-
|
286 |
-
|
287 |
-
msgid "Our latest <strong>free</strong> addon allows you to host Google Fonts locally.<br>This removes the requests to Google's servers and can equal faster load times."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-ogf-notifications.php:
|
291 |
msgid "Install Now"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-ogf-notifications.php:
|
295 |
msgid "No thank you."
|
296 |
msgstr ""
|
297 |
|
@@ -309,61 +308,61 @@ msgid "Google Fonts"
|
|
309 |
msgstr ""
|
310 |
|
311 |
#: includes/customizer/panels.php:41
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
#: includes/customizer/panels.php:50
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
#: includes/customizer/panels.php:60
|
320 |
-
msgid "
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/customizer/panels.php:
|
324 |
-
#: includes/customizer/panels.php:
|
325 |
msgid "Custom Elements"
|
326 |
msgstr ""
|
327 |
|
328 |
#. Translators: %s Custom Elements Customizer Panel URL
|
329 |
-
#: includes/customizer/panels.php:
|
330 |
msgid "Define your Custom Elements here and then customize them under <a href=\"%s\">Advanced Settings → Custom Elements</a>."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/customizer/panels.php:
|
334 |
msgid "Font Loading"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/customizer/panels.php:
|
338 |
msgid "Debugging"
|
339 |
msgstr ""
|
340 |
|
341 |
#. Translators: %s Custom Elements Customizer Panel URL
|
342 |
-
#: includes/customizer/panels.php:
|
343 |
msgid "Custom Elements allow you to apply Google Fonts to any part of your website, they can be setup under <a href=\"%s\">Google Fonts → Custom Elements</a>."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/customizer/panels.php:
|
347 |
msgid "Theme Elements"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/customizer/panels.php:
|
351 |
msgid "Branding"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/customizer/panels.php:
|
355 |
msgid "Navigation"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/customizer/panels.php:
|
359 |
msgid "Content"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/customizer/panels.php:
|
363 |
msgid "Sidebar"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/customizer/panels.php:
|
367 |
msgid "Footer"
|
368 |
msgstr ""
|
369 |
|
2 |
# This file is distributed under the same license as the Google Fonts for WordPress plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Google Fonts for WordPress 1.6.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/olympus-google-fonts\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2019-04-25T09:07:31+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.1.0\n"
|
15 |
"X-Domain: olympus-google-fonts\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
+
#: includes/class-ogf-notifications.php:300
|
19 |
msgid "Google Fonts for WordPress"
|
20 |
msgstr ""
|
21 |
|
252 |
msgid "a day"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/class-ogf-notifications.php:229
|
256 |
msgid "Google Fonts WordPress Plugin"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/class-ogf-notifications.php:232
|
260 |
msgid "Are you enjoying using Google Fonts?"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: 1. Name, 2. Time
|
264 |
+
#: includes/class-ogf-notifications.php:236
|
265 |
msgid "You have been using <strong>%1$s</strong> for %2$s now! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/class-ogf-notifications.php:241
|
269 |
msgid "Leave a Review"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/class-ogf-notifications.php:242
|
273 |
msgid "No thanks / I already have"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/class-ogf-notifications.php:261
|
277 |
+
#: includes/class-ogf-notifications.php:309
|
278 |
msgid "Host Google Fonts Locally"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-ogf-notifications.php:264
|
282 |
msgid "Speed Up Your Website!"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-ogf-notifications.php:267
|
286 |
+
msgid "Our latest <strong>free</strong> addon allows you to host Google Fonts locally.<br>This removes the requests to Google's servers and can improve page speed."
|
|
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/class-ogf-notifications.php:272
|
290 |
msgid "Install Now"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-ogf-notifications.php:273
|
294 |
msgid "No thank you."
|
295 |
msgstr ""
|
296 |
|
308 |
msgstr ""
|
309 |
|
310 |
#: includes/customizer/panels.php:41
|
311 |
+
msgid "Theme Settings"
|
312 |
msgstr ""
|
313 |
|
314 |
#: includes/customizer/panels.php:50
|
315 |
+
msgid "Basic Settings"
|
316 |
msgstr ""
|
317 |
|
318 |
#: includes/customizer/panels.php:60
|
319 |
+
msgid "Advanced Settings"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: includes/customizer/panels.php:71
|
323 |
+
#: includes/customizer/panels.php:101
|
324 |
msgid "Custom Elements"
|
325 |
msgstr ""
|
326 |
|
327 |
#. Translators: %s Custom Elements Customizer Panel URL
|
328 |
+
#: includes/customizer/panels.php:74
|
329 |
msgid "Define your Custom Elements here and then customize them under <a href=\"%s\">Advanced Settings → Custom Elements</a>."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: includes/customizer/panels.php:82
|
333 |
msgid "Font Loading"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/customizer/panels.php:92
|
337 |
msgid "Debugging"
|
338 |
msgstr ""
|
339 |
|
340 |
#. Translators: %s Custom Elements Customizer Panel URL
|
341 |
+
#: includes/customizer/panels.php:103
|
342 |
msgid "Custom Elements allow you to apply Google Fonts to any part of your website, they can be setup under <a href=\"%s\">Google Fonts → Custom Elements</a>."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/customizer/panels.php:111
|
346 |
msgid "Theme Elements"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/customizer/panels.php:119
|
350 |
msgid "Branding"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: includes/customizer/panels.php:127
|
354 |
msgid "Navigation"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/customizer/panels.php:135
|
358 |
msgid "Content"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: includes/customizer/panels.php:143
|
362 |
msgid "Sidebar"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/customizer/panels.php:151
|
366 |
msgid "Footer"
|
367 |
msgstr ""
|
368 |
|
olympus-google-fonts.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin Name: Google Fonts for WordPress
|
6 |
* Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
|
7 |
* Description: The easiest to use Google Fonts plugin. No coding required. 870+ font choices.
|
8 |
-
* Version: 1.6.
|
9 |
* Author: Fonts Plugin
|
10 |
* Author URI: https://fontsplugin.com/?utm_source=wporg&utm_campaign=heading
|
11 |
* Text Domain: olympus-google-fonts
|
@@ -18,7 +18,7 @@
|
|
18 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
19 |
*/
|
20 |
|
21 |
-
define( 'OGF_VERSION', '1.6.
|
22 |
define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
|
23 |
define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
|
24 |
|
5 |
* Plugin Name: Google Fonts for WordPress
|
6 |
* Plugin URI: https://wordpress.org/plugins/olympus-google-fonts/
|
7 |
* Description: The easiest to use Google Fonts plugin. No coding required. 870+ font choices.
|
8 |
+
* Version: 1.6.3
|
9 |
* Author: Fonts Plugin
|
10 |
* Author URI: https://fontsplugin.com/?utm_source=wporg&utm_campaign=heading
|
11 |
* Text Domain: olympus-google-fonts
|
18 |
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
|
19 |
*/
|
20 |
|
21 |
+
define( 'OGF_VERSION', '1.6.3' );
|
22 |
define( 'OGF_DIR_PATH', plugin_dir_path( __FILE__ ) );
|
23 |
define( 'OGF_DIR_URL', plugin_dir_url( __FILE__ ) );
|
24 |
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Google Fonts for WordPress ===
|
2 |
Contributors: DannyCooper, googlefonts
|
3 |
-
Tags: google, fonts, google fonts, google fonts for wordpress,
|
4 |
Donate link: https://fontsplugin.com/#pricing
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
License: GPLv2 or later
|
8 |
-
Stable tag: 1.6.
|
9 |
|
10 |
The easiest to use Google Fonts Plugin. No coding required. 870+ font choices.
|
11 |
|
@@ -33,8 +33,10 @@ The full Google Fonts library can be found here - [Google Fonts](https://fonts.g
|
|
33 |
* Tested with **PHP7**
|
34 |
* Selective Font Loading
|
35 |
* Preconnect Resource Hints
|
|
|
|
|
36 |
|
37 |
-
> Note: some features are Premium. Which means you need to upgrade to unlock those features. You can upgrade here: [Google Fonts Pro](https://fontsplugin.com/upgrade/?utm_source=wporg&utm_campaign=upgrade)
|
38 |
|
39 |
= Plugin Compatibility =
|
40 |
|
@@ -50,9 +52,9 @@ The Google Fonts for WordPress plugin will work with all WordPress themes and ha
|
|
50 |
|
51 |
For more info on Google Fonts for Wordpress, check out the following:
|
52 |
|
53 |
-
* [Documentation](https://fontsplugin.com/docs
|
54 |
-
* [Font Combinations](https://fontsplugin.com/font-combinations
|
55 |
-
* [How to Use Google Fonts in WordPress](https://fontsplugin.com/wordpress-google-fonts
|
56 |
|
57 |
= Bugs =
|
58 |
If you find an issue with Google Fonts for WordPress, let us know [here](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)!
|
@@ -88,7 +90,7 @@ We are 99.99% certain it will, if it doesn't then please create a [support ticke
|
|
88 |
|
89 |
1. Instant Live Preview - Google Fonts for WordPress
|
90 |
2. Customizer Settings Search - Google Fonts for WordPress
|
91 |
-
3. Customizer Settings Font Weight and Style
|
92 |
|
93 |
== Changelog ==
|
94 |
|
1 |
=== Google Fonts for WordPress ===
|
2 |
Contributors: DannyCooper, googlefonts
|
3 |
+
Tags: google, fonts, google fonts, google fonts for wordpress, typography
|
4 |
Donate link: https://fontsplugin.com/#pricing
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.1
|
7 |
License: GPLv2 or later
|
8 |
+
Stable tag: 1.6.3
|
9 |
|
10 |
The easiest to use Google Fonts Plugin. No coding required. 870+ font choices.
|
11 |
|
33 |
* Tested with **PHP7**
|
34 |
* Selective Font Loading
|
35 |
* Preconnect Resource Hints
|
36 |
+
* Host Google Fonts Locally
|
37 |
+
* Font Size, Weight, Color and Line Height Typography Settings
|
38 |
|
39 |
+
> Note: some features are Premium. Which means you need to upgrade to unlock those features. You can upgrade here: [Google Fonts Pro](https://fontsplugin.com/pro-upgrade/?utm_source=wporg&utm_campaign=upgrade)
|
40 |
|
41 |
= Plugin Compatibility =
|
42 |
|
52 |
|
53 |
For more info on Google Fonts for Wordpress, check out the following:
|
54 |
|
55 |
+
* [Documentation](https://fontsplugin.com/docs/?utm_source=wporg)
|
56 |
+
* [Font Combinations](https://fontsplugin.com/font-combinations/?utm_source=wporg)
|
57 |
+
* [How to Use Google Fonts in WordPress](https://fontsplugin.com/wordpress-google-fonts/?utm_source=wporg)
|
58 |
|
59 |
= Bugs =
|
60 |
If you find an issue with Google Fonts for WordPress, let us know [here](https://wordpress.org/support/plugin/olympus-google-fonts#new-post)!
|
90 |
|
91 |
1. Instant Live Preview - Google Fonts for WordPress
|
92 |
2. Customizer Settings Search - Google Fonts for WordPress
|
93 |
+
3. Customizer Settings Font Weight and Style Typography Settings
|
94 |
|
95 |
== Changelog ==
|
96 |
|