From 907eabeebd2abc5a8b8ad393a1c13c64aa330aa2 Mon Sep 17 00:00:00 2001
From: Guy Primavera <17991356+GuyPrimavera@users.noreply.github.com>
Date: Tue, 13 Nov 2018 16:18:19 +0000
Subject: [PATCH] v2.3
---
admin/adminBar.php | 3 +
admin/adminBar/adminBarIcon.php | 35 ++
admin/adminBar/adminBarLinks.php | 56 +--
admin/adminBar/adminBarStyle.php | 20 +
admin/adminBar/adminBarTitle.php | 31 --
admin/adminBar/customLogo.php | 111 +++++
admin/adminBar/removeHowdy.php | 1 -
admin/adminBar/screenLinks.php | 5 -
admin/colour/bright.php | 7 +-
admin/colour/colourScheme.php | 67 +--
admin/colour/isDark.php | 5 +-
admin/colour/lum.php | 4 +-
admin/colour/mdColours.php | 2 +-
admin/dashboard.php | 2 -
admin/functions/addClasses.php | 13 -
admin/functions/footer.php | 7 +-
admin/functions/hideNag.php | 7 +-
admin/functions/pluginList.php | 5 -
admin/functions/postToBlog.php | 24 +-
admin/options/callbacks.php | 20 +
admin/options/createFields.php | 56 +++
admin/options/createOptionsPage.php | 45 ++
admin/options/help.php | 67 +++
admin/options/helpers.php | 80 ++++
admin/options/options.php | 10 +
admin/options/registerSettings.php | 197 +++++++++
admin/widgets/pluginWidget.php | 16 +-
admin/widgets/removeWidgets.php | 53 ++-
admin/widgets/welcomeWidget.php | 19 +-
aquila-admin-theme.php | 11 +-
css/adminBar.css | 72 +++-
css/adminBar.less | 64 ++-
css/aquila.css | 224 ++++++++--
css/aquila.less | 207 +++++++++-
css/login.css | 15 +-
css/login.less | 8 +
css/vars.css | 9 +-
css/vars.less | 8 +-
js/calls.js | 182 +++-----
...min-theme-en_GB-backup-201811131454080.po~ | 317 ++++++++++++++
lang/aquila-admin-theme-en_GB.mo | Bin 751 -> 5355 bytes
lang/aquila-admin-theme-en_GB.po | 385 +++++++++++------
...min-theme-it_IT-backup-201811131506370.po~ | 317 ++++++++++++++
lang/aquila-admin-theme-it_IT.mo | Bin 3356 -> 5753 bytes
lang/aquila-admin-theme-it_IT.po | 388 ++++++++++++------
lang/aquila-admin-theme.pot | 318 ++++++++++++++
login/aquila-login-screen.php | 3 +-
readme.txt | 47 ++-
scripts.php | 43 +-
49 files changed, 2879 insertions(+), 707 deletions(-)
create mode 100644 admin/adminBar/adminBarIcon.php
create mode 100644 admin/adminBar/adminBarStyle.php
create mode 100644 admin/adminBar/customLogo.php
create mode 100644 admin/options/callbacks.php
create mode 100644 admin/options/createFields.php
create mode 100644 admin/options/createOptionsPage.php
create mode 100644 admin/options/help.php
create mode 100644 admin/options/helpers.php
create mode 100644 admin/options/options.php
create mode 100644 admin/options/registerSettings.php
create mode 100644 lang/aquila-admin-theme-en_GB-backup-201811131454080.po~
create mode 100644 lang/aquila-admin-theme-it_IT-backup-201811131506370.po~
create mode 100644 lang/aquila-admin-theme.pot
diff --git a/admin/adminBar.php b/admin/adminBar.php
index 39646b1..c860eb1 100644
--- a/admin/adminBar.php
+++ b/admin/adminBar.php
@@ -1,5 +1,8 @@
+ .aquilaFront #wpadminbar {
+ display: block;
+ }
+ ';
+ }
+ echo '
';
+ }
+}
+add_action( 'admin_bar_menu', 'aquila_adminbar_icon', 999 );
+
+// Add body class
+function aquila_adminbar_open_class( $classes ) {
+ if ( is_admin_bar_showing() ) {
+ $aquilaOptions = get_option( 'aquila_settings' );
+ if(isset($aquilaOptions['aquila_chk_abVisible']) && $aquilaOptions['aquila_chk_abVisible'] == 1) {
+ $classes[] = 'aquilaOpenBar';
+ } else {
+ $classes[] = 'aquilaClosedBar';
+ }
+ return $classes;
+ } else {
+ return $classes;
+ }
+}
+add_filter('body_class', 'aquila_adminbar_open_class');
+
+?>
\ No newline at end of file
diff --git a/admin/adminBar/adminBarLinks.php b/admin/adminBar/adminBarLinks.php
index d1fed7a..19e6fd1 100644
--- a/admin/adminBar/adminBarLinks.php
+++ b/admin/adminBar/adminBarLinks.php
@@ -1,46 +1,35 @@
remove_menu('updates');
- $wp_admin_bar->remove_menu('comments');
- $wp_admin_bar->remove_menu('new-content');
- $wp_admin_bar->remove_menu('vc_inline-admin-bar-link');
- $wp_admin_bar->remove_menu('revslider');
- $wp_admin_bar->remove_menu('customize');
- $wp_admin_bar->remove_menu('themes');
- $wp_admin_bar->remove_menu('widgets');
- $wp_admin_bar->remove_menu('menus');
- $wp_admin_bar->remove_menu('wpseo-menu');
- $wp_admin_bar->remove_menu('ngg-menu');
- $wp_admin_bar->remove_menu('w3tc');
- $wp_admin_bar->remove_menu('all-in-one-seo-pack');
- $wp_admin_bar->remove_menu('updraft_admin_node');
- $wp_admin_bar->remove_menu('customer-area');
- $wp_admin_bar->remove_menu('itsec_admin_bar_menu');
- $wp_admin_bar->remove_menu('maintenance_options');
- $wp_admin_bar->remove_menu('tribe-events');
- $wp_admin_bar->remove_menu('analytify');
- $wp_admin_bar->remove_menu('cxssh-main-menu');
+ add_action( 'admin_bar_menu', 'aquila_admin_bar_cleanup', 200 );
+ function aquila_admin_bar_cleanup()
+ {
+ global $wp_admin_bar;
+ if ( !is_object( $wp_admin_bar ) ) {
+ return;
+ }
+
+ $nodes = $wp_admin_bar->get_nodes();
+ $nodesKeep = array('wp-logo', 'site-name', 'adminTitle', 'screenOptions', 'contextHelp', 'menu-toggle', 'my-account', 'view', 'edit');
+
+ foreach( $nodes as $node )
+ {
+ if( (!$node->parent || 'top-secondary' == $node->parent) && (!in_array($node->id, $nodesKeep)) ) {
+ $wp_admin_bar->remove_menu( $node->id );
+ //echo $node->id . ' ';
+ }
+ }
}
- add_action( 'wp_before_admin_bar_render', 'aquila_admin_bar_links', 999 );
-
}
// Remove nodes
-
add_action( 'admin_bar_menu', 'aquila_remove_wp_logo_nodes', 999 );
-
-function aquila_remove_wp_logo_nodes()
-{
+function aquila_remove_wp_logo_nodes() {
global $wp_admin_bar;
$wp_admin_bar->remove_node( 'about' );
$wp_admin_bar->remove_node( 'wporg' );
@@ -50,10 +39,8 @@ function aquila_remove_wp_logo_nodes()
}
// Add Aquila links
-
add_action('admin_bar_menu', 'aquila_wp_logo_links', 100);
function aquila_wp_logo_links($admin_bar){
-
$admin_bar->add_menu( array(
'id' => 'wpLessons',
'parent'=> 'wp-logo',
@@ -65,7 +52,6 @@ function aquila_wp_logo_links($admin_bar){
'target' => __('_blank'),
),
));
-
$admin_bar->add_menu( array(
'id' => 'wpGuide',
'parent'=> 'wp-logo',
@@ -77,7 +63,6 @@ function aquila_wp_logo_links($admin_bar){
'target' => __('_blank'),
),
));
-
$admin_bar->add_menu( array(
'id' => 'mitoSupport',
'parent'=> 'wp-logo-external',
@@ -89,7 +74,6 @@ function aquila_wp_logo_links($admin_bar){
'target' => __('_blank'),
),
));
-
}
?>
\ No newline at end of file
diff --git a/admin/adminBar/adminBarStyle.php b/admin/adminBar/adminBarStyle.php
new file mode 100644
index 0000000..62622b4
--- /dev/null
+++ b/admin/adminBar/adminBarStyle.php
@@ -0,0 +1,20 @@
+
+ html { margin-top: 0px !important; }
+ * html body { margin-top: 0px !important; }
+ @media screen and ( max-width: 782px ) {
+ html { margin-top: 0px !important; }
+ * html body { margin-top: 0px !important; }
+ }
+
+ ";
+ }
+}
+add_action( 'wp_head', 'aquila_admin_bar', 99 );
+remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );
+
+?>
\ No newline at end of file
diff --git a/admin/adminBar/adminBarTitle.php b/admin/adminBar/adminBarTitle.php
index 8090f33..c9ae724 100644
--- a/admin/adminBar/adminBarTitle.php
+++ b/admin/adminBar/adminBarTitle.php
@@ -5,15 +5,12 @@
}
function aquila_adminbar_title($admin_bar){
-
$postType = false;
$postType = get_current_screen()->post_type;
$postTypeName = get_post_type_object( $postType );
$adminTitle = false;
$adminTitle = get_admin_page_title();
-
if ($adminTitle !== false && $postType !== false && is_admin()) {
-
$admin_bar->add_menu( array(
'id' => 'adminTitle',
'title' => $adminTitle,
@@ -22,34 +19,6 @@ function aquila_adminbar_title($admin_bar){
'title' => __($adminTitle),
),
));
-
-/*
- if ($postType !== false) {
-
- $admin_bar->add_menu( array(
- 'id' => 'viewAll',
- 'parent' => 'adminTitle', // Rename when ready for "Add new"
- 'title' => 'All ' . $postTypeName->labels->name,
- 'href' => get_admin_url( ) . 'edit.php?post_type=' . $postType,
- 'meta' => array(
- 'title' => __('My Sub Menu Item'),
- 'target' => '_blank',
- 'class' => 'my_menu_item_class'
- ),
- ));
- $admin_bar->add_menu( array(
- 'id' => 'my-second-sub-item',
- 'parent' => 'adminTitle',
- 'title' => 'New ' . $postTypeName->labels->singular_name,
- 'href' => get_admin_url( ) . 'post-new.php?post_type=' . $postType,
- 'meta' => array(
- 'title' => __('My Second Sub Menu Item'),
- 'target' => '_blank',
- 'class' => 'my_menu_item_class'
- ),
- ));
- }
- */
}
}
diff --git a/admin/adminBar/customLogo.php b/admin/adminBar/customLogo.php
new file mode 100644
index 0000000..0c22a38
--- /dev/null
+++ b/admin/adminBar/customLogo.php
@@ -0,0 +1,111 @@
+
+ #wpadminbar li#wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ display: none!important;
+ }
+ #wpadminbar #wp-toolbar li#wp-admin-bar-wp-logo > .ab-item span.ab-icon {
+ background-image: url('" . $GLOBALS['aquilaNewLogo'] . "')!important;
+ background-size: contain;
+ background-repeat: no-repeat;
+ background-position: center center;
+ margin: 0%!important;
+ max-width: 80%;
+ height: 70%;
+ top: 15%;
+ left: 10%;
+ }
+ #aquilaAdminbarIcon {
+ background-image: url('" . $GLOBALS['aquilaNewLogoSqr'] . "')!important;
+ background-size: 40px;
+ background-repeat: no-repeat;
+ background-position: center center;
+ }
+ #aquilaAdminbarIcon:before {
+ display: none!important;
+ }
+ body.folded #wpadminbar li#wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
+ display: none!important;
+ }
+ body.folded #wpadminbar #wp-toolbar li#wp-admin-bar-wp-logo > .ab-item span.ab-icon {
+ background-image: url('" . $GLOBALS['aquilaNewLogoSqr'] . "')!important;
+ background-size: contain;
+ background-repeat: no-repeat;
+ background-position: center center;
+ margin: 0%!important;
+ max-width: 80%;
+ height: 70%;
+ top: 15%;
+ left: 10%;
+ }
+ ";
+}
+
+// Login screen
+function aquila_new_logo_login() {
+ echo "";
+}
+
+function aquila_new_logo_sqr_admin() {
+ echo "";
+}
+
+?>
\ No newline at end of file
diff --git a/admin/adminBar/removeHowdy.php b/admin/adminBar/removeHowdy.php
index 5cbf5bd..91795a6 100644
--- a/admin/adminBar/removeHowdy.php
+++ b/admin/adminBar/removeHowdy.php
@@ -1,7 +1,6 @@
add_menu( array(
'id' => 'screenOptions',
'title' => '',
@@ -12,7 +11,6 @@ function new_screenlinks($admin_bar){
'class' => __('screenLink'),
),
));
-
$admin_bar->add_menu( array(
'id' => 'contextHelp',
'title' => '',
@@ -22,9 +20,6 @@ function new_screenlinks($admin_bar){
'class' => __('screenLink'),
),
));
-
-
-
}
?>
\ No newline at end of file
diff --git a/admin/colour/bright.php b/admin/colour/bright.php
index 3541e07..8064cd8 100644
--- a/admin/colour/bright.php
+++ b/admin/colour/bright.php
@@ -1,24 +1,19 @@
-setFormatter("compressed");
@@ -129,9 +133,7 @@ function colourSchemeCSS() {
echo '';
-} ?>
+}
+
+?>
\ No newline at end of file
diff --git a/admin/colour/isDark.php b/admin/colour/isDark.php
index 4170dee..2785b8b 100644
--- a/admin/colour/isDark.php
+++ b/admin/colour/isDark.php
@@ -1,7 +1,6 @@
-
\ No newline at end of file
diff --git a/admin/colour/lum.php b/admin/colour/lum.php
index 098204f..ebbcda2 100644
--- a/admin/colour/lum.php
+++ b/admin/colour/lum.php
@@ -1,9 +1,7 @@
-
\ No newline at end of file
diff --git a/admin/functions/addClasses.php b/admin/functions/addClasses.php
index e13bac5..1dbc48f 100644
--- a/admin/functions/addClasses.php
+++ b/admin/functions/addClasses.php
@@ -1,38 +1,25 @@
roles);
-
$classes .= 'aquila aquilaAdmin';
return $classes;
-
}
//add_filter('body_class','aquila_admin_body_role');
add_filter('admin_body_class', 'aquila_admin_body_role');
-
function aquila_front_body_class( $classes ) {
-
-
if ( is_admin_bar_showing() ) {
-
//global $current_user;
//$userRole = array_shift($current_user->roles);
-
$classes[] = 'aquila aquilaFront';
return $classes;
-
} else {
-
$classes[] = ' ';
return $classes;
-
}
-
}
add_filter('body_class', 'aquila_front_body_class');
diff --git a/admin/functions/footer.php b/admin/functions/footer.php
index 8797617..a9cbb72 100644
--- a/admin/functions/footer.php
+++ b/admin/functions/footer.php
@@ -1,19 +1,14 @@
design by Mito';
}
add_filter('admin_footer_text', 'aquila_admin_footer_admin');
-
}
-
?>
\ No newline at end of file
diff --git a/admin/functions/hideNag.php b/admin/functions/hideNag.php
index b48839f..2d10d9f 100644
--- a/admin/functions/hideNag.php
+++ b/admin/functions/hideNag.php
@@ -1,13 +1,10 @@
\ No newline at end of file
diff --git a/admin/functions/pluginList.php b/admin/functions/pluginList.php
index 16d4b29..48cc96a 100644
--- a/admin/functions/pluginList.php
+++ b/admin/functions/pluginList.php
@@ -8,23 +8,18 @@
$allPlugins = get_plugins();
$allPluginsKeys = array_keys($allPlugins);
-
$Count = 0;
foreach ($allPlugins as $pluginItem) {
-
$pluginRootFile = $allPluginsKeys[$Count];
$pluginTitle = $pluginItem['Title'];
$pluginVersion = $pluginItem['Version'];
$pluginURI = $pluginItem['PluginURI'];
$pluginDomain = $pluginItem['TextDomain'];
$pluginStatus = is_plugin_active($pluginRootFile) ? 'active' : 'inactive';
-
if (($pluginStatus == "active") && ($pluginURI)) {
echo "" . $pluginTitle . " ";
}
-
//echo print_r($allPlugins, true);
-
$Count++;
}
diff --git a/admin/functions/postToBlog.php b/admin/functions/postToBlog.php
index 95ba591..568b1f0 100644
--- a/admin/functions/postToBlog.php
+++ b/admin/functions/postToBlog.php
@@ -3,21 +3,23 @@
$aquilaOptions = get_option( 'aquila_settings' );
if(isset($aquilaOptions['aquila_chk_postBlog']) && $aquilaOptions['aquila_chk_postBlog'] == 1){
-
+ // do nothing
} else {
-
function aquila_admin_post_to_blog() {
global $menu;
//global $submenu;
-
if (isset($menu[5][5]) && $menu[5][5] === "menu-posts" && current_user_can("edit_posts")) {
$menu[5][0] = 'Blog';
- $submenu['edit.php'][5][0] = __( 'Blog', 'aquila-admin-theme' );
- $submenu['edit.php'][10][0] = __( 'Add Blog Post', 'aquila-admin-theme' );
- $submenu['edit.php'][16][0] = __( 'Blog Tags', 'aquila-admin-theme' );
- echo '';
- } // Thanks Aaron Queen
-
+ if (isset($submenu['edit.php'][5])) {
+ $submenu['edit.php'][5][0] = __( 'Blog', 'aquila-admin-theme' );
+ }
+ if (isset($submenu['edit.php'][10])) {
+ $submenu['edit.php'][10][0] = __( 'Add Blog Post', 'aquila-admin-theme' );
+ }
+ if (isset($submenu['edit.php'][16])) {
+ $submenu['edit.php'][16][0] = __( 'Blog Tags', 'aquila-admin-theme' );
+ }
+ }
}
function aquila_admin_blog_object() {
global $wp_post_types;
@@ -36,19 +38,15 @@ function aquila_admin_blog_object() {
$labels->menu_name = __( 'Blog', 'aquila-admin-theme' );
$labels->name_admin_bar = __( 'Blog', 'aquila-admin-theme' );
}
-
add_action( 'admin_menu', 'aquila_admin_post_to_blog' );
add_action( 'init', 'aquila_admin_blog_object' );
-
}
// Format meta box
-
function aquila_admin_blog_meta_boxes() {
remove_meta_box( 'formatdiv' , 'post' , 'normal' );
remove_meta_box( 'mymetabox_revslider_0' , 'post' , 'normal' );
}
add_action( 'admin_menu' , 'aquila_admin_blog_meta_boxes' );
-
?>
\ No newline at end of file
diff --git a/admin/options/callbacks.php b/admin/options/callbacks.php
new file mode 100644
index 0000000..91629fb
--- /dev/null
+++ b/admin/options/callbacks.php
@@ -0,0 +1,20 @@
+
\ No newline at end of file
diff --git a/admin/options/createFields.php b/admin/options/createFields.php
new file mode 100644
index 0000000..c80bf0e
--- /dev/null
+++ b/admin/options/createFields.php
@@ -0,0 +1,56 @@
+
\ No newline at end of file
diff --git a/admin/options/createOptionsPage.php b/admin/options/createOptionsPage.php
new file mode 100644
index 0000000..61b878d
--- /dev/null
+++ b/admin/options/createOptionsPage.php
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/admin/options/help.php b/admin/options/help.php
new file mode 100644
index 0000000..27f07bf
--- /dev/null
+++ b/admin/options/help.php
@@ -0,0 +1,67 @@
+';
+ aquila_help_box (
+ 'https://wordpress.org/plugins/aquila-admin-theme/',
+ __( 'View this plugin on WordPress.org', 'aquila-admin-theme' ),
+ __( 'See the features and recent updates.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://wordpress.org/support/plugin/aquila-admin-theme',
+ __( 'View the support forum', 'aquila-admin-theme' ),
+ __( 'On WordPress.org.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://wordpress.org/support/plugin/aquila-admin-theme#new-post',
+ __( 'Ask a question', 'aquila-admin-theme' ),
+ __( 'Something not working? Let me know.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://wordpress.org/plugins/aquila-admin-theme/#developers',
+ __( 'See the ChangeLog', 'aquila-admin-theme' ),
+ __( 'See what\'s changed.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://translate.wordpress.org/projects/wp-plugins/aquila-admin-theme',
+ __( 'Translate into your language', 'aquila-admin-theme' ),
+ __( 'Je voudrais un sandwich.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://github.com/GuyPrimavera/aquila-admin-theme',
+ __( 'View the source code on GitHub', 'aquila-admin-theme' ),
+ __( 'It\'s a hub for gits.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://plugins.trac.wordpress.org/browser/aquila-admin-theme/',
+ __( 'View the source code on WP Trac', 'aquila-admin-theme' ),
+ __( 'Similar to GitHub.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://plugins.trac.wordpress.org/log/aquila-admin-theme/',
+ __( 'View the development log', 'aquila-admin-theme' ),
+ __( 'On WordPress.org.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://wordpress.org/plugins/aquila-admin-theme/advanced/#plugin-download-history-stats',
+ __( 'Previous versions', 'aquila-admin-theme' ),
+ __( 'Download an older version of the plugin.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://guyprimavera.com/projects/wordpress-plugins/aquila-admin-theme/',
+ __( 'View the plugin\'s web page', 'aquila-admin-theme' ),
+ __( 'On GuyPrimavera.com.', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://wordpress.org/support/plugin/aquila-admin-theme/reviews/#new-post',
+ __( 'Leave a review', 'aquila-admin-theme' ),
+ __( 'Let me know what you think!', 'aquila-admin-theme' )
+ );
+ aquila_help_box (
+ 'https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YVPWSJB4SPN5N',
+ __( 'Donate towards this plugin', 'aquila-admin-theme' ),
+ __( 'This full-version is free to use, but every little helps!', 'aquila-admin-theme' )
+ );
+ echo '';
+}
+?>
diff --git a/admin/options/helpers.php b/admin/options/helpers.php
new file mode 100644
index 0000000..85b4d7e
--- /dev/null
+++ b/admin/options/helpers.php
@@ -0,0 +1,80 @@
+';
+ echo ''. $helpText .' ';
+}
+
+// Create image uploaders
+function aquila_img_upload( $optionGroup, $optionName ) {
+ $options = get_option( $optionGroup );
+ $aquilaColourSettings = get_option( 'aquilaColourSettings' );
+ //$aquilaPrimary = $aquilaColourSettings['aquila_primary_colour'];
+ //$aquilaSecondary = $aquilaColourSettings['aquila_secondary_colour'];
+ $aquilaMenuBack = $aquilaColourSettings['aquila_menu_back_colour'];
+ if ( isset ( $options[$optionName] ) ) {
+ $imgSrc = $options[$optionName];
+ } else {
+ $imgSrc = 'none';
+ };
+ echo '
+ '. __( 'Upload logo', 'aquila-admin-theme' ) .'
+ '. __( 'Remove logo', 'aquila-admin-theme' ) .'
+ ';
+ echo wp_get_attachment_url( get_option( 'media_selector_attachment_id' ) );
+}
+
+// Create colour pickers
+function aquila_colour_picker( $optionGroup, $optionName ) {
+ $options = get_option( $optionGroup );
+ if ( isset ( $options[$optionName] ) && ( $options[$optionName] !== '' ) ) {
+ $colour = $options[$optionName];
+ } else {
+ switch ($optionName) {
+ case 'aquila_primary_colour':
+ $colour = '#ffee58';
+ break;
+ case 'aquila_secondary_colour':
+ $colour = '#0091ea';
+ break;
+ case 'aquila_background_colour':
+ $colour = '#f5f5f5';
+ break;
+ case 'aquila_text_colour':
+ $colour = '#23282d';
+ break;
+ case 'aquila_menu_back_colour':
+ $colour = '#616161';
+ break;
+ case 'aquila_menu_text_colour':
+ $colour = '#ffffff';
+ break;
+ default:
+ $colour = '#000';
+ }
+ };
+ echo ' ';
+}
+
+// Help section helper
+function aquila_help_box( $url, $title, $subtitle ) {
+ echo '
+
+
+ '. $title . '
+ '. $subtitle .'
+
+
+ ';
+}
+
+?>
\ No newline at end of file
diff --git a/admin/options/options.php b/admin/options/options.php
new file mode 100644
index 0000000..786732d
--- /dev/null
+++ b/admin/options/options.php
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/admin/options/registerSettings.php b/admin/options/registerSettings.php
new file mode 100644
index 0000000..6d2a4cb
--- /dev/null
+++ b/admin/options/registerSettings.php
@@ -0,0 +1,197 @@
+ ' . __( 'Aquila', 'aquila-admin-theme' ),
+ 'manage_options',
+ 'aquilaSettings',
+ 'aquila_options_page'
+ );
+}
+
+function aquila_settings_init( ) {
+
+ // Add settings sections
+ /*add_settings_section(
+ 'aquila_aquilaGeneralSettings_section',
+ __( 'General Settings', 'aquila-admin-theme' ),
+ 'aquilaGeneralCallback',
+ 'aquilaGeneralSettings'
+ );*/
+ add_settings_section(
+ 'aquila_dashboardSettings_section',
+ __( 'Dashboard', 'aquila-admin-theme' ),
+ 'aquilaDashboardCallback',
+ 'aquilaGeneralSettings'
+ );
+ add_settings_section(
+ 'aquila_adminbarSettings_section',
+ __( 'Admin bar', 'aquila-admin-theme' ),
+ 'aquilaAdminbarCallback',
+ 'aquilaGeneralSettings'
+ );
+ add_settings_section(
+ 'aquila_logoSettings_section',
+ __( 'Custom Logo', 'aquila-admin-theme' ),
+ 'aquilaLogoCallback',
+ 'aquilaLogoSettings'
+ );
+ add_settings_section(
+ 'aquila_colourSettings_section',
+ __( 'Color Scheme', 'aquila-admin-theme' ),
+ 'aquilaColourCallback',
+ 'aquilaColourSettings'
+ );
+ add_settings_section(
+ 'aquila_colourMenuSettings_section',
+ __( 'Admin Menu Colors', 'aquila-admin-theme' ),
+ 'aquilaColourMenuCallback',
+ 'aquilaColourSettings'
+ );
+ add_settings_section(
+ 'aquila_Help_section',
+ '',
+ 'aquilaHelpCallback',
+ 'aquilaHelp'
+ );
+
+ // Add settings fields
+ /// Dashboard settings
+ add_settings_field(
+ 'aquila_chk_pluginSupport',
+ __( 'Show Editors Plugins Support metabox?', 'aquila-admin-theme' ),
+ 'aquila_chk_pluginSupport_render',
+ 'aquilaGeneralSettings',
+ 'aquila_dashboardSettings_section'
+ );
+ add_settings_field(
+ 'aquila_chk_dashBoxes',
+ __( 'Show all other Dashboard metaboxes ?', 'aquila-admin-theme' ),
+ 'aquila_chk_dashBoxes_render',
+ 'aquilaGeneralSettings',
+ 'aquila_dashboardSettings_section'
+ );
+ add_settings_field(
+ 'aquila_chk_postBlog',
+ __( 'Do not rename Posts to Blog ', 'aquila-admin-theme' ),
+ 'aquila_chk_postBlog_render',
+ 'aquilaGeneralSettings',
+ 'aquila_dashboardSettings_section'
+ );
+ add_settings_field(
+ 'aquila_chk_hideFooter',
+ __( 'Hide Footer credit link.', 'aquila-admin-theme' ),
+ 'aquila_chk_hideFooter_render',
+ 'aquilaGeneralSettings',
+ 'aquila_dashboardSettings_section'
+ );
+ add_settings_field(
+ 'aquila_chk_showNag',
+ __( 'Show WordPress Update notices.', 'aquila-admin-theme' ),
+ 'aquila_chk_showNag_render',
+ 'aquilaGeneralSettings',
+ 'aquila_dashboardSettings_section'
+ );
+
+ /// Admin bar
+ add_settings_field(
+ 'aquila_chk_abLinks',
+ __( 'Show Adminbar links?', 'aquila-admin-theme' ),
+ 'aquila_chk_abLinks_render',
+ 'aquilaGeneralSettings',
+ 'aquila_adminbarSettings_section'
+ );
+ add_settings_field(
+ 'aquila_chk_abVisible',
+ __( 'Show Full Adminbar by default on front-end?', 'aquila-admin-theme' ),
+ 'aquila_chk_abVisible_render',
+ 'aquilaGeneralSettings',
+ 'aquila_adminbarSettings_section'
+ );
+
+ /// Custom Logo
+ add_settings_field(
+ 'aquila_new_logo',
+ __( 'Custom logo', 'aquila-admin-theme' ),
+ 'aquila_new_logo_render',
+ 'aquilaLogoSettings',
+ 'aquila_logoSettings_section'
+ );
+ add_settings_field(
+ 'aquila_new_logo_sqr',
+ __( 'Custom logo (square) Used in the "folded" menu ', 'aquila-admin-theme' ),
+ 'aquila_new_logo_sqr_render',
+ 'aquilaLogoSettings',
+ 'aquila_logoSettings_section'
+ );
+
+ /// Colour Scheme
+ add_settings_field(
+ 'aquila_primary_colour',
+ __( 'Primary Color', 'aquila-admin-theme' ),
+ 'aquila_primary_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourSettings_section'
+ );
+ add_settings_field(
+ 'aquila_secondary_colour',
+ __( 'Secondary Color', 'aquila-admin-theme' ),
+ 'aquila_secondary_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourSettings_section'
+ );
+ /*
+ add_settings_field(
+ 'aquila_text_colour',
+ __( 'Text Color', 'aquila-admin-theme' ),
+ 'aquila_text_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourSettings_section'
+ );
+ add_settings_field(
+ 'aquila_background_colour',
+ __( 'Background Color', 'aquila-admin-theme' ),
+ 'aquila_background_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourSettings_section'
+ );
+ */
+ add_settings_field(
+ 'aquila_menu_back_colour',
+ __( 'Menu Background Color', 'aquila-admin-theme' ),
+ 'aquila_menu_back_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourMenuSettings_section'
+ );
+ add_settings_field(
+ 'aquila_menu_text_colour',
+ __( 'Menu Text Color', 'aquila-admin-theme' ),
+ 'aquila_menu_text_colour_render',
+ 'aquilaColourSettings',
+ 'aquila_colourMenuSettings_section'
+ );
+
+ // Register settings
+ register_setting( 'aquilaGeneralSettings', 'aquila_settings' );
+ register_setting( 'aquilaLogoSettings', 'aquilaLogoSettings' );
+ register_setting( 'aquilaAdminbarSettings', 'aquilaAdminbarSettings' );
+ register_setting( 'aquilaColourSettings', 'aquilaColourSettings' );
+
+}
+
+// Add Settings link to Plugins page
+function aquila_action_links( $links ) {
+
+ $aquila_links[] = ''. __( 'Settings', 'aquila-admin-theme' ) .' ';
+
+ return array_merge( $aquila_links, $links );
+
+}
+
+?>
\ No newline at end of file
diff --git a/admin/widgets/pluginWidget.php b/admin/widgets/pluginWidget.php
index 7e79355..afe6815 100644
--- a/admin/widgets/pluginWidget.php
+++ b/admin/widgets/pluginWidget.php
@@ -10,36 +10,30 @@ function aquila_plugin_widget() {
$pluginCaps = 'manage_options';
}
-
if (current_user_can( $pluginCaps )) {
-
wp_add_dashboard_widget(
'aquila-plugin-support',
'Plugin Support',
'aquila_plugin_widget_function'
);
-
}
}
add_action( 'wp_dashboard_setup', 'aquila_plugin_widget' );
-
function aquila_plugin_widget_function() {
-
echo "";
$aquilaOptions = get_option( 'aquila_settings' );
$aquilaSettingsLink = 'options-general.php?page=aquilaSettings';
if(isset($aquilaOptions['aquila_chk_pluginSupport']) && $aquilaOptions['aquila_chk_pluginSupport'] == 1){
- $visibleText = sprintf( __( '
Visible to Editors
', 'aquila-admin-theme' ), $aquilaSettingsLink );
+ //$visibleText = sprintf( __( 'Visible to Editors
', 'aquila-admin-theme' ), $aquilaSettingsLink );
} else {
- $visibleText = sprintf( __( 'Visible to Administrators
', 'aquila-admin-theme' ), $aquilaSettingsLink );
+ $visibleText = ''. sprintf( __( 'Visible to Administrators only', 'aquila-admin-theme' ), $aquilaSettingsLink ) .'
';
}
echo $visibleText;
-
echo "";
if ( ! function_exists( 'get_plugins' ) ) {
@@ -48,26 +42,20 @@ function aquila_plugin_widget_function() {
$allPlugins = get_plugins();
$allPluginsKeys = array_keys($allPlugins);
-
$Count = 0;
foreach ($allPlugins as $pluginItem) {
-
$pluginRootFile = $allPluginsKeys[$Count];
$pluginTitle = $pluginItem['Title'];
$pluginVersion = $pluginItem['Version'];
$pluginURI = $pluginItem['PluginURI'];
$pluginDomain = $pluginItem['TextDomain'];
$pluginStatus = is_plugin_active($pluginRootFile) ? 'active' : 'inactive';
-
if (($pluginStatus == "active") && ($pluginURI)) {
echo "" . $pluginTitle . " ";
}
-
$Count++;
}
-
echo " ";
}
-
?>
\ No newline at end of file
diff --git a/admin/widgets/removeWidgets.php b/admin/widgets/removeWidgets.php
index 71e972f..27b75cd 100644
--- a/admin/widgets/removeWidgets.php
+++ b/admin/widgets/removeWidgets.php
@@ -1,39 +1,34 @@
\ No newline at end of file
diff --git a/admin/widgets/welcomeWidget.php b/admin/widgets/welcomeWidget.php
index 3babdf1..218990a 100644
--- a/admin/widgets/welcomeWidget.php
+++ b/admin/widgets/welcomeWidget.php
@@ -1,23 +1,18 @@
@@ -54,4 +46,5 @@ function aquila_welcome_widget_function() {
";
}
- ?>
\ No newline at end of file
+
+?>
\ No newline at end of file
diff --git a/aquila-admin-theme.php b/aquila-admin-theme.php
index b2e6379..fe5f76f 100644
--- a/aquila-admin-theme.php
+++ b/aquila-admin-theme.php
@@ -5,20 +5,23 @@
* Description: The Aquila Admin Theme
* Author: Guy Primavera
* Author URI: https://guyprimavera.com/
- * Version: 2.2
+ * Version: 2.3
* Text Domain: aquila-admin-theme
* Domain Path: /lang/
* License: GPL2
*
- * 2017 Guy Primavera
+ * 2018 Guy Primavera
*/
-$aquilaVer = "2.2";
+$aquilaVer = "2.3";
include ('scripts.php');
include ('login/aquila-login-screen.php');
include ('admin/dashboard.php');
include ('admin/adminBar.php');
-include ('admin/options.php');
+include ('admin/options/options.php');
include ('admin/colour/colourScheme.php');
+
+// Plugin action links
+add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), 'aquila_action_links' );
?>
\ No newline at end of file
diff --git a/css/adminBar.css b/css/adminBar.css
index 92c93c4..f997044 100644
--- a/css/adminBar.css
+++ b/css/adminBar.css
@@ -1,8 +1,6 @@
/* LESS Elements 0.9 */
-@import url(https://fonts.googleapis.com/css?family=Roboto);
-@import url(https://fonts.googleapis.com/css?family=Raleway);
-@import url(https://fonts.googleapis.com/css?family=Lato);
-@import url(https://fonts.googleapis.com/css?family=Roboto);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
.fontAwesome {
font-family: "fontAwesome" !important;
@@ -12,14 +10,11 @@
font-size: 18px;
line-height: 1.6;
}
-.serif {
- font-family: 'Raleway', serif;
-}
.sans {
font-family: 'Roboto', sans-serif !important;
}
.heading {
- font-family: 'Raleway', sans-serif;
+ font-family: 'Roboto', sans-serif;
}
.bgCov {
background-size: cover;
@@ -2347,6 +2342,55 @@ body.admin-bar #wpadminbar .noticon {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
+.aquilaFront #wpadminbar {
+ display: none;
+ padding-left: 65px;
+}
+.aquilaFront #aquilaAdminbarIcon {
+ overflow: hidden;
+ position: fixed;
+ top: 10px;
+ left: 10px;
+ background-color: #000000;
+ background-color: rgba(0, 0, 0, 0.5);
+ color: #fff;
+ height: 45px;
+ width: 45px;
+ z-index: 999999;
+ border-radius: 50%;
+ -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ cursor: pointer;
+ opacity: 0.8;
+ transition: 0.2s all linear;
+ -webkit-transition: 0.2s all linear;
+ -moz-transition: 0.2s all linear;
+ -o-transition: 0.2s all linear;
+}
+.aquilaFront #aquilaAdminbarIcon:before {
+ font-family: 'Aquila' !important;
+ content: "\a002";
+ font-size: 30px;
+ line-height: 49px;
+ width: 45px;
+ text-align: center;
+ position: relative;
+ display: block;
+ height: 45px;
+}
+.aquilaFront #aquilaAdminbarIcon:hover,
+.aquilaFront #aquilaAdminbarIcon:target,
+.aquilaFront #aquilaAdminbarIcon:focus,
+.aquilaFront #aquilaAdminbarIcon:active {
+ opacity: 1;
+}
+.aquilaOpenBar.aquilaFront #aquilaAdminbarIcon {
+ background-color: rgba(0, 0, 0, 0.25);
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+}
#wpadminbar {
height: 65px;
-webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
@@ -2487,3 +2531,15 @@ body.folded #wpadminbar li#wp-admin-bar-wp-logo > .ab-item .ab-icon:before {
#wpadminbar #screen-meta-links {
display: none!important;
}
+#wpadminbar.openBar {
+ height: 65px;
+}
+@media screen and (max-width: 782px) {
+ .aquilaFront #aquilaAdminbarIcon {
+ position: fixed;
+ top: 5px;
+ left: 5px;
+ height: 37px;
+ width: 37px;
+ }
+}
diff --git a/css/adminBar.less b/css/adminBar.less
index dc63153..23c3655 100644
--- a/css/adminBar.less
+++ b/css/adminBar.less
@@ -1,13 +1,12 @@
@import "vars.less";
@import "/../icons/faVars.less";
@import "/../icons/variables.less";
-@import url(https://fonts.googleapis.com/css?family=Roboto);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
// Admin Bar
body.admin-bar {
- //padding-top: @barHeight;
#wpadminbar {
* {
.sans;
@@ -26,6 +25,53 @@ body.admin-bar {
}
}
+// Admin bar icon
+.aquilaFront {
+ #wpadminbar {
+ display: none;
+ padding-left: 65px;
+ }
+ #aquilaAdminbarIcon {
+ overflow: hidden;
+ position: fixed;
+ top: 10px;
+ left: 10px;
+ background-color: #000000;
+ background-color: rgba(0,0,0,0.5);
+ color: #fff;
+ //color: rgba(255,255,255,0.5);
+ height: 45px;
+ width: 45px;
+ z-index: 999999;
+ border-radius: 50%;
+ -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.25), 5px 0px 10px rgba(0, 0, 0, 0.22);
+ cursor: pointer;
+ opacity: 0.8;
+ .trans;
+ &:before {
+ .icoAquila;
+ content: @aquila-aquila;
+ font-size: 30px;
+ line-height: 49px;
+ width: 45px;
+ text-align: center;
+ position: relative;
+ display: block;
+ height: 45px;
+ }
+ &:hover, &:target, &:focus, &:active {
+ opacity: 1;
+ }
+ .aquilaOpenBar& {
+ background-color: rgba(0,0,0,0.25);
+ -webkit-box-shadow: none;
+ -moz-box-shadow: none;
+ box-shadow: none;
+ }
+ }
+}
/// Admin Bar
#wpadminbar {
@@ -174,4 +220,18 @@ body.admin-bar {
#screen-meta-links {
display: none!important;
}
+ // Admin bar open
+ &.openBar {
+ height: @barHeight;
+ }
+}
+
+@media screen and (max-width: 782px) {
+ .aquilaFront #aquilaAdminbarIcon {
+ position: fixed;
+ top: 5px;
+ left: 5px;
+ height: 37px;
+ width: 37px;
+ }
}
\ No newline at end of file
diff --git a/css/aquila.css b/css/aquila.css
index cfacfde..fa4f537 100644
--- a/css/aquila.css
+++ b/css/aquila.css
@@ -1,7 +1,5 @@
/* LESS Elements 0.9 */
-@import url(https://fonts.googleapis.com/css?family=Roboto);
-@import url(https://fonts.googleapis.com/css?family=Raleway);
-@import url(https://fonts.googleapis.com/css?family=Lato);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
.fontAwesome {
font-family: "fontAwesome" !important;
@@ -11,14 +9,11 @@
font-size: 18px;
line-height: 1.6;
}
-.serif {
- font-family: 'Raleway', serif;
-}
.sans {
font-family: 'Roboto', sans-serif !important;
}
.heading {
- font-family: 'Raleway', sans-serif;
+ font-family: 'Roboto', sans-serif;
}
.bgCov {
background-size: cover;
@@ -2357,7 +2352,7 @@ html.wp-toolbar body.wp-admin #wpcontent #wpbody h4,
html.wp-toolbar body.wp-admin #wpcontent #wpbody h5,
html.wp-toolbar body.wp-admin #wpcontent #wpbody h6 {
text-transform: uppercase;
- font-weight: 300;
+ font-weight: 400;
font-family: 'Roboto', sans-serif !important;
}
html.wp-toolbar body.wp-admin #wpcontent #wpbody #screen-meta-links {
@@ -2386,7 +2381,7 @@ html.wp-toolbar div.updated {
html.wp-toolbar .notice a,
html.wp-toolbar div.error a,
html.wp-toolbar div.updated a {
- font-weight: 600;
+ font-weight: 700;
}
html.wp-toolbar .notice table th,
html.wp-toolbar div.error table th,
@@ -2501,7 +2496,7 @@ body.wp-admin .page-title-action:active {
outline: 0;
text-transform: uppercase;
letter-spacing: 1px;
- font-weight: 600;
+ font-weight: 700;
line-height: 2.3;
border: none!important;
box-shadow: none!important;
@@ -2666,10 +2661,6 @@ a {
text-decoration: none;
}
/* Forms */
-input[type=checkbox]:checked:before {
- margin: -14px 0 0 -12px;
- font-size: 40px;
-}
input[type=radio]:checked:before {
width: 14px;
height: 14px;
@@ -2702,9 +2693,10 @@ input[type=radio]:checked:before {
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
- text-transform: uppercase;
letter-spacing: 1px;
- font-size: 12px;
+ font-size: 13px;
+ text-transform: uppercase;
+ font-weight: 400!important;
}
/* Admin Menu: bubble */
#adminmenu .awaiting-mod,
@@ -2721,14 +2713,14 @@ input[type=radio]:checked:before {
#adminmenu .update-plugins .plugin-count {
padding: 0px 4px 0px 5px;
font-size: 10px;
- line-height: 1.8;
- font-weight: 300;
+ line-height: 1;
+ font-weight: 700;
}
body.folded #adminmenu .awaiting-mod .plugin-count,
body.folded #adminmenu .update-plugins .plugin-count,
body.auto-fold #adminmenu .awaiting-mod .plugin-count,
body.auto-fold #adminmenu .update-plugins .plugin-count {
- padding: 0px 4px;
+ padding: 0px 0px;
}
#adminmenu .wp-submenu .awaiting-mod,
#adminmenu .wp-submenu .update-plugins {
@@ -2846,7 +2838,7 @@ ul#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
ul#adminmenu div.wp-menu-name {
padding: 12px 10px 12px 0px;
text-transform: uppercase;
- letter-spacing: 2px;
+ letter-spacing: 1px;
line-height: 1.5;
font-size: 13px;
}
@@ -3008,7 +3000,7 @@ body.wp-admin .postbox > h3,
body.wp-admin .stuffbox > h3 {
font-size: 18px;
line-height: 2;
- font-weight: 300;
+ font-weight: 400;
font-family: inherit;
}
body.wp-admin .postbox#welcome-to-aquila ul,
@@ -3461,7 +3453,15 @@ body.wp-admin .us-hb-screenlock {
display: none!important;
}
form.aquilaSettingsPage table tr th {
- font-weight: 300;
+ font-weight: 400;
+ width: 300px;
+ padding: 10px 10px 10px 0;
+}
+form.aquilaSettingsPage table tr td {
+ padding: 10px 10px 10px 0;
+}
+form.aquilaSettingsPage table tr td label {
+ margin-left: 10px;
}
form.aquilaSettingsPage table tr a.button {
float: left;
@@ -3477,18 +3477,182 @@ form.aquilaSettingsPage table tr img.aquilaOptionsLogo {
form.aquilaSettingsPage table tr img.aquilaOptionsLogo[src="none"] {
display: none!important;
}
+/*
.wp-picker-container .iris-picker {
padding-bottom: 75px!important;
+ .iris-palette-container {
+ width: 74%;
+ .iris-palette {
+ width: 28px!important;
+ height: 28px!important;
+ margin-right: 5px;
+ margin-top: 10px;
+ margin-left: 0!important;
+ }
+ }
+}
+*/
+ul#aquilaHelp {
+ display: block;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ flex-wrap: wrap;
+ align-items: stretch;
}
-.wp-picker-container .iris-picker .iris-palette-container {
- width: 74%;
+ul#aquilaHelp li {
+ width: 240px;
+ max-width: 100%;
+ float: left;
+ display: inline-block;
+ display: flex;
+ margin: 10px;
}
-.wp-picker-container .iris-picker .iris-palette-container .iris-palette {
- width: 28px!important;
- height: 28px!important;
- margin-right: 5px;
- margin-top: 10px;
- margin-left: 0!important;
+ul#aquilaHelp li a {
+ display: inline-block;
+ display: flex;
+ flex-direction: column;
+ background: rgba(0, 0, 0, 0.1);
+ padding: 20px;
+ text-align: center;
+ width: 100%;
+ transition: 0.2s all linear;
+ -webkit-transition: 0.2s all linear;
+ -moz-transition: 0.2s all linear;
+ -o-transition: 0.2s all linear;
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
+ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
+}
+ul#aquilaHelp li a:hover,
+ul#aquilaHelp li a:active,
+ul#aquilaHelp li a:focus,
+ul#aquilaHelp li a:target {
+ background: rgba(0, 0, 0, 0.15);
+ box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
+}
+ul#aquilaHelp li a h3,
+ul#aquilaHelp li a h4 {
+ text-decoration: none!important;
+}
+ul#aquilaHelp li a h3 {
+ opacity: 1;
+}
+ul#aquilaHelp li a h4 {
+ opacity: 1;
+}
+body.wp-admin {
+ /* Sidebar manually collapsed. */
+ /* Mobile menu opened. */
+ /* In small screens with resposive menu expanded there is small white space. */
+ /* Sidebar manually collapsed. */
+ /* Mobile menu opened. */
+ /* In small screens with resposive menu expanded there is small white space. */
+}
+body.wp-admin .edit-post-header {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+}
+@media (min-width: 782px) {
+ body.wp-admin .edit-post-header {
+ left: 250px;
+ top: 65px;
+ }
+}
+body.wp-admin.auto-fold .edit-post-header {
+ /* Auto fold is when on smaller breakpoints, nav menu auto colllapses. */
+}
+@media (min-width: 782px) {
+ body.wp-admin.auto-fold .edit-post-header {
+ left: 60px;
+ }
+}
+@media (min-width: 960px) {
+ body.wp-admin.auto-fold .edit-post-header {
+ left: 250px;
+ }
+}
+body.wp-admin.folded .edit-post-header {
+ left: 0;
+}
+@media (min-width: 782px) {
+ body.wp-admin.folded .edit-post-header {
+ left: 60px;
+ }
+ body.wp-admin.is-fullscreen-mode .edit-post-header {
+ top: 0 !important;
+ }
+}
+@media (max-width: 782px) {
+ body.wp-admin.auto-fold .wp-responsive-open .edit-post-header {
+ left: 250px;
+ }
+}
+@media (max-width: 600px) {
+ body.wp-admin.auto-fold .wp-responsive-open .edit-post-header {
+ margin-left: -18px;
+ }
+}
+body.wp-admin.is-fullscreen-mode .edit-post-header {
+ left: 0 !important;
+}
+@media (min-width: 600px) {
+ body.wp-admin .edit-post-sidebar {
+ top: 120px;
+ }
+ body.wp-admin.is-fullscreen-mode .edit-post-sidebar {
+ top: 56px;
+ }
+}
+@media (min-width: 782px) {
+ body.wp-admin .edit-post-sidebar {
+ top: 120px;
+ }
+ body.wp-admin.is-fullscreen-mode .edit-post-sidebar {
+ top: 56px;
+ }
+}
+body.wp-admin .components-notice-list {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+}
+@media (min-width: 782px) {
+ body.wp-admin .components-notice-list {
+ left: 250px;
+ }
+}
+body.wp-admin.auto-fold .components-notice-list {
+ /* Auto fold is when on smaller breakpoints, nav menu auto colllapses. */
+}
+@media (min-width: 782px) {
+ body.wp-admin.auto-fold .components-notice-list {
+ left: 60px;
+ }
+}
+@media (min-width: 960px) {
+ body.wp-admin.auto-fold .components-notice-list {
+ left: 250px;
+ }
+}
+body.wp-admin.folded .components-notice-list {
+ left: 0;
+}
+@media (min-width: 782px) {
+ body.wp-admin.folded .components-notice-list {
+ left: 60px;
+ }
+}
+@media (max-width: 782px) {
+ body.wp-admin.auto-fold .wp-responsive-open .components-notice-list {
+ left: 250px;
+ }
+}
+@media (max-width: 600px) {
+ body.wp-admin.auto-fold .wp-responsive-open .components-notice-list {
+ margin-left: -18px;
+ }
+}
+body.wp-admin.is-fullscreen-mode .components-notice-list {
+ left: 0 !important;
}
.media-frame.mode-grid .media-toolbar {
height: 50px;
diff --git a/css/aquila.less b/css/aquila.less
index 913ba3c..7633355 100644
--- a/css/aquila.less
+++ b/css/aquila.less
@@ -38,7 +38,7 @@ html.wp-toolbar {
#wpbody {
h1, h2, h3, h4, h5, h6 {
text-transform: uppercase;
- font-weight: 300;
+ font-weight: 400;
.sans;
}
#screen-meta-links {
@@ -66,7 +66,7 @@ html.wp-toolbar {
text-align: center;
border-radius: 2px;
a {
- font-weight: 600;
+ font-weight: 700;
}
table th, table tr {
background: none!important;
@@ -125,7 +125,7 @@ html.wp-toolbar {
outline: 0;
text-transform: uppercase;
letter-spacing: 1px;
- font-weight: 600;
+ font-weight: 700;
line-height: 2.3;
border: none!important;
box-shadow: none!important;
@@ -189,8 +189,8 @@ a {
/* Forms */
input[type=checkbox]:checked:before {
- margin: -14px 0 0 -12px;
- font-size: 40px;
+ //margin: -14px 0 0 -12px;
+ //font-size: 40px;
}
input[type=radio]:checked:before {
@@ -226,9 +226,10 @@ input[type=radio]:checked:before {
.folded #adminmenu .wp-has-current-submenu .wp-submenu a,
#adminmenu a.wp-has-current-submenu:focus + .wp-submenu a,
#adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
- text-transform: uppercase;
letter-spacing: 1px;
- font-size: 12px;
+ font-size: 13px;
+ text-transform: uppercase;
+ font-weight: 400!important;
}
/* Admin Menu: bubble */
@@ -250,12 +251,12 @@ input[type=radio]:checked:before {
}
.plugin-count {
padding: 0px 4px 0px 5px;
- font-size: 10px;
- line-height: 1.8;
- font-weight: 300;
+ font-size: 10px;
+ line-height: 1;
+ font-weight: 700;
body.folded &,
body.auto-fold & {
- padding: 0px 4px;
+ padding: 0px 0px;
}
}
}
@@ -350,7 +351,7 @@ ul#adminmenu {
div.wp-menu-name {
padding: 12px 10px 12px 0px;
text-transform: uppercase;
- letter-spacing: 2px;
+ letter-spacing: 1px;
line-height: 1.5;
font-size: 13px;
}
@@ -482,7 +483,7 @@ body.wp-admin {
& > h2, & > h3 {
font-size: 18px;
line-height: 2;
- font-weight: 300;
+ font-weight: 400;
font-family: inherit;
}
welcome-to-aquila {
@@ -985,7 +986,15 @@ form.aquilaSettingsPage {
table {
tr {
th {
- font-weight: 300;
+ font-weight: 400;
+ width: 300px;
+ padding: 10px 10px 10px 0;
+ }
+ td {
+ padding: 10px 10px 10px 0;
+ label {
+ margin-left: 10px;
+ }
}
a.button {
float: left;
@@ -1006,7 +1015,7 @@ form.aquilaSettingsPage {
}
// Colour Picker
-
+/*
.wp-picker-container .iris-picker {
padding-bottom: 75px!important;
.iris-palette-container {
@@ -1020,6 +1029,171 @@ form.aquilaSettingsPage {
}
}
}
+*/
+
+// Help page
+ul#aquilaHelp {
+ display: block;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ flex-wrap: wrap;
+ align-items: stretch;
+ li {
+ width: 240px;
+ max-width: 100%;
+ float: left;
+ display: inline-block;
+ display: flex;
+ margin: 10px;
+ a {
+ display: inline-block;
+ display: flex;
+ flex-direction: column;
+ background: rgba(0, 0, 0, 0.1);
+ padding: 20px;
+ text-align: center;
+ width: 100%;
+ .trans;
+ .mdShadow;
+ &:hover, &:active, &:focus, &:target {
+ background: rgba(0, 0, 0, 0.15);
+ .mdShadowHover;
+ }
+ h3, h4 {
+ text-decoration: none!important;
+ }
+ h3 {
+ opacity: 1;
+ }
+ h4 {
+ opacity: 1;
+ }
+ }
+ }
+}
+
+// wp5.0 and Gutenberg
+
+body.wp-admin {
+ .edit-post-header {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+ }
+ @media (min-width: 782px) {
+ .edit-post-header {
+ left: @sideWidth;
+ top: @barHeight;
+ }
+ }
+ &.auto-fold .edit-post-header {
+ /* Auto fold is when on smaller breakpoints, nav menu auto colllapses. */
+ }
+ @media (min-width: 782px) {
+ &.auto-fold .edit-post-header {
+ left: @sideWidthFolded;
+ }
+ }
+ @media (min-width: 960px) {
+ &.auto-fold .edit-post-header {
+ left: @sideWidth;
+ }
+ }
+ /* Sidebar manually collapsed. */
+ &.folded .edit-post-header {
+ left: 0;
+ }
+ @media (min-width: 782px) {
+ &.folded .edit-post-header {
+ left: @sideWidthFolded;
+ }
+ &.is-fullscreen-mode .edit-post-header {
+ top: 0 !important;
+ }
+ }
+ /* Mobile menu opened. */
+ @media (max-width: 782px) {
+ &.auto-fold .wp-responsive-open .edit-post-header {
+ left: @sideWidth;
+ }
+ }
+ /* In small screens with resposive menu expanded there is small white space. */
+ @media (max-width: 600px) {
+ &.auto-fold .wp-responsive-open .edit-post-header {
+ margin-left: -18px;
+ }
+ }
+ &.is-fullscreen-mode .edit-post-header {
+ left: 0 !important;
+ }
+
+ .edit-post-sidebar {
+ }
+ @media (min-width: 600px) {
+ .edit-post-sidebar {
+ top: 120px;
+ }
+ &.is-fullscreen-mode .edit-post-sidebar {
+ top: 56px;
+ }
+ }
+ @media (min-width: 782px) {
+ .edit-post-sidebar {
+ top: 120px;
+ }
+ &.is-fullscreen-mode .edit-post-sidebar {
+ top: 56px;
+ }
+ }
+
+ .components-notice-list {
+ /* Set left position when auto-fold is not on the body element. */
+ left: 0;
+ }
+ @media (min-width: 782px) {
+ .components-notice-list {
+ left: @sideWidth;
+ }
+ }
+ &.auto-fold .components-notice-list {
+ /* Auto fold is when on smaller breakpoints, nav menu auto colllapses. */
+ }
+ @media (min-width: 782px) {
+ &.auto-fold .components-notice-list {
+ left: @sideWidthFolded;
+ }
+ }
+ @media (min-width: 960px) {
+ &.auto-fold .components-notice-list {
+ left: @sideWidth;
+ }
+ }
+ /* Sidebar manually collapsed. */
+ &.folded .components-notice-list {
+ left: 0;
+ }
+ @media (min-width: 782px) {
+ &.folded .components-notice-list {
+ left: @sideWidthFolded;
+ }
+ }
+ /* Mobile menu opened. */
+ @media (max-width: 782px) {
+ &.auto-fold .wp-responsive-open .components-notice-list {
+ left: @sideWidth;
+ }
+ }
+ /* In small screens with resposive menu expanded there is small white space. */
+ @media (max-width: 600px) {
+ &.auto-fold .wp-responsive-open .components-notice-list {
+ margin-left: -18px;
+ }
+ }
+ &.is-fullscreen-mode .components-notice-list {
+ left: 0 !important;
+ }
+
+}
// Temp fixes
@@ -1029,4 +1203,5 @@ form.aquilaSettingsPage {
}
.media-frame .attachments-browser {
overflow: scroll;
-}
\ No newline at end of file
+}
+
diff --git a/css/login.css b/css/login.css
index b303418..2a334fd 100644
--- a/css/login.css
+++ b/css/login.css
@@ -1,7 +1,5 @@
/* LESS Elements 0.9 */
-@import url(https://fonts.googleapis.com/css?family=Roboto);
-@import url(https://fonts.googleapis.com/css?family=Raleway);
-@import url(https://fonts.googleapis.com/css?family=Lato);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
.fontAwesome {
font-family: "fontAwesome" !important;
}
@@ -10,14 +8,11 @@
font-size: 18px;
line-height: 1.6;
}
-.serif {
- font-family: 'Raleway', serif;
-}
.sans {
font-family: 'Roboto', sans-serif !important;
}
.heading {
- font-family: 'Raleway', sans-serif;
+ font-family: 'Roboto', sans-serif;
}
.bgCov {
background-size: cover;
@@ -305,6 +300,12 @@ body.login .wp-social-login-widget {
margin: 0 auto;
text-align: center;
}
+.interim-login #login {
+ top: 0!important;
+ -webkit-transform: unset!important;
+ -ms-transform: unset!important;
+ transform: unset!important;
+}
#loginform #jetpack-sso-wrap,
#loginform .jetpack-sso-clear {
width: 320px;
diff --git a/css/login.less b/css/login.less
index 009693e..ce0f351 100644
--- a/css/login.less
+++ b/css/login.less
@@ -134,6 +134,14 @@ body.login {
}
}
+// Login auth check
+.interim-login #login {
+ top: 0!important;
+ -webkit-transform: unset!important;
+ -ms-transform: unset!important;
+ transform: unset!important;
+}
+
// Login Plugins
// Jetpack
diff --git a/css/vars.css b/css/vars.css
index f91c921..6bbe7ff 100644
--- a/css/vars.css
+++ b/css/vars.css
@@ -1,7 +1,5 @@
/* LESS Elements 0.9 */
-@import url(https://fonts.googleapis.com/css?family=Roboto);
-@import url(https://fonts.googleapis.com/css?family=Raleway);
-@import url(https://fonts.googleapis.com/css?family=Lato);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
.fontAwesome {
font-family: "fontAwesome" !important;
}
@@ -10,14 +8,11 @@
font-size: 18px;
line-height: 1.6;
}
-.serif {
- font-family: 'Raleway', serif;
-}
.sans {
font-family: 'Roboto', sans-serif !important;
}
.heading {
- font-family: 'Raleway', sans-serif;
+ font-family: 'Roboto', sans-serif;
}
.bgCov {
background-size: cover;
diff --git a/css/vars.less b/css/vars.less
index bea8308..d6cbff6 100644
--- a/css/vars.less
+++ b/css/vars.less
@@ -1,8 +1,6 @@
// Variables and Mixins - Guy Primavera
@import "elements.less";
-@import url(https://fonts.googleapis.com/css?family=Roboto);
-@import url(https://fonts.googleapis.com/css?family=Raleway);
-@import url(https://fonts.googleapis.com/css?family=Lato);
+@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=latin-ext');
@desktop: ~"only screen and (min-width: 1025px)";
@laptop: ~"only screen and (max-width: 1024px)";
@@ -20,9 +18,9 @@
.fontAwesome { font-family: "fontAwesome"!important; }
.menuFA { font-family: "fontAwesome" !important;font-size: 18px;line-height: 1.6; }
-.serif { font-family: 'Raleway', serif; }
+//.serif { font-family: 'Raleway', serif; }
.sans { font-family: 'Roboto', sans-serif!important; }
-.heading { font-family: 'Raleway', sans-serif; }
+.heading { font-family: 'Roboto', sans-serif; }
.bgCov { background-size: cover; background-position: center center; background-repeat: repeat; }
.icoAquila { font-family: 'Aquila' !important; content: "\a002"; }
diff --git a/js/calls.js b/js/calls.js
index 05be9d2..33902ca 100644
--- a/js/calls.js
+++ b/js/calls.js
@@ -2,99 +2,92 @@
$j=jQuery.noConflict();
$j(document).ready(function() {
+ // New screen links
+ if (document.getElementById('screen-options-wrap')) {
+ } else {
+ $j('#wp-admin-bar-screenOptions').hide();
+ }
+ if (document.getElementById('contextual-help-wrap')) {
+ } else {
+ $j('#wp-admin-bar-contextHelp').hide();
+ }
-// New screen links
-
-if (document.getElementById('screen-options-wrap')) {
-} else {
- $j('#wp-admin-bar-screenOptions').hide();
-}
-if (document.getElementById('contextual-help-wrap')) {
-} else {
- $j('#wp-admin-bar-contextHelp').hide();
-}
-
-// Screen Options button
-
-$j('#wp-admin-bar-screenOptions .ab-item').click(function() {
- if( $j('#wp-admin-bar-contextHelp .ab-item').hasClass('active')) {
-
- $j('#contextual-help-wrap').hide();
- $j('#wp-admin-bar-contextHelp .ab-item').removeClass('active');
- $j(this).addClass('active');
- $j('#screen-options-wrap').slideDown( "fast" );
-
- } else {
-
- if( $j('#screen-meta').is(':visible')) {
- $j('#screen-meta').slideUp( "fast" );
- $j('#screen-options-wrap').slideUp( "fast" );
- $j(this).removeClass('active');
+ // Screen Options button
+ $j('#wp-admin-bar-screenOptions .ab-item').click(function() {
+ if( $j('#wp-admin-bar-contextHelp .ab-item').hasClass('active')) {
+ $j('#contextual-help-wrap').hide();
+ $j('#wp-admin-bar-contextHelp .ab-item').removeClass('active');
+ $j(this).addClass('active');
+ $j('#screen-options-wrap').slideDown( "fast" );
} else {
- $j('#screen-meta').show();
- $j('#screen-options-wrap').slideDown( "fast" );
- $j(this).addClass('active');
- }
-
- };
-});
-
-// Contextual Help button
-
-if (document.getElementById('contextual-help-wrap')) {
-} else {
- $j('#wp-admin-bar-contextHelp').hide();
-}
-
-$j('#wp-admin-bar-contextHelp .ab-item').click(function() {
- if( $j('#wp-admin-bar-screenOptions .ab-item').hasClass('active')) {
-
- $j('#screen-options-wrap').hide();
- $j('#wp-admin-bar-screenOptions .ab-item').removeClass('active');
- $j(this).addClass('active');
- $j('#contextual-help-wrap').slideDown( "fast" );
-
- } else {
-
- if( $j('#screen-meta').is(':visible')) {
- $j('#screen-meta').slideUp( "fast" );
- $j('#contextual-help-wrap').slideUp( "fast" );
- $j(this).removeClass('active');
+ if( $j('#screen-meta').is(':visible')) {
+ $j('#screen-meta').slideUp( "fast" );
+ $j('#screen-options-wrap').slideUp( "fast" );
+ $j(this).removeClass('active');
+ } else {
+ $j('#screen-meta').show();
+ $j('#screen-options-wrap').slideDown( "fast" );
+ $j(this).addClass('active');
+ }
+ };
+ });
+
+ // Admin bar icon functions
+ $j('#aquilaAdminbarIcon').click(function() {
+ if( $j('body').hasClass('aquilaClosedBar')) {
+ $j('body').removeClass('aquilaClosedBar');
+ $j('body').addClass('aquilaOpenBar');
+ $j('#wpadminbar').slideDown( "fast" );
} else {
- $j('#screen-meta').show();
- $j('#contextual-help-wrap').slideDown( "fast" );
- $j(this).addClass('active');
- }
-
- };
-});
+ $j('body').removeClass('aquilaOpenBar');
+ $j('body').addClass('aquilaClosedBar');
+ $j('#wpadminbar').slideUp( "fast" );
+ };
+ });
+
+ // Contextual Help button
+ if (document.getElementById('contextual-help-wrap')) {
+ } else {
+ $j('#wp-admin-bar-contextHelp').hide();
+ }
+ $j('#wp-admin-bar-contextHelp .ab-item').click(function() {
+ if( $j('#wp-admin-bar-screenOptions .ab-item').hasClass('active')) {
+ $j('#screen-options-wrap').hide();
+ $j('#wp-admin-bar-screenOptions .ab-item').removeClass('active');
+ $j(this).addClass('active');
+ $j('#contextual-help-wrap').slideDown( "fast" );
+ } else {
+ if( $j('#screen-meta').is(':visible')) {
+ $j('#screen-meta').slideUp( "fast" );
+ $j('#contextual-help-wrap').slideUp( "fast" );
+ $j(this).removeClass('active');
+ } else {
+ $j('#screen-meta').show();
+ $j('#contextual-help-wrap').slideDown( "fast" );
+ $j(this).addClass('active');
+ }
+ };
+ });
})
// Media manager
-
$j(document).ready(function($j){
-
$j('.aquilaNewLogoUpload').click(function() {
var send_attachment_bkp = wp.media.editor.send.attachment;
var button = $j(this);
-
wp.media.editor.send.attachment = function(props, attachment) {
$j(button).next().next().attr('src', attachment.url);
$j(button).prev().val(attachment.url);
wp.media.editor.send.attachment = send_attachment_bkp;
}
-
wp.media.editor.open(button);
-
return false;
});
-
});
// Show "Remove Logo" button if logo is present
$j(document).ready(function($j){
-
$j('input.aquilaNewLogoUrl').each(function(){
if ( !$j(this).val() ) {
$j(this).next().next().hide();
@@ -102,70 +95,21 @@ $j(document).ready(function($j){
$j(this).next().next().show();
}
});
-
});
-
-
// Clear custom logo field on button click
$j(document).ready(function($j){
-
$j('a.aquilaNewLogoClear').on('click',function(){
$j(this).prev().prev().val("");
$j(this).next('img').hide("fast");
$j(this).hide("fast");
});
-
});
// Colour picker
-
-
-$j(function($j) {
- if (typeof $j.wp !== 'undefined' && typeof $j.wp.wpColorPicker !== 'undefined') {
- $j.wp.wpColorPicker.prototype.options = {
- palettes: [
- '#f44336',
- '#E91E63',
- '#9c27b0',
- '#673ab7',
- '#3f51b5',
- '#2196F3',
- '#03a9f4',
- '#00bcd4',
- '#009688',
- '#4caf50',
- '#8bc34a',
- '#cddc39',
- '#ffeb3b',
- '#ffc107',
- '#ff9800',
- '#ff5722',
- '#795548',
- '#9e9e9e',
- '#607d8b',
- '#ffffff'
- ],
- width: 450,
- mode: "hsv"
- };
- }
-
-});
-
-
$j(document).ready(function($j){
$j('.colourPicker').each(function(){
$j(this).wpColorPicker();
});
});
-
-/*
-$j(document).ready(function($j){
- //$j('#color-picker').iris();
- $j('.colourPicker').each(function(){
- $j(this).iris();
- });
-});
-*/
diff --git a/lang/aquila-admin-theme-en_GB-backup-201811131454080.po~ b/lang/aquila-admin-theme-en_GB-backup-201811131454080.po~
new file mode 100644
index 0000000..e484ca4
--- /dev/null
+++ b/lang/aquila-admin-theme-en_GB-backup-201811131454080.po~
@@ -0,0 +1,317 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Aquila Admin Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-11-13 14:47+0000\n"
+"PO-Revision-Date: 2018-11-13 14:48+0000\n"
+"Last-Translator: admin \n"
+"Language-Team: \n"
+"Language: en_GB\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Loco https://localise.biz/"
+
+#: admin/functions/postToBlog.php:17 admin/functions/postToBlog.php:29
+#: admin/functions/postToBlog.php:30
+msgid "Add Blog Post"
+msgstr ""
+
+#: admin/options/registerSettings.php:35
+msgid "Admin bar"
+msgstr ""
+
+#: admin/options/registerSettings.php:53
+msgid "Admin Menu Colors"
+msgstr ""
+
+#: admin/functions/postToBlog.php:37
+msgid "All Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:11 admin/widgets/welcomeWidget.php:40
+msgid "Aquila"
+msgstr ""
+
+#. Name of the plugin
+msgid "Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:6 admin/options/registerSettings.php:10
+msgid "Aquila Settings"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:69
+msgid "Aquila Support"
+msgstr ""
+
+#: admin/options/help.php:17
+msgid "Ask a question"
+msgstr ""
+
+#: admin/functions/postToBlog.php:14 admin/functions/postToBlog.php:27
+#: admin/functions/postToBlog.php:38 admin/functions/postToBlog.php:39
+msgid "Blog"
+msgstr ""
+
+#: admin/functions/postToBlog.php:28 admin/functions/postToBlog.php:32
+msgid "Blog Post"
+msgstr ""
+
+#: admin/functions/postToBlog.php:20
+msgid "Blog Tags"
+msgstr ""
+
+#: admin/options/callbacks.php:11
+msgid "Choose a custom logo for your admin area."
+msgstr ""
+
+#: admin/options/createOptionsPage.php:14 admin/options/registerSettings.php:47
+msgid "Color Scheme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:13 admin/options/registerSettings.php:41
+msgid "Custom Logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:121
+msgid "Custom logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:128
+msgid "Custom logo (square) Used in the \"folded\" menu "
+msgstr ""
+
+#: admin/options/registerSettings.php:29
+msgid "Dashboard"
+msgstr ""
+
+#: admin/options/registerSettings.php:82
+msgid "Do not rename Posts to Blog "
+msgstr ""
+
+#: admin/options/help.php:62
+msgid "Donate towards this plugin"
+msgstr ""
+
+#: admin/options/help.php:48
+msgid "Download an older version of the plugin."
+msgstr ""
+
+#: admin/functions/postToBlog.php:31
+msgid "Edit Blog Post"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:12
+msgid "General Settings"
+msgstr ""
+
+#. Author of the plugin
+msgid "Guy Primavera"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:15
+msgid "Help"
+msgstr ""
+
+#: admin/options/registerSettings.php:89
+msgid "Hide Footer credit link."
+msgstr ""
+
+#. Author URI of the plugin
+msgid "https://guyprimavera.com/"
+msgstr ""
+
+#. URI of the plugin
+msgid "https://wordpress.org/plugins/aquila-admin-theme/"
+msgstr ""
+
+#: admin/options/help.php:33
+msgid "It's a hub for gits."
+msgstr ""
+
+#: admin/options/help.php:28
+msgid "Je voudrais un sandwich."
+msgstr ""
+
+#: admin/options/help.php:57
+msgid "Leave a review"
+msgstr ""
+
+#: admin/options/help.php:58
+msgid "Let me know what you think!"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:44
+msgid "Memory Usage"
+msgstr ""
+
+#: admin/options/registerSettings.php:167
+msgid "Menu Background Color"
+msgstr ""
+
+#: admin/options/registerSettings.php:174
+msgid "Menu Text Color"
+msgstr ""
+
+#: admin/functions/postToBlog.php:35
+msgid "No Blog Posts found"
+msgstr ""
+
+#: admin/functions/postToBlog.php:36
+msgid "No Blog Posts found in Trash"
+msgstr ""
+
+#: admin/options/help.php:53
+msgid "On GuyPrimavera.com."
+msgstr ""
+
+#: admin/options/help.php:13 admin/options/help.php:43
+msgid "On WordPress.org."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:43
+msgid "PHP"
+msgstr ""
+
+#: admin/functions/pluginList.php:3
+msgid "Plugins Support"
+msgstr ""
+
+#: admin/options/help.php:47
+msgid "Previous versions"
+msgstr ""
+
+#: admin/options/registerSettings.php:137
+msgid "Primary Color"
+msgstr ""
+
+#: admin/options/helpers.php:31
+msgid "Remove logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:34
+msgid "Search Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:144
+msgid "Secondary Color"
+msgstr ""
+
+#: admin/options/help.php:22
+msgid "See the ChangeLog"
+msgstr ""
+
+#: admin/options/help.php:8
+msgid "See the features and recent updates."
+msgstr ""
+
+#: admin/options/help.php:23
+msgid "See what's changed."
+msgstr ""
+
+#: admin/options/callbacks.php:14
+msgid "Select a new color scheme for the admin area."
+msgstr ""
+
+#: admin/options/callbacks.php:17
+msgid "Select colors for the admin menu and admin bar."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:42
+msgid "Server IP"
+msgstr ""
+
+#: admin/options/registerSettings.php:191
+msgid "Settings"
+msgstr ""
+
+#: admin/options/registerSettings.php:105
+msgid "Show Adminbar links?"
+msgstr ""
+
+#: admin/options/registerSettings.php:112
+msgid "Show Full Adminbar by default on front-end?"
+msgstr ""
+
+#: admin/options/registerSettings.php:96
+msgid "Show WordPress Update notices."
+msgstr ""
+
+#: admin/options/registerSettings.php:75
+msgid "Show all other Dashboard metaboxes ?"
+msgstr ""
+
+#: admin/options/registerSettings.php:68
+msgid "Show Editors Plugins Support metabox?"
+msgstr ""
+
+#: admin/options/help.php:38
+msgid "Similar to GitHub."
+msgstr ""
+
+#: admin/options/help.php:18
+msgid "Something not working? Let me know."
+msgstr ""
+
+#. Description of the plugin
+msgid "The Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/help.php:63
+msgid "This full-version is free to use, but every little helps!"
+msgstr ""
+
+#: admin/options/help.php:27
+msgid "Translate into your language"
+msgstr ""
+
+#: admin/options/helpers.php:30
+msgid "Upload logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:33
+msgid "View Blog Post"
+msgstr ""
+
+#: admin/options/help.php:42
+msgid "View the development log"
+msgstr ""
+
+#: admin/options/help.php:52
+msgid "View the plugin's web page"
+msgstr ""
+
+#: admin/options/help.php:32
+msgid "View the source code on GitHub"
+msgstr ""
+
+#: admin/options/help.php:37
+msgid "View the source code on WP Trac"
+msgstr ""
+
+#: admin/options/help.php:12
+msgid "View the support forum"
+msgstr ""
+
+#: admin/options/help.php:7
+msgid "View this plugin on WordPress.org"
+msgstr ""
+
+#: admin/widgets/pluginWidget.php:33
+#, php-format
+msgid "Visible to Administrators only"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:39
+msgid "WordPress"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:47
+msgid "WordPress Lessons"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:58
+msgid "WordPress User Guide"
+msgstr ""
diff --git a/lang/aquila-admin-theme-en_GB.mo b/lang/aquila-admin-theme-en_GB.mo
index bc6119c1c661bba72b40af063f962d280da57bac..7f5b2dff01d7bbc1498173099b242df567a08002 100644
GIT binary patch
literal 5355
zcmeH}PmCN#6^ARt5ZDkLLJ}Z>P+nr;74*#RViITePwZXq+MDdMi+47GOQN3Xnwe&M
zy2f4I9uI<`T%!O|5FBy{M9L+KAQwOw0TMa*0tXO=3j`?=mJkFkAOr^l-|Oy~S(^pH
z!G}m*&Gy$-^{VRCd%vo#-`sZKD~i8${@=&{XWt|xrG9;2%v*SUmGV2`AK=^IKj1sy
zO>b7}E$~iw8+<=J2&bX6A1}EHWyr^%^lz5z!YRsq_;&a_ycvG8}I-N9^qEhzJS3Em2ygW~tgQ0DyslzCo(x5L-rd*BT>75(mlcT=8%;>QZS1D=7h
zo(_B$JP##KPeU2!MJRFkA-oa(6pH<&vi`SF{P-)BbsczXVSg(WyUDUV3-6_T63RRw
z^x)@U6}|*z{l9|z)MXxr;h&(y=XM&!?i27n_#`|EzY8TVe}o@|YJyyWd*K6c4$68m
zDE>VIC63QQiO)Bn#Q7q;2fhYB0L56w(eMzwA0CIFf=s2Jg%Xz+pv37r@V)TIa0Xt6
zU%o-9cN1)h&r3YS&kIoc{{)I3zl5YpT`t>ShZ47cmhA^I61#hNNS-|?{bx(g!zs$E
zkS?kRnOZ$j@+m0s`zn-vKZl~PSD~!?ZYDbd?}JpS$D!yehBDsgq0IXQDDyl6Wxd~r
z62G58>Gyjm`uaN*ecizz62D0(<2}Gb^8OH%c^`u^&HzdrzX(NNUxy5#UMTCo1!eq;
zP}cQ}vi>#5PyM+pA7BvC*PT%2nS&L$38&!`P}cu46n$NQqOVt=#OHUg3J;Sc(bo=khZPd
zt-`LNR)R1cCqkVvu}S<$kHUQ_8|bYh?E3Wg)oBy;)afu7`?_jv%IM9+Fwn>~9fk33
zMXjYDa)i8-HS$om!_-yOLq?yoS&;a6o5kAsanKK&or+pFOoDl0&V{B=F(qbtH@1D<
z@A#=?O4bC)?R7aZbd2|wMnp*80RWBX;;+N=`FRD2i=WCN%OhTW^NdCr}AO&I2V^X
zgZnHsSJJlelV)d+Z))2#Z5;R`>up1hQPOh9kJ|<*Vo}tzjGtz>LY4!<)--XdvtEEG
zh_e_;+(iUH2GAyr@iF;68VYQlZH2k}1W1s`m^0O$_sJO*ONj(z>S9KmG
zNAKiu7*EAM3!8ad#3hkE2hzy3t1>w5)-|c$u;2nWdbF7_82m
z`G{_0sWvnY*nnvo8Qo#Sxf<#USN%l>iw0^m-1v>OIA>$G
zr-rjV;b7nlRGl>KxmvZ_&IY~V5h=$+b<{$7gWmA0s1~tuRX_jOdHK%qh;G+ZIUww(
z*_z&3;5|~D)U|yiFmcAnSI^sU?J)3`vbOW;wx%bxHtXIpUoZIvdMC+qP0vox9P?&o
zyqS;cnWMF%_kVbrKMcJyoK5m2*w^l3M+>`k-=*GAH8!c0=fZryH+wuVE^Nn*L65mAD;+uA`6aJUlgOt7#KIerjogoyG^oTeV5o)pSfuD7uB&Ir(()
zx)AF_3wma5Vq6RU4>K9rrjP5U(g;6O<+k!)ZZp{%=sLp<=lXr7
zxIVr??=x9))rE$NeQq!N)ya)!i7VmewYtyX%Kvkr!F+gsxfVAXwEn+cY1qKm?=)P6
OuHR{{-)XMRo#tP?@dZBs
literal 751
zcmaKp&2G~`6om~G7Uow-R9R>_BLY9aW`q6bU7?Ri#8ktwHS2#J+U~?3rjh1|oO?
z9)LYdSg~Wx1MmbacmSS)V<&1ULcP+bGuLzG%*glG&9#pn>JqpOM&L4d51RT6u7EG#
z7Wf9Pf*;^I_z48~4W{QjZv!;@@6LPPI`jkd8uSzN2J|a5fPRO<>a77RkL%)Ubz!B=
zyV@F>!dN;?XI!#3W?j=jrmu2qYMoKL=}oLErCqGLLr#s({_YD-9ZAyshSD~zYSZWl
z!EVMRvr=i2mSun}^AdKkpNVH|D`j*{{sGU8bz)rQDieb`uS8;E%In3Wj4PGv>7rE5
z1gRqevJeH1Q>V(ll5q3qVOVL)mxphB`!VpGrz^_$v!~cEVrEk1H-Z^Ctl8zpLp^pQ3v`|GC&>%~m>NW11Mwl%q}%2Alp!>b#aYi-cu~
tUp0~yUe?@LEZxVBm{`Bq8~9!`wEE1E*7np)(ViY^`{AFdBJqr|{sI2L%+de=
diff --git a/lang/aquila-admin-theme-en_GB.po b/lang/aquila-admin-theme-en_GB.po
index 83f06b7..cbf1c28 100644
--- a/lang/aquila-admin-theme-en_GB.po
+++ b/lang/aquila-admin-theme-en_GB.po
@@ -1,180 +1,317 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
msgid ""
msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: guy@designbymito.com\n"
-"POT-Creation-Date: 2017-09-29 16:46+0100\n"
-"PO-Revision-Date: 2017-09-29 16:49+0100\n"
+"Project-Id-Version: Aquila Admin Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-11-13 14:47+0000\n"
+"PO-Revision-Date: 2018-11-13 14:54+0000\n"
+"Last-Translator: admin \n"
+"Language-Team: English (UK)\n"
+"Language: en_GB\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.0.4\n"
-"Language-Team: \n"
-"Last-Translator: \n"
-"Language: en_GB\n"
+"X-Generator: Loco https://localise.biz/"
-#: admin/options.php:10 admin/options.php:25
-msgid "Aquila Settings"
-msgstr ""
+#: admin/functions/postToBlog.php:17 admin/functions/postToBlog.php:29
+#: admin/functions/postToBlog.php:30
+msgid "Add Blog Post"
+msgstr "Add Blog Post"
+
+#: admin/options/registerSettings.php:35
+msgid "Admin bar"
+msgstr "Admin bar"
+
+#: admin/options/registerSettings.php:53
+msgid "Admin Menu Colors"
+msgstr "Admin Menu Colours"
+
+#: admin/functions/postToBlog.php:37
+msgid "All Blog Posts"
+msgstr "All Blog Posts"
-#: admin/options.php:11 admin/widgets/welcomeWidget.php:48
+#: admin/options/registerSettings.php:11 admin/widgets/welcomeWidget.php:40
msgid "Aquila"
-msgstr ""
+msgstr "Aquila"
-#: admin/options.php:32
-msgid "Show Adminbar links?"
-msgstr ""
+#. Name of the plugin
+msgid "Aquila Admin Theme"
+msgstr "Aquila Admin Theme"
-#: admin/options.php:40
-msgid "Show Editors Plugins Support metabox?"
-msgstr ""
+#: admin/options/createOptionsPage.php:6 admin/options/registerSettings.php:10
+msgid "Aquila Settings"
+msgstr "Aquila Settings"
-#: admin/options.php:48
-msgid "Show all other Dashboard metaboxes ?"
-msgstr ""
+#: admin/adminBar/adminBarLinks.php:69
+msgid "Aquila Support"
+msgstr "Aquila Support"
-#: admin/options.php:56
-msgid "Do not rename Posts to Blog "
-msgstr ""
+#: admin/options/help.php:17
+msgid "Ask a question"
+msgstr "Ask a question"
-#: admin/options.php:64
-msgid "Hide Footer credit link."
-msgstr ""
+#: admin/functions/postToBlog.php:14 admin/functions/postToBlog.php:27
+#: admin/functions/postToBlog.php:38 admin/functions/postToBlog.php:39
+msgid "Blog"
+msgstr "Blog"
-#: admin/options.php:72
-msgid "Show WordPress Update notices."
-msgstr ""
+#: admin/functions/postToBlog.php:28 admin/functions/postToBlog.php:32
+msgid "Blog Post"
+msgstr "Blog Post"
-#: admin/options.php:85
+#: admin/functions/postToBlog.php:20
+msgid "Blog Tags"
+msgstr "Blog Tags"
+
+#: admin/options/callbacks.php:11
+msgid "Choose a custom logo for your admin area."
+msgstr "Choose a custom logo for your admin area."
+
+#: admin/options/createOptionsPage.php:14 admin/options/registerSettings.php:47
+msgid "Color Scheme"
+msgstr "Colour Scheme"
+
+#: admin/options/createOptionsPage.php:13 admin/options/registerSettings.php:41
msgid "Custom Logo"
-msgstr ""
+msgstr "Custom Logo"
-#: admin/options.php:92
+#: admin/options/registerSettings.php:121
msgid "Custom logo"
-msgstr ""
+msgstr "Custom logo"
-#: admin/options.php:100
+#: admin/options/registerSettings.php:128
msgid "Custom logo (square) Used in the \"folded\" menu "
-msgstr ""
+msgstr "Custom logo (square) Used in the \"folded\" menu "
-#: admin/options.php:113
-msgid "Color Scheme"
-msgstr "Colour Scheme"
+#: admin/options/registerSettings.php:29
+msgid "Dashboard"
+msgstr "Dashboard"
+
+#: admin/options/registerSettings.php:82
+msgid "Do not rename Posts to Blog "
+msgstr "Do not rename Posts to Blog "
+
+#: admin/options/help.php:62
+msgid "Donate towards this plugin"
+msgstr "Donate towards this plugin"
+
+#: admin/options/help.php:48
+msgid "Download an older version of the plugin."
+msgstr "Download an older version of the plugin."
+
+#: admin/functions/postToBlog.php:31
+msgid "Edit Blog Post"
+msgstr "Edit Blog Post"
+
+#: admin/options/createOptionsPage.php:12
+msgid "General Settings"
+msgstr "General Settings"
+
+#. Author of the plugin
+msgid "Guy Primavera"
+msgstr "Guy Primavera"
+
+#: admin/options/createOptionsPage.php:15
+msgid "Help"
+msgstr "Help"
+
+#: admin/options/registerSettings.php:89
+msgid "Hide Footer credit link."
+msgstr "Hide Footer credit link."
+
+#. Author URI of the plugin
+msgid "https://guyprimavera.com/"
+msgstr "https://guyprimavera.com/"
+
+#. URI of the plugin
+msgid "https://wordpress.org/plugins/aquila-admin-theme/"
+msgstr "https://wordpress.org/plugins/aquila-admin-theme/"
+
+#: admin/options/help.php:33
+msgid "It's a hub for gits."
+msgstr "It's a hub for gits."
+
+#: admin/options/help.php:28
+msgid "Je voudrais un sandwich."
+msgstr "Je voudrais un sandwich."
+
+#: admin/options/help.php:57
+msgid "Leave a review"
+msgstr "Leave a review"
+
+#: admin/options/help.php:58
+msgid "Let me know what you think!"
+msgstr "Let me know what you think!"
+
+#: admin/widgets/welcomeWidget.php:44
+msgid "Memory Usage"
+msgstr "Memory Usage"
+
+#: admin/options/registerSettings.php:167
+msgid "Menu Background Color"
+msgstr "Menu Background Colour"
+
+#: admin/options/registerSettings.php:174
+msgid "Menu Text Color"
+msgstr "Menu Text Colour"
+
+#: admin/functions/postToBlog.php:35
+msgid "No Blog Posts found"
+msgstr "No Blog Posts found"
+
+#: admin/functions/postToBlog.php:36
+msgid "No Blog Posts found in Trash"
+msgstr "No Blog Posts found in Bin"
+
+#: admin/options/help.php:53
+msgid "On GuyPrimavera.com."
+msgstr "On GuyPrimavera.com."
+
+#: admin/options/help.php:13 admin/options/help.php:43
+msgid "On WordPress.org."
+msgstr "On WordPress.org."
-#: admin/options.php:120
+#: admin/widgets/welcomeWidget.php:43
+msgid "PHP"
+msgstr "PHP"
+
+#: admin/functions/pluginList.php:3
+msgid "Plugins Support"
+msgstr "Plugins Support"
+
+#: admin/options/help.php:47
+msgid "Previous versions"
+msgstr "Previous versions"
+
+#: admin/options/registerSettings.php:137
msgid "Primary Color"
msgstr "Primary Colour"
-#: admin/options.php:128
+#: admin/options/helpers.php:31
+msgid "Remove logo"
+msgstr "Remove logo"
+
+#: admin/functions/postToBlog.php:34
+msgid "Search Blog Posts"
+msgstr "Search Blog Posts"
+
+#: admin/options/registerSettings.php:144
msgid "Secondary Color"
msgstr "Secondary Colour"
-#: admin/options.php:136
-msgid "Menu Background Color"
-msgstr "Menu Background Colour"
+#: admin/options/help.php:22
+msgid "See the ChangeLog"
+msgstr "See the ChangeLog"
-#: admin/options.php:310
-msgid "General changes to your admin area."
-msgstr ""
+#: admin/options/help.php:8
+msgid "See the features and recent updates."
+msgstr "See the features and recent updates."
-#: admin/options.php:314
-msgid "Choose a custom logo for your admin area."
-msgstr ""
+#: admin/options/help.php:23
+msgid "See what's changed."
+msgstr "See what's changed."
-#: admin/options.php:318
+#: admin/options/callbacks.php:14
msgid "Select a new color scheme for the admin area."
msgstr "Select a new colour scheme for the admin area."
-#: admin/adminBar/adminBarLinks.php:60
-msgid "WordPress Lessons"
-msgstr ""
+#: admin/options/callbacks.php:17
+msgid "Select colors for the admin menu and admin bar."
+msgstr "Select colours for the admin menu and admin bar."
-#: admin/adminBar/adminBarLinks.php:65 admin/adminBar/adminBarLinks.php:77
-#: admin/adminBar/adminBarLinks.php:89
-msgid "_blank"
-msgstr ""
+#: admin/widgets/welcomeWidget.php:42
+msgid "Server IP"
+msgstr "Server IP"
-#: admin/adminBar/adminBarLinks.php:72
-msgid "WordPress User Guide"
-msgstr ""
+#: admin/options/registerSettings.php:191
+msgid "Settings"
+msgstr "Settings"
-#: admin/adminBar/adminBarLinks.php:84
-msgid "Aquila Support"
-msgstr ""
+#: admin/options/registerSettings.php:105
+msgid "Show Adminbar links?"
+msgstr "Show Adminbar links?"
-#: admin/adminBar/screenLinks.php:12 admin/adminBar/screenLinks.php:22
-msgid "screenLink"
-msgstr ""
+#: admin/options/registerSettings.php:112
+msgid "Show Full Adminbar by default on front-end?"
+msgstr "Show Full Adminbar by default on front-end?"
-#: admin/functions/postToBlog.php:15 admin/functions/postToBlog.php:25
-#: admin/functions/postToBlog.php:36 admin/functions/postToBlog.php:37
-msgid "Blog"
-msgstr ""
+#: admin/options/registerSettings.php:96
+msgid "Show WordPress Update notices."
+msgstr "Show WordPress Update notices."
-#: admin/functions/postToBlog.php:16 admin/functions/postToBlog.php:27
-#: admin/functions/postToBlog.php:28
-msgid "Add Blog Post"
-msgstr ""
+#: admin/options/registerSettings.php:75
+msgid "Show all other Dashboard metaboxes ?"
+msgstr "Show all other Dashboard metaboxes ?"
-#: admin/functions/postToBlog.php:17
-msgid "Blog Tags"
-msgstr ""
+#: admin/options/registerSettings.php:68
+msgid "Show Editors Plugins Support metabox?"
+msgstr "Show Editors Plugins Support metabox?"
-#: admin/functions/postToBlog.php:26 admin/functions/postToBlog.php:30
-msgid "Blog Post"
-msgstr ""
+#: admin/options/help.php:38
+msgid "Similar to GitHub."
+msgstr "Similar to GitHub."
-#: admin/functions/postToBlog.php:29
-msgid "Edit Blog Post"
-msgstr ""
+#: admin/options/help.php:18
+msgid "Something not working? Let me know."
+msgstr "Something not working? Let me know."
-#: admin/functions/postToBlog.php:31
-msgid "View Blog Post"
-msgstr ""
+#. Description of the plugin
+msgid "The Aquila Admin Theme"
+msgstr "The Aquila Admin Theme"
-#: admin/functions/postToBlog.php:32
-msgid "Search Blog Posts"
-msgstr ""
+#: admin/options/help.php:63
+msgid "This full-version is free to use, but every little helps!"
+msgstr "This full-version is free to use, but every little helps!"
+
+#: admin/options/help.php:27
+msgid "Translate into your language"
+msgstr "Translate into your language"
+
+#: admin/options/helpers.php:30
+msgid "Upload logo"
+msgstr "Upload logo"
#: admin/functions/postToBlog.php:33
-msgid "No Blog Posts found"
-msgstr ""
+msgid "View Blog Post"
+msgstr "View Blog Post"
-#: admin/functions/postToBlog.php:34
-msgid "No Blog Posts found in Trash"
-msgstr ""
+#: admin/options/help.php:42
+msgid "View the development log"
+msgstr "View the development log"
-#: admin/functions/postToBlog.php:35
-msgid "All Blog Posts"
-msgstr ""
+#: admin/options/help.php:52
+msgid "View the plugin's web page"
+msgstr "View the plugin's web page"
-#: admin/widgets/pluginWidget.php:36
-#, php-format
-msgid "Visible to Editors
"
-msgstr ""
+#: admin/options/help.php:32
+msgid "View the source code on GitHub"
+msgstr "View the source code on GitHub"
+
+#: admin/options/help.php:37
+msgid "View the source code on WP Trac"
+msgstr "View the source code on WP Trac"
+
+#: admin/options/help.php:12
+msgid "View the support forum"
+msgstr "View the support forum"
-#: admin/widgets/pluginWidget.php:38
+#: admin/options/help.php:7
+msgid "View this plugin on WordPress.org"
+msgstr "View this plugin on WordPress.org"
+
+#: admin/widgets/pluginWidget.php:33
#, php-format
-msgid "Visible to Administrators
"
-msgstr ""
+msgid "Visible to Administrators only"
+msgstr "Visible to Administrators only"
-#: admin/widgets/welcomeWidget.php:47
+#: admin/widgets/welcomeWidget.php:39
msgid "WordPress"
-msgstr ""
+msgstr "WordPress"
-#: admin/widgets/welcomeWidget.php:50
-msgid "Server IP"
-msgstr ""
-
-#: admin/widgets/welcomeWidget.php:51
-msgid "PHP"
-msgstr ""
+#: admin/adminBar/adminBarLinks.php:47
+msgid "WordPress Lessons"
+msgstr "WordPress Lessons"
-#: admin/widgets/welcomeWidget.php:52
-msgid "Memory Usage"
-msgstr ""
+#: admin/adminBar/adminBarLinks.php:58
+msgid "WordPress User Guide"
+msgstr "WordPress User Guide"
diff --git a/lang/aquila-admin-theme-it_IT-backup-201811131506370.po~ b/lang/aquila-admin-theme-it_IT-backup-201811131506370.po~
new file mode 100644
index 0000000..e0bcff9
--- /dev/null
+++ b/lang/aquila-admin-theme-it_IT-backup-201811131506370.po~
@@ -0,0 +1,317 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Aquila Admin Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-11-13 14:47+0000\n"
+"PO-Revision-Date: 2018-11-13 14:54+0000\n"
+"Last-Translator: admin \n"
+"Language-Team: \n"
+"Language: it_IT\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Loco https://localise.biz/"
+
+#: admin/functions/postToBlog.php:17 admin/functions/postToBlog.php:29
+#: admin/functions/postToBlog.php:30
+msgid "Add Blog Post"
+msgstr ""
+
+#: admin/options/registerSettings.php:35
+msgid "Admin bar"
+msgstr ""
+
+#: admin/options/registerSettings.php:53
+msgid "Admin Menu Colors"
+msgstr ""
+
+#: admin/functions/postToBlog.php:37
+msgid "All Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:11 admin/widgets/welcomeWidget.php:40
+msgid "Aquila"
+msgstr ""
+
+#. Name of the plugin
+msgid "Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:6 admin/options/registerSettings.php:10
+msgid "Aquila Settings"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:69
+msgid "Aquila Support"
+msgstr ""
+
+#: admin/options/help.php:17
+msgid "Ask a question"
+msgstr ""
+
+#: admin/functions/postToBlog.php:14 admin/functions/postToBlog.php:27
+#: admin/functions/postToBlog.php:38 admin/functions/postToBlog.php:39
+msgid "Blog"
+msgstr ""
+
+#: admin/functions/postToBlog.php:28 admin/functions/postToBlog.php:32
+msgid "Blog Post"
+msgstr ""
+
+#: admin/functions/postToBlog.php:20
+msgid "Blog Tags"
+msgstr ""
+
+#: admin/options/callbacks.php:11
+msgid "Choose a custom logo for your admin area."
+msgstr ""
+
+#: admin/options/createOptionsPage.php:14 admin/options/registerSettings.php:47
+msgid "Color Scheme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:13 admin/options/registerSettings.php:41
+msgid "Custom Logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:121
+msgid "Custom logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:128
+msgid "Custom logo (square) Used in the \"folded\" menu "
+msgstr ""
+
+#: admin/options/registerSettings.php:29
+msgid "Dashboard"
+msgstr ""
+
+#: admin/options/registerSettings.php:82
+msgid "Do not rename Posts to Blog "
+msgstr ""
+
+#: admin/options/help.php:62
+msgid "Donate towards this plugin"
+msgstr ""
+
+#: admin/options/help.php:48
+msgid "Download an older version of the plugin."
+msgstr ""
+
+#: admin/functions/postToBlog.php:31
+msgid "Edit Blog Post"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:12
+msgid "General Settings"
+msgstr ""
+
+#. Author of the plugin
+msgid "Guy Primavera"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:15
+msgid "Help"
+msgstr ""
+
+#: admin/options/registerSettings.php:89
+msgid "Hide Footer credit link."
+msgstr ""
+
+#. Author URI of the plugin
+msgid "https://guyprimavera.com/"
+msgstr ""
+
+#. URI of the plugin
+msgid "https://wordpress.org/plugins/aquila-admin-theme/"
+msgstr ""
+
+#: admin/options/help.php:33
+msgid "It's a hub for gits."
+msgstr ""
+
+#: admin/options/help.php:28
+msgid "Je voudrais un sandwich."
+msgstr ""
+
+#: admin/options/help.php:57
+msgid "Leave a review"
+msgstr ""
+
+#: admin/options/help.php:58
+msgid "Let me know what you think!"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:44
+msgid "Memory Usage"
+msgstr ""
+
+#: admin/options/registerSettings.php:167
+msgid "Menu Background Color"
+msgstr ""
+
+#: admin/options/registerSettings.php:174
+msgid "Menu Text Color"
+msgstr ""
+
+#: admin/functions/postToBlog.php:35
+msgid "No Blog Posts found"
+msgstr ""
+
+#: admin/functions/postToBlog.php:36
+msgid "No Blog Posts found in Trash"
+msgstr ""
+
+#: admin/options/help.php:53
+msgid "On GuyPrimavera.com."
+msgstr ""
+
+#: admin/options/help.php:13 admin/options/help.php:43
+msgid "On WordPress.org."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:43
+msgid "PHP"
+msgstr ""
+
+#: admin/functions/pluginList.php:3
+msgid "Plugins Support"
+msgstr ""
+
+#: admin/options/help.php:47
+msgid "Previous versions"
+msgstr ""
+
+#: admin/options/registerSettings.php:137
+msgid "Primary Color"
+msgstr ""
+
+#: admin/options/helpers.php:31
+msgid "Remove logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:34
+msgid "Search Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:144
+msgid "Secondary Color"
+msgstr ""
+
+#: admin/options/help.php:22
+msgid "See the ChangeLog"
+msgstr ""
+
+#: admin/options/help.php:8
+msgid "See the features and recent updates."
+msgstr ""
+
+#: admin/options/help.php:23
+msgid "See what's changed."
+msgstr ""
+
+#: admin/options/callbacks.php:14
+msgid "Select a new color scheme for the admin area."
+msgstr ""
+
+#: admin/options/callbacks.php:17
+msgid "Select colors for the admin menu and admin bar."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:42
+msgid "Server IP"
+msgstr ""
+
+#: admin/options/registerSettings.php:191
+msgid "Settings"
+msgstr ""
+
+#: admin/options/registerSettings.php:105
+msgid "Show Adminbar links?"
+msgstr ""
+
+#: admin/options/registerSettings.php:112
+msgid "Show Full Adminbar by default on front-end?"
+msgstr ""
+
+#: admin/options/registerSettings.php:96
+msgid "Show WordPress Update notices."
+msgstr ""
+
+#: admin/options/registerSettings.php:75
+msgid "Show all other Dashboard metaboxes ?"
+msgstr ""
+
+#: admin/options/registerSettings.php:68
+msgid "Show Editors Plugins Support metabox?"
+msgstr ""
+
+#: admin/options/help.php:38
+msgid "Similar to GitHub."
+msgstr ""
+
+#: admin/options/help.php:18
+msgid "Something not working? Let me know."
+msgstr ""
+
+#. Description of the plugin
+msgid "The Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/help.php:63
+msgid "This full-version is free to use, but every little helps!"
+msgstr ""
+
+#: admin/options/help.php:27
+msgid "Translate into your language"
+msgstr ""
+
+#: admin/options/helpers.php:30
+msgid "Upload logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:33
+msgid "View Blog Post"
+msgstr ""
+
+#: admin/options/help.php:42
+msgid "View the development log"
+msgstr ""
+
+#: admin/options/help.php:52
+msgid "View the plugin's web page"
+msgstr ""
+
+#: admin/options/help.php:32
+msgid "View the source code on GitHub"
+msgstr ""
+
+#: admin/options/help.php:37
+msgid "View the source code on WP Trac"
+msgstr ""
+
+#: admin/options/help.php:12
+msgid "View the support forum"
+msgstr ""
+
+#: admin/options/help.php:7
+msgid "View this plugin on WordPress.org"
+msgstr ""
+
+#: admin/widgets/pluginWidget.php:33
+#, php-format
+msgid "Visible to Administrators only"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:39
+msgid "WordPress"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:47
+msgid "WordPress Lessons"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:58
+msgid "WordPress User Guide"
+msgstr ""
diff --git a/lang/aquila-admin-theme-it_IT.mo b/lang/aquila-admin-theme-it_IT.mo
index e9c37e17bac14510c073d253b6f195d7d3dc1b70..d5fb62adc30f53bedbce253eb62322f71bebc037 100644
GIT binary patch
literal 5753
zcmb`KTWnlM8Gxr3C^hs#DYv%3#I#DHcGq?YZEzeXjuR(_Bz0mZ1*u$S_l$RkoISHW
zb52}GRH6?^NZh1Kyzo$gR3WOWfOtR%)FQR00`Y>-<~u7%>47;=HK7na_v_YKd1P+gTK#QEl*1Q_S!LT;N$Ojek*(#UJw5XZ-m#q
zL8&*wcfecVd*DrQ8p`;Qn)gFl@)J{t(Xb`~sAD*Ra_k
zcmuo*egy7;>rnRl3cMLU4n^hDEmAIZ-uYGcfqT!tLEJXZ|8Y06g`f^x5IN#
z&eMl)gAYTo(-)zv^CT3zJPWUZzknkDtNQ&Pq3H1sDCfHNO_lu3P~;}-=Y8-_o{vG<
z$H5kS1Wv)Hpq&3VkYDu@|L%f+fnuLq85Fs*@Lu>R+z)>M#V>z`?}usvUx7Q}hu}dd
z=P9A+_ZSpAJ`Tk`PeZZu3-G=05Ac0Zgk>EKcftGM5%@94R_bd|?D7N@JAEI%8~z;5
zz?a~cuTtur7+co)CPor_KLcgoU)ImBKwPD+MkzVR^-%0{2NXX~L$Tum6hEJZvi}7r
zcKQ@tfDXz&PeGagT+LrYiTyu8T%_(}F^R9kQ1pHT-VGmvGXGg9dcFuzO}z{WP4z0A
zhX01L{xr(TIgUY*|2P!;1t{x02E`svLb22HQ2g*B+ynm(W&hh5l<{f)NqilJvfdJu
zeIA5tsfJME_Onpz^d-oz`g+apL5YW-K+)?}xD0PWcm+NPk_F9oW&URa+D;>y0G!YB?PGoIS!tZS+H>4TbZW
zlFj44N`t7&nqk^v-}_(@?UteN1C5;5>ps_;zRb0Wnws32wu-9i)o$Epo3vGN}jHVQz|1bvy=fz@-N$bHtE7vqJwsrpG5z8R78Gy}}eOko+{V6DJzF6d!e_FTr$MwWV$Xp?E#
zKi8LR9rt&ruC0zIt{6K)ov@kBO{yDnpC~u=O6~@R`9__z=}?_?$ynDV?+aG%
z=9YyT)pY8zi*2=B><*Z`Uv{FYd#(s=^hr<$EDr?OQPaKH%YB(8RjgHS*X+YZ{d~rc
zj~P%0Nwvc}aobvsgVg<*=J3tg+g(3s%gYCRo~-0HgtpInZMAZ8MXf}mhbAZ)zT|uv
zMn(@RE`!D~xYRk+=cqA~R;|gq{VlqwRonGhVjAgHi;sz<#lFdUmQX~Zdb4g#QKAZ7
zPB2^7W`!2|XDR|)pMdmFR$>a&eqjF-W$dBf@B$z+ruOrR@YX31+NH_p-LqaDUuk!P+O?IJ2k*i(=i)n4Pl@w9<0OvgW5Z(~r+W2U^B*yJ*?
z8YS&GbD87@lr`+;^$Ay;EISyn+jVR%}+8Nt2Da8xU%DqDpq6EC|~%$ye1
z9oQ)fg#R?D*;-Co7ph7|^}sfbp+4l5AJ9P#pH
z5+E*^8eNn|OWU)9_RZ)hre(&3^;mXc*?lO;|(YqZok+rVuPwz
zTJ4(LbxkyCU0AIqYr8ff?ytq(WD2aipg_8TBOGiXC#2iwexq4Dd3&rZLI!SB?B+so{q96<$
zofa!dJq~jJvs@M!*rjUodpRf}F_7NMnJU(!-@`f@$Ke?DqY=6c0!bPHb%rvDmeDAq
zWYILUm+;_!9Ym2-FG};Cd9_;Z&~fpyDa_-Jt8V|RI3~d=Pu7)ltM^9A#sZx?ugL!dC7iew8UE}^MzTv7Na7;n_OUl#1T5YvtoS}C3Tsr!U
z?62A~*Crb1()s=&=70WM%q6)nPt}x3%2$5N&`zXwO1&y;cV97KrD3a98YOF-f$rj^
z9daCv@i;Bnj`fQMekDdfS00I>wnjObAXh2HOj8Gzmw>8rx1>Vu?lRGvyIUt4HwN3(Z`tCq`}
znayd6SlOeu(;|1x{JIIOQ>jxGtu51ILnvQzM(yC)(xg>JlF9337TtGPFUeI>XDn_=
zx$*|4ZU!Yych{G}S^45?M&C0exd+3PMpPoKM{t%{?;g!m-{VRdx~??y+Q^*}yTYXG
zI?2KMD!`ZYgle%Wh;>I8P*HA;*VH`vth)N6vrC`m8hs7isDDJ@|D8bY+~eNvk4?2K&&J#>?Z2L(%zlUY|Bjd(mfMM
z^u$rGc=zVPn+%a0PqbLufb=*+aUS*J?MeIfaKpU9O5vz7aRdkgC{@*j)Px<Hk93(quKpc@>0?FSMkmBNl(_j~*
zdEbDv?%SL{gL8QP6QsC}4KcO{G$8qZ1FV3z!RNt0K=NlBjPC~zfQP_wkmB_|Nb&gq
zq;o|e?Rx_xKW>89iv0vqTz<{D56L)-=eNNs_&N9j_#H^|?|@|Qckos4Ul8F+8(d~8f6?F0+X=NOpa!2u@h9ji8qPS6Qq^;JST2W55Ldj#pYl3&IT%9Z(cBQGB
zi>=YY)U+Qdt?(dXV_j_|AFhpvsoF?)iamshIbUtPcG~y(OlSgLH!fz=Vc36iZ2D@V
zLXm?vWE?9U^oDsO>2{5c87)u$WHwT3O@Vo{9b=s2g0~YFn}}nc;j6~-b(2^w=u})-
zDavftgcxqLJ2H}NHk-YG*}dPia_~1l=B_4KI?QV=J2F+1(bTe&K8L}$BYA1ngue7k
zJd!%8jo>XiXSg;ow^EBp@?K==(EWg>3CM#>rzj%LD180EunSU4D?;Ax2pvdA>+Ux)?SXCq0fEnPXApOOiFBsyr~M3DQ8;n`78KsG;ul|lvqrmt
z5fq%|7ZRiykv1PAbl$x0tw`&X(N#WlS<>zB7G0oxZzc(x*ECfgBk;l`
zxox7M`a4Z;78fDLO79%vQRQQm(UV@~v^RE|kDjQGpEzC_tyD14yDZlr7hBFdS*^U8
z&0Cyboa?(XTCNPu8XZd=d(HJOtjF?tJkkw?(i2p~*2#Esxq03@)t_gDcB|5QbGmJO
zT>C0N)l%^gGJwkW&Kn!KD%aig(M^s`@a*U0G0hK7^3mamq4&J(ocNhXu5nLrY`;$7$n_hraikd2;f&POyXHjpgEds6Bggk0(k(Ho(%
zW28d^Rz<*ll@=sxv}F*cJCg?TF3QVj5vq+1M2a4HD0rNRR7h!+C;~wnOI#$n!vfx^
zObHZQAWQX4ma?(U*0&nt$Dq4DeTX(mFZrTze9~K9>M9vvq?9S|lF{5MZIB-*c5x%=
z$VHkct6K{1B5H3{wZ*{g%!eRHK_P{kU_Q?alwp!WzpK7092R5ht27mFUK@`85AuW7Msj5{bf
zDMJ_!)YoEel)@%(1=@oS<9}R9c8RDQij4Kuoh_shRTQn_42;yCZc-Q?O-N1CGU&hl
E4, YEAR.
-#
msgid ""
msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: guy@designbymito.com\n"
-"POT-Creation-Date: 2017-09-29 16:46+0100\n"
-"PO-Revision-Date: 2017-09-29 17:03+0100\n"
+"Project-Id-Version: Aquila Admin Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-11-13 14:47+0000\n"
+"PO-Revision-Date: 2018-11-13 15:06+0000\n"
+"Last-Translator: admin \n"
+"Language-Team: Italian\n"
+"Language: it_IT\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.0.4\n"
-"Language-Team: \n"
-"Last-Translator: \n"
-"Language: it\n"
+"X-Generator: Loco https://localise.biz/"
-#: admin/options.php:10 admin/options.php:25
-msgid "Aquila Settings"
-msgstr "Impostazioni Aquila"
+#: admin/functions/postToBlog.php:17 admin/functions/postToBlog.php:29
+#: admin/functions/postToBlog.php:30
+msgid "Add Blog Post"
+msgstr "Aggiungi post sul blog"
+
+#: admin/options/registerSettings.php:35
+msgid "Admin bar"
+msgstr "Barra di amministrazione"
-#: admin/options.php:11 admin/widgets/welcomeWidget.php:48
+#: admin/options/registerSettings.php:53
+msgid "Admin Menu Colors"
+msgstr "Colori del menu Admin"
+
+#: admin/functions/postToBlog.php:37
+msgid "All Blog Posts"
+msgstr "Tutti i post dei blog"
+
+#: admin/options/registerSettings.php:11 admin/widgets/welcomeWidget.php:40
msgid "Aquila"
msgstr "Aquila"
-#: admin/options.php:32
-msgid "Show Adminbar links?"
-msgstr "Mostra i link Barra Amministrativa ?"
+#. Name of the plugin
+msgid "Aquila Admin Theme"
+msgstr "Aquila Admin Theme"
-#: admin/options.php:40
-msgid "Show Editors Plugins Support metabox?"
-msgstr "Mostra il metabox Plugins Support agli Editori?"
+#: admin/options/createOptionsPage.php:6 admin/options/registerSettings.php:10
+msgid "Aquila Settings"
+msgstr "Impostazioni Aquila"
-#: admin/options.php:48
-msgid "Show all other Dashboard metaboxes ?"
-msgstr "Mostra tutte le altre Metabox di Bacheca ?"
+#: admin/adminBar/adminBarLinks.php:69
+msgid "Aquila Support"
+msgstr "Aiuto per Aquila"
-#: admin/options.php:56
-msgid "Do not rename Posts to Blog "
-msgstr "Non rinominare Post a Blog "
+#: admin/options/help.php:17
+msgid "Ask a question"
+msgstr "Fai una domanda"
-#: admin/options.php:64
-msgid "Hide Footer credit link."
-msgstr "Nascondi il link Footer credit ."
+#: admin/functions/postToBlog.php:14 admin/functions/postToBlog.php:27
+#: admin/functions/postToBlog.php:38 admin/functions/postToBlog.php:39
+msgid "Blog"
+msgstr "Blog"
-#: admin/options.php:72
-msgid "Show WordPress Update notices."
-msgstr "Mostra gli avvisi WordPress Update ."
+#: admin/functions/postToBlog.php:28 admin/functions/postToBlog.php:32
+msgid "Blog Post"
+msgstr "Post Blog"
+
+#: admin/functions/postToBlog.php:20
+msgid "Blog Tags"
+msgstr "Tag Blog"
-#: admin/options.php:85
+#: admin/options/callbacks.php:11
+msgid "Choose a custom logo for your admin area."
+msgstr "Scegli un logo personalizzato per la tua area di amministrazione."
+
+#: admin/options/createOptionsPage.php:14 admin/options/registerSettings.php:47
+msgid "Color Scheme"
+msgstr "Combinazione di colori"
+
+#: admin/options/createOptionsPage.php:13 admin/options/registerSettings.php:41
msgid "Custom Logo"
msgstr "Logo Personalizzato"
-#: admin/options.php:92
+#: admin/options/registerSettings.php:121
msgid "Custom logo"
msgstr "Logo personalizzato"
-#: admin/options.php:100
+#: admin/options/registerSettings.php:128
msgid "Custom logo (square) Used in the \"folded\" menu "
-msgstr "Logo personalizzato (quadrato) Usato nel menu \"piegato\" "
+msgstr ""
+"Logo personalizzato (quadrato) Utilizzato nel menu \"piegato\" "
+" "
-#: admin/options.php:113
-msgid "Color Scheme"
-msgstr "Schema dei Colori"
+#: admin/options/registerSettings.php:29
+msgid "Dashboard"
+msgstr "Bacheca"
+
+#: admin/options/registerSettings.php:82
+msgid "Do not rename Posts to Blog "
+msgstr "Non rinominare Post in Blog "
+
+#: admin/options/help.php:62
+msgid "Donate towards this plugin"
+msgstr "Dona a questo plugin"
+
+#: admin/options/help.php:48
+msgid "Download an older version of the plugin."
+msgstr "Scarica una versione precedente del plugin."
+
+#: admin/functions/postToBlog.php:31
+msgid "Edit Blog Post"
+msgstr "Modifica post del blog"
+
+#: admin/options/createOptionsPage.php:12
+msgid "General Settings"
+msgstr "Impostazioni Generali"
+
+#. Author of the plugin
+msgid "Guy Primavera"
+msgstr "Guy Primavera"
+
+#: admin/options/createOptionsPage.php:15
+msgid "Help"
+msgstr "Aiuto"
+
+#: admin/options/registerSettings.php:89
+msgid "Hide Footer credit link."
+msgstr "Nascondi il link Footer credit ."
+
+#. Author URI of the plugin
+msgid "https://guyprimavera.com/"
+msgstr "https://guyprimavera.com/"
+
+#. URI of the plugin
+msgid "https://wordpress.org/plugins/aquila-admin-theme/"
+msgstr "https://wordpress.org/plugins/aquila-admin-theme/"
+
+#: admin/options/help.php:33
+msgid "It's a hub for gits."
+msgstr "È un hub per gits."
+
+#: admin/options/help.php:28
+msgid "Je voudrais un sandwich."
+msgstr "The cat is on the table."
+
+#: admin/options/help.php:57
+msgid "Leave a review"
+msgstr "Lascia una recensione"
+
+#: admin/options/help.php:58
+msgid "Let me know what you think!"
+msgstr "Fatemi sapere cosa ne pensate!"
+
+#: admin/widgets/welcomeWidget.php:44
+msgid "Memory Usage"
+msgstr "Utilizzo della memoria"
+
+#: admin/options/registerSettings.php:167
+msgid "Menu Background Color"
+msgstr "Colore di sfondo del menu"
+
+#: admin/options/registerSettings.php:174
+msgid "Menu Text Color"
+msgstr "Colore testo menu"
+
+#: admin/functions/postToBlog.php:35
+msgid "No Blog Posts found"
+msgstr "Nessun post sul blog trovato"
+
+#: admin/functions/postToBlog.php:36
+msgid "No Blog Posts found in Trash"
+msgstr "Nessun post sul blog trovato nel Cestino"
-#: admin/options.php:120
+#: admin/options/help.php:53
+msgid "On GuyPrimavera.com."
+msgstr "Su GuyPrimavera.com."
+
+#: admin/options/help.php:13 admin/options/help.php:43
+msgid "On WordPress.org."
+msgstr "Su WordPress.org."
+
+#: admin/widgets/welcomeWidget.php:43
+msgid "PHP"
+msgstr "PHP"
+
+#: admin/functions/pluginList.php:3
+msgid "Plugins Support"
+msgstr "Supporto per i plugin"
+
+#: admin/options/help.php:47
+msgid "Previous versions"
+msgstr "Versione precedente"
+
+#: admin/options/registerSettings.php:137
msgid "Primary Color"
-msgstr "Colore Primario"
+msgstr "Colore primario"
+
+#: admin/options/helpers.php:31
+msgid "Remove logo"
+msgstr "Rimuovi logo"
-#: admin/options.php:128
+#: admin/functions/postToBlog.php:34
+msgid "Search Blog Posts"
+msgstr "Cerca post di blog"
+
+#: admin/options/registerSettings.php:144
msgid "Secondary Color"
-msgstr "Colore Secondario"
+msgstr "Colore secondario"
-#: admin/options.php:136
-msgid "Menu Background Color"
-msgstr "Colore di Sfondo del Menu"
+#: admin/options/help.php:22
+msgid "See the ChangeLog"
+msgstr "Vedi il ChangeLog"
-#: admin/options.php:310
-msgid "General changes to your admin area."
-msgstr "Modifiche generali per la tua area di amministrazione."
+#: admin/options/help.php:8
+msgid "See the features and recent updates."
+msgstr "Vedi le caratteristiche e gli aggiornamenti recenti."
-#: admin/options.php:314
-msgid "Choose a custom logo for your admin area."
-msgstr "Scegli un logo personalizzato per la tua area di amministrazione."
+#: admin/options/help.php:23
+msgid "See what's changed."
+msgstr "Guarda cosa è cambiato."
-#: admin/options.php:318
+#: admin/options/callbacks.php:14
msgid "Select a new color scheme for the admin area."
-msgstr "Selezionare un nuovo schema colore per l'area di amministrazione."
-
-#: admin/adminBar/adminBarLinks.php:60
-msgid "WordPress Lessons"
-msgstr "Lezioni di WordPress"
+msgstr ""
+"Seleziona una nuova combinazione di colori per l'area di amministrazione."
-#: admin/adminBar/adminBarLinks.php:65 admin/adminBar/adminBarLinks.php:77
-#: admin/adminBar/adminBarLinks.php:89
-msgid "_blank"
+#: admin/options/callbacks.php:17
+msgid "Select colors for the admin menu and admin bar."
msgstr ""
+"Seleziona i colori per il menu di amministrazione e la barra di "
+"amministrazione."
-#: admin/adminBar/adminBarLinks.php:72
-msgid "WordPress User Guide"
-msgstr "Guida dell'utente di WordPress"
+#: admin/widgets/welcomeWidget.php:42
+msgid "Server IP"
+msgstr "IP del server"
-#: admin/adminBar/adminBarLinks.php:84
-msgid "Aquila Support"
-msgstr "Assistenza Aquila"
+#: admin/options/registerSettings.php:191
+msgid "Settings"
+msgstr "Impostazioni"
-#: admin/adminBar/screenLinks.php:12 admin/adminBar/screenLinks.php:22
-msgid "screenLink"
+#: admin/options/registerSettings.php:105
+msgid "Show Adminbar links?"
+msgstr "Mostra i link Adminbar ?"
+
+#: admin/options/registerSettings.php:112
+msgid "Show Full Adminbar by default on front-end?"
msgstr ""
+"Mostra Full Adminbar per impostazione predefinita sul "
+"front-end?"
-#: admin/functions/postToBlog.php:15 admin/functions/postToBlog.php:25
-#: admin/functions/postToBlog.php:36 admin/functions/postToBlog.php:37
-msgid "Blog"
-msgstr "Blog"
+#: admin/options/registerSettings.php:96
+msgid "Show WordPress Update notices."
+msgstr "Mostra le notifiche Aggiornamento di WordPress ."
-#: admin/functions/postToBlog.php:16 admin/functions/postToBlog.php:27
-#: admin/functions/postToBlog.php:28
-msgid "Add Blog Post"
-msgstr "Aggiungi un Post sul Blog"
+#: admin/options/registerSettings.php:75
+msgid "Show all other Dashboard metaboxes ?"
+msgstr "Mostra tutti gli altri metabox della bacheca ?"
-#: admin/functions/postToBlog.php:17
-msgid "Blog Tags"
-msgstr "Tag di Blog"
+#: admin/options/registerSettings.php:68
+msgid "Show Editors Plugins Support metabox?"
+msgstr "Mostra ai editor Supporto per i plug-in ?"
-#: admin/functions/postToBlog.php:26 admin/functions/postToBlog.php:30
-msgid "Blog Post"
-msgstr "Post sul Blog"
+#: admin/options/help.php:38
+msgid "Similar to GitHub."
+msgstr "Simile a GitHub."
-#: admin/functions/postToBlog.php:29
-msgid "Edit Blog Post"
-msgstr "Modifica Blog Post"
+#: admin/options/help.php:18
+msgid "Something not working? Let me know."
+msgstr "Qualcosa non funziona? Fammi sapere."
-#: admin/functions/postToBlog.php:31
-msgid "View Blog Post"
-msgstr "Visualizza il Blog Post"
+#. Description of the plugin
+msgid "The Aquila Admin Theme"
+msgstr "Il tema Admin dell'Aquila"
-#: admin/functions/postToBlog.php:32
-msgid "Search Blog Posts"
-msgstr "Cerca i Post di Blog"
+#: admin/options/help.php:63
+msgid "This full-version is free to use, but every little helps!"
+msgstr "Questa versione completa è gratuita, ma ogni piccolo aiuto!"
+
+#: admin/options/help.php:27
+msgid "Translate into your language"
+msgstr "Traduci nella tua lingua"
+
+#: admin/options/helpers.php:30
+msgid "Upload logo"
+msgstr "Carica logo"
#: admin/functions/postToBlog.php:33
-msgid "No Blog Posts found"
-msgstr "Nessun Blog Post trovato"
+msgid "View Blog Post"
+msgstr "Visualizza post del blog"
-#: admin/functions/postToBlog.php:34
-msgid "No Blog Posts found in Trash"
-msgstr "Nessun Blog Post trovato nel cestino"
+#: admin/options/help.php:42
+msgid "View the development log"
+msgstr "Visualizza il registro di sviluppo"
-#: admin/functions/postToBlog.php:35
-msgid "All Blog Posts"
-msgstr "Tutti i post del blog"
+#: admin/options/help.php:52
+msgid "View the plugin's web page"
+msgstr "Visualizza la pagina web del plugin"
-#: admin/widgets/pluginWidget.php:36
-#, php-format
-msgid "Visible to Editors
"
-msgstr "Visibile a Editori
"
+#: admin/options/help.php:32
+msgid "View the source code on GitHub"
+msgstr "Visualizza il codice sorgente su GitHub"
+
+#: admin/options/help.php:37
+msgid "View the source code on WP Trac"
+msgstr "Visualizza il codice sorgente su WP Trac"
+
+#: admin/options/help.php:12
+msgid "View the support forum"
+msgstr "Visualizza il forum di supporto"
-#: admin/widgets/pluginWidget.php:38
+#: admin/options/help.php:7
+msgid "View this plugin on WordPress.org"
+msgstr "Visualizza questo plugin su WordPress.org"
+
+#: admin/widgets/pluginWidget.php:33
#, php-format
-msgid "Visible to Administrators
"
-msgstr "Visibile a Amministratori
"
+msgid "Visible to Administrators only"
+msgstr "Visibile solo agli amministratori "
-#: admin/widgets/welcomeWidget.php:47
+#: admin/widgets/welcomeWidget.php:39
msgid "WordPress"
msgstr "WordPress"
-#: admin/widgets/welcomeWidget.php:50
-msgid "Server IP"
-msgstr "Server IP"
-
-#: admin/widgets/welcomeWidget.php:51
-msgid "PHP"
-msgstr "PHP"
+#: admin/adminBar/adminBarLinks.php:47
+msgid "WordPress Lessons"
+msgstr "Lezioni di WordPress"
-#: admin/widgets/welcomeWidget.php:52
-msgid "Memory Usage"
-msgstr "Utilizzo della Memoria"
+#: admin/adminBar/adminBarLinks.php:58
+msgid "WordPress User Guide"
+msgstr "Guida dell'utente di WordPress"
diff --git a/lang/aquila-admin-theme.pot b/lang/aquila-admin-theme.pot
new file mode 100644
index 0000000..d9ca796
--- /dev/null
+++ b/lang/aquila-admin-theme.pot
@@ -0,0 +1,318 @@
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: Aquila Admin Theme\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-11-13 14:47+0000\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: \n"
+"Language: \n"
+"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Loco https://localise.biz/"
+
+#: admin/functions/postToBlog.php:17 admin/functions/postToBlog.php:29
+#: admin/functions/postToBlog.php:30
+msgid "Add Blog Post"
+msgstr ""
+
+#: admin/options/registerSettings.php:35
+msgid "Admin bar"
+msgstr ""
+
+#: admin/options/registerSettings.php:53
+msgid "Admin Menu Colors"
+msgstr ""
+
+#: admin/functions/postToBlog.php:37
+msgid "All Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:11 admin/widgets/welcomeWidget.php:40
+msgid "Aquila"
+msgstr ""
+
+#. Name of the plugin
+msgid "Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:6 admin/options/registerSettings.php:10
+msgid "Aquila Settings"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:69
+msgid "Aquila Support"
+msgstr ""
+
+#: admin/options/help.php:17
+msgid "Ask a question"
+msgstr ""
+
+#: admin/functions/postToBlog.php:14 admin/functions/postToBlog.php:27
+#: admin/functions/postToBlog.php:38 admin/functions/postToBlog.php:39
+msgid "Blog"
+msgstr ""
+
+#: admin/functions/postToBlog.php:28 admin/functions/postToBlog.php:32
+msgid "Blog Post"
+msgstr ""
+
+#: admin/functions/postToBlog.php:20
+msgid "Blog Tags"
+msgstr ""
+
+#: admin/options/callbacks.php:11
+msgid "Choose a custom logo for your admin area."
+msgstr ""
+
+#: admin/options/createOptionsPage.php:14 admin/options/registerSettings.php:47
+msgid "Color Scheme"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:13 admin/options/registerSettings.php:41
+msgid "Custom Logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:121
+msgid "Custom logo"
+msgstr ""
+
+#: admin/options/registerSettings.php:128
+msgid "Custom logo (square) Used in the \"folded\" menu "
+msgstr ""
+
+#: admin/options/registerSettings.php:29
+msgid "Dashboard"
+msgstr ""
+
+#: admin/options/registerSettings.php:82
+msgid "Do not rename Posts to Blog "
+msgstr ""
+
+#: admin/options/help.php:62
+msgid "Donate towards this plugin"
+msgstr ""
+
+#: admin/options/help.php:48
+msgid "Download an older version of the plugin."
+msgstr ""
+
+#: admin/functions/postToBlog.php:31
+msgid "Edit Blog Post"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:12
+msgid "General Settings"
+msgstr ""
+
+#. Author of the plugin
+msgid "Guy Primavera"
+msgstr ""
+
+#: admin/options/createOptionsPage.php:15
+msgid "Help"
+msgstr ""
+
+#: admin/options/registerSettings.php:89
+msgid "Hide Footer credit link."
+msgstr ""
+
+#. Author URI of the plugin
+msgid "https://guyprimavera.com/"
+msgstr ""
+
+#. URI of the plugin
+msgid "https://wordpress.org/plugins/aquila-admin-theme/"
+msgstr ""
+
+#: admin/options/help.php:33
+msgid "It's a hub for gits."
+msgstr ""
+
+#: admin/options/help.php:28
+msgid "Je voudrais un sandwich."
+msgstr ""
+
+#: admin/options/help.php:57
+msgid "Leave a review"
+msgstr ""
+
+#: admin/options/help.php:58
+msgid "Let me know what you think!"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:44
+msgid "Memory Usage"
+msgstr ""
+
+#: admin/options/registerSettings.php:167
+msgid "Menu Background Color"
+msgstr ""
+
+#: admin/options/registerSettings.php:174
+msgid "Menu Text Color"
+msgstr ""
+
+#: admin/functions/postToBlog.php:35
+msgid "No Blog Posts found"
+msgstr ""
+
+#: admin/functions/postToBlog.php:36
+msgid "No Blog Posts found in Trash"
+msgstr ""
+
+#: admin/options/help.php:53
+msgid "On GuyPrimavera.com."
+msgstr ""
+
+#: admin/options/help.php:13 admin/options/help.php:43
+msgid "On WordPress.org."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:43
+msgid "PHP"
+msgstr ""
+
+#: admin/functions/pluginList.php:3
+msgid "Plugins Support"
+msgstr ""
+
+#: admin/options/help.php:47
+msgid "Previous versions"
+msgstr ""
+
+#: admin/options/registerSettings.php:137
+msgid "Primary Color"
+msgstr ""
+
+#: admin/options/helpers.php:31
+msgid "Remove logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:34
+msgid "Search Blog Posts"
+msgstr ""
+
+#: admin/options/registerSettings.php:144
+msgid "Secondary Color"
+msgstr ""
+
+#: admin/options/help.php:22
+msgid "See the ChangeLog"
+msgstr ""
+
+#: admin/options/help.php:8
+msgid "See the features and recent updates."
+msgstr ""
+
+#: admin/options/help.php:23
+msgid "See what's changed."
+msgstr ""
+
+#: admin/options/callbacks.php:14
+msgid "Select a new color scheme for the admin area."
+msgstr ""
+
+#: admin/options/callbacks.php:17
+msgid "Select colors for the admin menu and admin bar."
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:42
+msgid "Server IP"
+msgstr ""
+
+#: admin/options/registerSettings.php:191
+msgid "Settings"
+msgstr ""
+
+#: admin/options/registerSettings.php:105
+msgid "Show Adminbar links?"
+msgstr ""
+
+#: admin/options/registerSettings.php:112
+msgid "Show Full Adminbar by default on front-end?"
+msgstr ""
+
+#: admin/options/registerSettings.php:96
+msgid "Show WordPress Update notices."
+msgstr ""
+
+#: admin/options/registerSettings.php:75
+msgid "Show all other Dashboard metaboxes ?"
+msgstr ""
+
+#: admin/options/registerSettings.php:68
+msgid "Show Editors Plugins Support metabox?"
+msgstr ""
+
+#: admin/options/help.php:38
+msgid "Similar to GitHub."
+msgstr ""
+
+#: admin/options/help.php:18
+msgid "Something not working? Let me know."
+msgstr ""
+
+#. Description of the plugin
+msgid "The Aquila Admin Theme"
+msgstr ""
+
+#: admin/options/help.php:63
+msgid "This full-version is free to use, but every little helps!"
+msgstr ""
+
+#: admin/options/help.php:27
+msgid "Translate into your language"
+msgstr ""
+
+#: admin/options/helpers.php:30
+msgid "Upload logo"
+msgstr ""
+
+#: admin/functions/postToBlog.php:33
+msgid "View Blog Post"
+msgstr ""
+
+#: admin/options/help.php:42
+msgid "View the development log"
+msgstr ""
+
+#: admin/options/help.php:52
+msgid "View the plugin's web page"
+msgstr ""
+
+#: admin/options/help.php:32
+msgid "View the source code on GitHub"
+msgstr ""
+
+#: admin/options/help.php:37
+msgid "View the source code on WP Trac"
+msgstr ""
+
+#: admin/options/help.php:12
+msgid "View the support forum"
+msgstr ""
+
+#: admin/options/help.php:7
+msgid "View this plugin on WordPress.org"
+msgstr ""
+
+#: admin/widgets/pluginWidget.php:33
+#, php-format
+msgid "Visible to Administrators only"
+msgstr ""
+
+#: admin/widgets/welcomeWidget.php:39
+msgid "WordPress"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:47
+msgid "WordPress Lessons"
+msgstr ""
+
+#: admin/adminBar/adminBarLinks.php:58
+msgid "WordPress User Guide"
+msgstr ""
diff --git a/login/aquila-login-screen.php b/login/aquila-login-screen.php
index 8c4ba41..30247ad 100644
--- a/login/aquila-login-screen.php
+++ b/login/aquila-login-screen.php
@@ -6,7 +6,8 @@ function aquila_admin_login_logo_url() {
add_filter( 'login_headerurl', 'aquila_admin_login_logo_url' );
function aquila_admin_login_logo_title() {
- return 'Aquila';
+ $site_title = get_bloginfo( 'name' );
+ return $site_title;
}
add_filter( 'login_headertitle', 'aquila_admin_login_logo_title' );
diff --git a/readme.txt b/readme.txt
index 3f35a17..12b26ea 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,10 +1,10 @@
=== Aquila Admin Theme ===
-Contributors: GuyPrimavera, designbymito
+Contributors: GuyPrimavera
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YVPWSJB4SPN5N
Tags: material design wordpress, material design admin theme, material design wordpress admin, material wordpress, admin theme, admin, admin panel, admin theme style plugin, admin-theme, admin theme, aquila, backend theme, clean admin, color scheme, colour scheme, custom admin theme, flat admin theme, free admin theme, modern admin theme, new admin ui, plugin, simple admin theme, white label, white label admin, wordpress, wordPress admin, wordpress admin theme, wp-admin, wp admin page, wp admin theme
Requires at least: 4.0
-Tested up to: 4.8.2
-Stable tag: 2.2.1
+Tested up to: 5.0-beta4
+Stable tag: 2.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -33,6 +33,7 @@ Many updates have been made to the admin area, including:
* "Update" notifications hidden from Editors.
* "Post Format" removed from posts.
* Multisite support.
+* Gutenberg support.
* View server information directly on the dashboard.
* Media Library support for clear PNG images.
* Aquila Settings page to control most of these options.
@@ -72,16 +73,35 @@ No. It only changes the admin area, the login page and the admin bar for logged-
== Screenshots ==
-1. Aquila CMS login page (Red).
-2. Edit page (Blue).
-3. Aquila Settings for the custom logo (White/Blue).
-4. Colour Scheme settings with custom logo (Red).
-5. Dashboard (Red).
-6. Folded admin menu (Default Colors).
-7. View pages (Black/Pink).
+1. Edit page with default Aquila options.
+2. Dashboard with custom colors and logo.
+3. Aquila general settings.
+4. Custom logo upload screen.
+5. Color scheme creator.
+6. Example admin page with custom colors and logo.
+7. Front-end showing admin bar icon instead of full admin bar (logged-in).
== Changelog ==
+= 2.3 - 13/11/2018 =
+* New admin bar with icon and hidden top-bar.
+* Added versioning for main JS file to allow easier updating of the plugin.
+* Added failsafe check for lessc compiler in case it's already being used by another plugin.
+* Reverted the color picker to standard WordPress function, as the other one was rubbish.
+* Option to show admin bar by default on front-end.
+* Revised options page.
+* New "Menu Text Color" option.
+* Better method of hiding admin bar links.
+* Actions links added to plugins page.
+* Added "Help" tab to the settings page.
+* Re-structured settings area code.
+* Failsafe check added to postToBlog.php to see if the submenus exist before modifying them.
+* Login page logo title changed to site title.
+* Interim login styling issue fixed.
+* New asset images for WP repo.
+* New translation files added for English (UK) and Italian.
+* Tested with WP 5.0-beta4 and Gutenberg.
+
= 2.2.1 - 29/09/2017 =
* Fixed readme file.
@@ -94,7 +114,7 @@ No. It only changes the admin area, the login page and the admin bar for logged-
* Added an option to remove the footer credit link.
* Added an option to show WP upgrade notices.
* Fixed bug with renaming "posts" to "blog" when user has specific custom user role.
-* LessPHP used to convert selected colours to CSS variables.
+* LessPHP used to convert selected colors to CSS variables.
* Fixed margin of metaboxes in "WP Optimize" plugin.
* Fixed layout bug with the login CAPTCHA in "All-in-one Security" plugin.
* Created a list of Material Design Color Palette colors as PHP variables for use throughout plugin.
@@ -169,6 +189,11 @@ No. It only changes the admin area, the login page and the admin bar for logged-
== Upgrade Notice ==
+= 2.3 =
+* New admin bar with icon and hidden top-bar.
+* New color options.
+* Bug fixes.
+
= 2.1 =
* Added customisable color scheme with a new color-picker in the admin area.
* Material Design Color Palette Color-Picker.
diff --git a/scripts.php b/scripts.php
index 5ec5462..1f5f264 100644
--- a/scripts.php
+++ b/scripts.php
@@ -1,49 +1,28 @@