Skip to content

Commit

Permalink
v3.6.2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeo committed Sep 7, 2020
1 parent 06de4cb commit 8a06260
Show file tree
Hide file tree
Showing 21 changed files with 129 additions and 274 deletions.
2 changes: 1 addition & 1 deletion assets/front/css/font-awesome.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/front/css/main-not-responsive.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/front/css/main.min.css

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions functions/czr-modules/social-links/social_links_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ function hu_register_social_links_module( $args ) {
'defaultSocialColor' => 'rgb(90,90,90)',
'defaultSocialSize' => 14,
'i18n' => array(
'Rss' => __('Rss', 'text_domain_to_be_replaced'),
'Select a social icon' => __('Select a social icon', 'text_domain_to_be_replaced'),
'Follow us on' => __('Follow us on', 'text_domain_to_be_replaced'),
'Done !' => __('Done !', 'text_domain_to_be_replaced'),
'New Social Link created ! Scroll down to edit it.' => __('New Social Link created ! Scroll down to edit it.', 'text_domain_to_be_replaced'),
'Rss' => __('Rss', 'hueman'),
'Select a social icon' => __('Select a social icon', 'hueman'),
'Follow us on' => __('Follow us on', 'hueman'),
'Done !' => __('Done !', 'hueman'),
'New Social Link created ! Scroll down to edit it.' => __('New Social Link created ! Scroll down to edit it.', 'hueman'),
)
//option value for dynamic registration
)
Expand All @@ -89,19 +89,19 @@ function hu_register_social_links_module( $args ) {
'pre-item' => array(
'social-icon' => array(
'input_type' => 'select',
'title' => __('Select an icon', 'text_domain_to_be_replaced')
'title' => __('Select an icon', 'hueman')
),
'social-link' => array(
'input_type' => 'text',
'title' => __('Social link url', 'text_domain_to_be_replaced'),
'notice_after' => __('Enter the full url of your social profile (must be valid url).', 'text_domain_to_be_replaced'),
'placeholder' => __('http://...,mailto:...,...', 'text_domain_to_be_replaced')
'title' => __('Social link url', 'hueman'),
'notice_after' => __('Enter the full url of your social profile (must be valid url).', 'hueman'),
'placeholder' => __('http://...,mailto:...,...', 'hueman')
)
),
'mod-opt' => array(
'social-size' => array(
'input_type' => 'number',
'title' => __('Size in px', 'text_domain_to_be_replaced'),
'title' => __('Size in px', 'hueman'),
'step' => 1,
'min' => 5,
'transport' => 'postMessage'
Expand All @@ -110,29 +110,29 @@ function hu_register_social_links_module( $args ) {
'item-inputs' => array(
'social-icon' => array(
'input_type' => 'select',
'title' => __('Social icon', 'text_domain_to_be_replaced')
'title' => __('Social icon', 'hueman')
),
'social-link' => array(
'input_type' => 'text',
'title' => __('Social link', 'text_domain_to_be_replaced'),
'notice_after' => __('Enter the full url of your social profile (must be valid url).', 'text_domain_to_be_replaced'),
'placeholder' => __('http://...,mailto:...,...', 'text_domain_to_be_replaced')
'title' => __('Social link', 'hueman'),
'notice_after' => __('Enter the full url of your social profile (must be valid url).', 'hueman'),
'placeholder' => __('http://...,mailto:...,...', 'hueman')
),
'title' => array(
'input_type' => 'text',
'title' => __('Title', 'text_domain_to_be_replaced'),
'notice_after' => __('This is the text displayed on mouse over.', 'text_domain_to_be_replaced'),
'title' => __('Title', 'hueman'),
'notice_after' => __('This is the text displayed on mouse over.', 'hueman'),
),
'social-color' => array(
'input_type' => 'color',
'title' => sprintf( '%1$s <i>%2$s %3$s</i>', __('Icon color', 'text_domain_to_be_replaced'), __('default:', 'text_domain_to_be_replaced'), 'rgba(255,255,255,0.7)' ),
'notice_after' => __('Set a unique color for your icon.', 'text_domain_to_be_replaced'),
'title' => sprintf( '%1$s <i>%2$s %3$s</i>', __('Icon color', 'hueman'), __('default:', 'hueman'), 'rgba(255,255,255,0.7)' ),
'notice_after' => __('Set a unique color for your icon.', 'hueman'),
'transport' => 'postMessage'
),
'social-target' => array(
'input_type' => 'nimblecheck',
'title' => __('Link target', 'text_domain_to_be_replaced'),
'notice_after' => __('Check this option to open the link in a another tab of the browser.', 'text_domain_to_be_replaced'),
'title' => __('Link target', 'hueman'),
'notice_after' => __('Check this option to open the link in a another tab of the browser.', 'hueman'),
'title_width' => 'width-80',
'input_width' => 'width-20',
)
Expand Down Expand Up @@ -170,7 +170,7 @@ function hu_validate_callback__czr_social_module( $validity, $socials ) {
// error_log( 'IN VALIDATION CALLBACK' );
// error_log( print_r( $socials, true ));
$ids_malformed_url = array();
$malformed_message = __( 'An error occurred: malformed social links', 'text_domain_to_be_replaced');
$malformed_message = __( 'An error occurred: malformed social links', 'hueman');

if ( empty( $socials ) )
return array();
Expand Down Expand Up @@ -214,6 +214,6 @@ function hu_validate_callback__czr_social_module( $validity, $socials ) {
if ( empty( $ids_malformed_url) )
return null;

return new WP_Error( 'required', __( 'Please fill the social link inputs with a valid URLs', 'text_domain_to_be_replaced' ), $ids_malformed_url );
return new WP_Error( 'required', __( 'Please fill the social link inputs with a valid URLs', 'hueman' ), $ids_malformed_url );
}

Binary file modified languages/en_CA.mo
Binary file not shown.
46 changes: 12 additions & 34 deletions languages/en_CA.po
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Themes - Hueman\n"
"Report-Msgid-Bugs-To: https://presscustomizr.com/contact/\n"
"POT-Creation-Date: 2020-07-21 14:55:02+00:00\n"
"POT-Creation-Date: 2020-09-07 15:39:15+00:00\n"
"PO-Revision-Date: 2016-11-04 13:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
Expand Down Expand Up @@ -138,7 +138,7 @@ msgid "read the latest release notes"
msgstr ""

#: functions/admin/class-admin-page.php:148
#: functions/admin/class-admin-page.php:277
#: functions/admin/class-admin-page.php:258
msgid "Changelog"
msgstr ""

Expand Down Expand Up @@ -175,47 +175,26 @@ msgstr ""
msgid "Follow us"
msgstr "Follow:"

#: functions/admin/class-admin-page.php:204
msgid "Go Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:211
msgid "Easily take your web design one step further"
msgstr ""

#: functions/admin/class-admin-page.php:213
msgid ""
"The Hueman Pro WordPress theme allows anyone to create a beautiful, "
"professional and mobile friendly website in a few minutes. In the Pro "
"version, you'll get all features included in the free version plus many "
"conversion oriented ones, to help you attract and retain more visitors on "
"your websites."
msgstr ""

#: functions/admin/class-admin-page.php:216
msgid "Discover Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard &rarr; Home"
msgstr "Go to Dashboard &rarr; Home"

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard"
msgstr "Go to Dashboard"

#: functions/admin/class-admin-page.php:302
#: functions/admin/class-admin-page.php:283
#, fuzzy
msgid "System Information"
msgstr "System Informations"

#: functions/admin/class-admin-page.php:303
#: functions/admin/class-admin-page.php:284
#, fuzzy
msgid "Please include the following information when posting support requests"
msgstr ""
"Please include the following informations when posting support requests"

#: functions/admin/class-admin-page.php:304
#: functions/admin/class-admin-page.php:285
msgid ""
"To copy the system infos, click below then press Ctrl + C (PC) or Cmd + C "
"(Mac)."
Expand All @@ -240,12 +219,7 @@ msgstr "We'd like to introduce the new features we've been working on."
msgid "Read the latest release notes"
msgstr "Read the latest release notes"

#: functions/admin/class-admin-update-notification.php:113
#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/admin/class-admin-update-notification.php:120
#: functions/admin/class-admin-update-notification.php:117
msgid "close"
msgstr "Close"

Expand Down Expand Up @@ -1525,6 +1499,10 @@ msgstr ""
msgid "Hueman Admin Settings"
msgstr ""

#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/class-utils-settings-map.php:1982
msgid "Go Pro"
msgstr ""
Expand Down
Binary file modified languages/es_VE.mo
Binary file not shown.
48 changes: 13 additions & 35 deletions languages/es_VE.po
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.6.1\n"
"Project-Id-Version: Hueman v3.6.2\n"
"Report-Msgid-Bugs-To: https://presscustomizr.com/contact/\n"
"POT-Creation-Date: 2020-07-21 14:55:02+00:00\n"
"POT-Creation-Date: 2020-09-07 15:39:15+00:00\n"
"PO-Revision-Date: 2016-05-30 08:46+0200\n"
"Last-Translator: José Subero | @arawako and Ernesto Chapon <jose.Language-"
"Team: Press Customizr>\n"
Expand Down Expand Up @@ -144,7 +144,7 @@ msgid "read the latest release notes"
msgstr ""

#: functions/admin/class-admin-page.php:148
#: functions/admin/class-admin-page.php:277
#: functions/admin/class-admin-page.php:258
msgid "Changelog"
msgstr ""

Expand Down Expand Up @@ -181,44 +181,23 @@ msgstr ""
msgid "Follow us"
msgstr "Síganos:"

#: functions/admin/class-admin-page.php:204
msgid "Go Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:211
msgid "Easily take your web design one step further"
msgstr ""

#: functions/admin/class-admin-page.php:213
msgid ""
"The Hueman Pro WordPress theme allows anyone to create a beautiful, "
"professional and mobile friendly website in a few minutes. In the Pro "
"version, you'll get all features included in the free version plus many "
"conversion oriented ones, to help you attract and retain more visitors on "
"your websites."
msgstr ""

#: functions/admin/class-admin-page.php:216
msgid "Discover Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard &rarr; Home"
msgstr ""

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard"
msgstr ""

#: functions/admin/class-admin-page.php:302
#: functions/admin/class-admin-page.php:283
msgid "System Information"
msgstr ""

#: functions/admin/class-admin-page.php:303
#: functions/admin/class-admin-page.php:284
msgid "Please include the following information when posting support requests"
msgstr ""

#: functions/admin/class-admin-page.php:304
#: functions/admin/class-admin-page.php:285
msgid ""
"To copy the system infos, click below then press Ctrl + C (PC) or Cmd + C "
"(Mac)."
Expand All @@ -240,12 +219,7 @@ msgstr ""
msgid "Read the latest release notes"
msgstr ""

#: functions/admin/class-admin-update-notification.php:113
#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/admin/class-admin-update-notification.php:120
#: functions/admin/class-admin-update-notification.php:117
msgid "close"
msgstr ""

Expand Down Expand Up @@ -1515,6 +1489,10 @@ msgstr ""
msgid "Hueman Admin Settings"
msgstr ""

#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/class-utils-settings-map.php:1982
msgid "Go Pro"
msgstr ""
Expand Down
Binary file modified languages/hr_HR.mo
Binary file not shown.
48 changes: 13 additions & 35 deletions languages/hr_HR.po
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.6.1\n"
"Project-Id-Version: Hueman v3.6.2\n"
"Report-Msgid-Bugs-To: https://presscustomizr.com/contact/\n"
"POT-Creation-Date: 2020-07-21 14:55:02+00:00\n"
"POT-Creation-Date: 2020-09-07 15:39:15+00:00\n"
"PO-Revision-Date: 2016-05-30 08:47+0200\n"
"Last-Translator: zcuric <[email protected]>\n"
"Language-Team: Press Customizr\n"
Expand Down Expand Up @@ -143,7 +143,7 @@ msgid "read the latest release notes"
msgstr ""

#: functions/admin/class-admin-page.php:148
#: functions/admin/class-admin-page.php:277
#: functions/admin/class-admin-page.php:258
msgid "Changelog"
msgstr ""

Expand Down Expand Up @@ -180,44 +180,23 @@ msgstr ""
msgid "Follow us"
msgstr "Slijedi:"

#: functions/admin/class-admin-page.php:204
msgid "Go Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:211
msgid "Easily take your web design one step further"
msgstr ""

#: functions/admin/class-admin-page.php:213
msgid ""
"The Hueman Pro WordPress theme allows anyone to create a beautiful, "
"professional and mobile friendly website in a few minutes. In the Pro "
"version, you'll get all features included in the free version plus many "
"conversion oriented ones, to help you attract and retain more visitors on "
"your websites."
msgstr ""

#: functions/admin/class-admin-page.php:216
msgid "Discover Hueman Pro"
msgstr ""

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard &rarr; Home"
msgstr ""

#: functions/admin/class-admin-page.php:227
#: functions/admin/class-admin-page.php:208
msgid "Go to Dashboard"
msgstr ""

#: functions/admin/class-admin-page.php:302
#: functions/admin/class-admin-page.php:283
msgid "System Information"
msgstr ""

#: functions/admin/class-admin-page.php:303
#: functions/admin/class-admin-page.php:284
msgid "Please include the following information when posting support requests"
msgstr ""

#: functions/admin/class-admin-page.php:304
#: functions/admin/class-admin-page.php:285
msgid ""
"To copy the system infos, click below then press Ctrl + C (PC) or Cmd + C "
"(Mac)."
Expand All @@ -239,12 +218,7 @@ msgstr ""
msgid "Read the latest release notes"
msgstr ""

#: functions/admin/class-admin-update-notification.php:113
#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/admin/class-admin-update-notification.php:120
#: functions/admin/class-admin-update-notification.php:117
msgid "close"
msgstr ""

Expand Down Expand Up @@ -1514,6 +1488,10 @@ msgstr ""
msgid "Hueman Admin Settings"
msgstr ""

#: functions/class-utils-settings-map.php:1981
msgid "Upgrade to Hueman Pro"
msgstr ""

#: functions/class-utils-settings-map.php:1982
msgid "Go Pro"
msgstr ""
Expand Down
Loading

0 comments on commit 8a06260

Please sign in to comment.