Skip to content

Commit

Permalink
Merge branch '4.3-dev' into 4.4-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
laoneo committed Aug 14, 2023
2 parents fcc7209 + 642de29 commit a3189af
Show file tree
Hide file tree
Showing 74 changed files with 100 additions and 113 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@
<option value="a.featured DESC">JFEATURED_DESC</option>
<option value="a.published ASC">JSTATUS_ASC</option>
<option value="a.published DESC">JSTATUS_DESC</option>
<option value="a.name ASC">JGLOBAL_TITLE_ASC</option>
<option value="a.name DESC">JGLOBAL_TITLE_DESC</option>
<option value="a.name ASC">JGLOBAL_NAME_ASC</option>
<option value="a.name DESC">JGLOBAL_NAME_DESC</option>
<option value="category_title ASC">JCATEGORY_ASC</option>
<option value="category_title DESC">JCATEGORY_DESC</option>
<option value="ul.name ASC">COM_CONTACT_FIELD_LINKED_USER_LABEL_ASC</option>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<?php echo HTMLHelper::_('searchtools.sort', 'JSTATUS', 'a.published', $listDirn, $listOrder); ?>
</th>
<th scope="col">
<?php echo HTMLHelper::_('searchtools.sort', 'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder); ?>
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CONTACT_FIELD_NAME_LABEL', 'a.name', $listDirn, $listOrder); ?>
</th>
<th scope="col" class="w-10 d-none">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CONTACT_FIELD_LINKED_USER_LABEL', 'ul.name', $listDirn, $listOrder); ?>
Expand Down
2 changes: 2 additions & 0 deletions administrator/components/com_content/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -509,13 +509,15 @@
name="float_intro"
type="text"
label="COM_CONTENT_IMAGE_INTRO_CLASS_LABEL"
validate="CssIdentifier"
showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
/>

<field
name="float_fulltext"
type="text"
label="COM_CONTENT_IMAGE_FULLTEXT_CLASS_LABEL"
validate="CssIdentifier"
showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
/>
</fieldset>
Expand Down
2 changes: 2 additions & 0 deletions administrator/components/com_content/forms/article.xml
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,7 @@
label="COM_CONTENT_FIELD_IMAGE_CLASS_LABEL"
description="COM_CONTENT_FIELD_IMAGE_CLASS_DESC"
useglobal="true"
validate="CssIdentifier"
/>

<field
Expand Down Expand Up @@ -780,6 +781,7 @@
label="COM_CONTENT_FIELD_IMAGE_CLASS_LABEL"
description="COM_CONTENT_FIELD_IMAGE_CLASS_DESC"
useglobal="true"
validate="CssIdentifier"
/>

<field
Expand Down
1 change: 1 addition & 0 deletions administrator/components/com_fields/forms/field.xml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@
label="COM_FIELDS_FIELD_VALUE_RENDER_CLASS_LABEL"
description="COM_FIELDS_FIELD_VALUE_RENDER_CLASS_DESC"
size="40"
validate="CssIdentifier"
/>

<field
Expand Down
19 changes: 1 addition & 18 deletions administrator/components/com_guidedtours/src/Model/TourModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,7 @@ public function save($data)

$this->setStepsLanguage($id, $lang);

$result = parent::save($data);

// Create default step for new tour
if ($result && $input->getCmd('task') !== 'save2copy' && $this->getState($this->getName() . '.new')) {
$tourId = (int) $this->getState($this->getName() . '.id');

$table = $this->getTable('Step');

$table->id = 0;
$table->title = 'COM_GUIDEDTOURS_BASIC_STEP';
$table->description = '';
$table->tour_id = $tourId;
$table->published = 1;

$table->store();
}

return $result;
return parent::save($data);
}

/**
Expand Down
7 changes: 1 addition & 6 deletions administrator/components/com_menus/forms/itemadmin_alias.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,12 @@
label="COM_MENUS_ITEM_FIELD_ANCHOR_TITLE_LABEL"
/>

<field
name="menu-anchor_title"
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
/>

<field
name="menu_icon"
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
description="COM_MENUS_ITEM_FIELD_ICON_TITLE_DESC"
validate="CssIdentifier"
/>

<field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
description="COM_MENUS_ITEM_FIELD_ICON_TITLE_DESC"
validate="CssIdentifier"
/>

<field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
description="COM_MENUS_ITEM_FIELD_ICON_TITLE_DESC"
validate="CssIdentifier"
/>

<field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
description="COM_MENUS_ITEM_FIELD_ICON_TITLE_DESC"
validate="CssIdentifier"
/>

<field
Expand Down
1 change: 1 addition & 0 deletions administrator/components/com_menus/forms/itemadmin_url.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
type="text"
label="COM_MENUS_ITEM_FIELD_ICON_TITLE_LABEL"
description="COM_MENUS_ITEM_FIELD_ICON_TITLE_DESC"
validate="CssIdentifier"
/>

<field
Expand Down
5 changes: 3 additions & 2 deletions administrator/language/en-GB/com_guidedtours.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
; Note : All ini files need to be saved as UTF-8

COM_GUIDEDTOURS="Guided Tours"
; Deprecated, will be removed with 5.0
COM_GUIDEDTOURS_BASIC_STEP="Basic Step"
COM_GUIDEDTOURS_CONFIGURATION="Guided Tours: Options"
COM_GUIDEDTOURS_DESCRIPTION="Description"
Expand Down Expand Up @@ -74,7 +75,7 @@ COM_GUIDEDTOURS_TOURS_LIST_EMPTYSTATE_TITLE="No tours have been created yet."
COM_GUIDEDTOURS_TYPE_INTERACTIVE_STEP_DESC="Select <em>Form Submit</em> to submit a form, <em>Text Field</em> for user input, <em>Button</em> for buttons, or <em>Other</em> for any other interaction."
COM_GUIDEDTOURS_TYPE_INTERACTIVE_STEP_LABEL="Interactive Type"
COM_GUIDEDTOURS_TYPE_REDIRECT_URL_DESC="Enter the relative URL of the page you want the step to redirect to, eg administrator/index.php?option=com_guidedtours&view=tours for the tours' list page."
COM_GUIDEDTOURS_TYPE_REDIRECT_URL_LABEL="URL"
COM_GUIDEDTOURS_URL_LABEL="URL"
COM_GUIDEDTOURS_TYPE_REDIRECT_URL_LABEL="Relative URL"
COM_GUIDEDTOURS_URL_LABEL="Relative URL"
COM_GUIDEDTOURS_URL_DESC="Enter the relative URL of the page from where you want to Start the tour, e.g administrator/index.php?option=com_guidedtours&view=tours for the tours' list page."
COM_GUIDEDTOURS_XML_DESCRIPTION="Component for managing Guided Tours functionality."
4 changes: 2 additions & 2 deletions components/com_contact/forms/filter_contacts.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@
<option value="a.published DESC">JSTATUS_DESC</option>
<option value="a.featured ASC">JFEATURED_ASC</option>
<option value="a.featured DESC">JFEATURED_DESC</option>
<option value="a.name ASC">JGLOBAL_TITLE_ASC</option>
<option value="a.name DESC">JGLOBAL_TITLE_DESC</option>
<option value="a.name ASC">JGLOBAL_NAME_ASC</option>
<option value="a.name DESC">JGLOBAL_NAME_DESC</option>
<option value="category_title ASC">JCATEGORY_ASC</option>
<option value="category_title DESC">JCATEGORY_DESC</option>
<option value="ul.name ASC">COM_CONTACT_FIELD_LINKED_USER_LABEL_ASC</option>
Expand Down
2 changes: 1 addition & 1 deletion components/com_contact/tmpl/category/default_items.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class="inputbox" onchange="document.adminForm.submit();"
<thead<?php echo $this->params->get('show_headings', '1') ? '' : ' class="visually-hidden"'; ?>>
<tr>
<th scope="col" id="categorylist_header_title">
<?php echo HTMLHelper::_('grid.sort', 'JGLOBAL_TITLE', 'a.name', $listDirn, $listOrder, null, 'asc', '', 'adminForm'); ?>
<?php echo HTMLHelper::_('grid.sort', 'COM_CONTACT_FIELD_NAME_LABEL', 'a.name', $listDirn, $listOrder, null, 'asc', '', 'adminForm'); ?>
</th>
<th scope="col">
<?php echo Text::_('COM_CONTACT_CONTACT_DETAILS'); ?>
Expand Down
2 changes: 2 additions & 0 deletions components/com_content/forms/article.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@
label="COM_CONTENT_FIELD_IMAGE_CLASS_LABEL"
size="20"
useglobal="true"
validate="CssIdentifier"
/>
</fieldset>
<fieldset name="image-full">
Expand Down Expand Up @@ -283,6 +284,7 @@
label="COM_CONTENT_FIELD_IMAGE_CLASS_LABEL"
size="20"
useglobal="true"
validate="CssIdentifier"
/>
</fieldset>
</fields>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/af-ZA/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Afrikaans (Suid-Afrika)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Afrikaans Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/ar-AA/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Arabic (اللغة العربية)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Dr. Ashraf Damra</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/bg-BG/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Bulgarian (bg-BG)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Bulgaria</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/ca-ES/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Catalan (ca-ES)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Catalan Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/cs-CZ/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Czech (Čeština)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Czech Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/cy-GB/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Welsh (United Kingdom)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project - Welsh Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/da-DK/joomla.ini
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ INSTL_DATABASE_PREFIX_MSG="Tabelpræfikset skal starte med et bogstav, og valgfr
INSTL_DATABASE_RESPONSE_ERROR="Installationsprocessen fejlede."
INSTL_DATABASE_TYPE_DESC="Vælg databasetypen."
INSTL_DATABASE_USER_DESC="Enten et brugernavn som du oprettede eller et brugernavn leveret af din udbyder."
INSTL_DATABASE_VALIDATION_ERROR="Kontroller dine database detaljer, databasetype, databasenavn eller hostname. Hvis du har installeret MySQL 8, så læs venligst denne <a href=\"https://docs.joomla.org/Special:MyLanguage/Joomla_and_MySQL_8#Workaround_to_get_Joomla_working_with_MySQL_8\" target=\"_blank\" rel=\"noopener noreferrer\">wiki</a> for mere information."
INSTL_DATABASE_VALIDATION_ERROR="Kontroller dine database legitimationsoplysninger, databasetype, databasenavn eller hostname. Hvis du har installeret MySQL 8, så læs venligst denne <a href=\"https://docs.joomla.org/Special:MyLanguage/Joomla_and_MySQL_8#Workaround_to_get_Joomla_working_with_MySQL_8\" target=\"_blank\" rel=\"noopener noreferrer\">wiki</a> for mere information."

INSTL_CONNECT_DB="Opsæt databaseforbindelse"
INSTL_INSTALL_JOOMLA="Installer Joomla"
Expand Down
2 changes: 1 addition & 1 deletion installation/language/da-DK/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Danish (Danmark)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Danish Translation Team (Transl.: Ronny Buelund)</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
4 changes: 2 additions & 2 deletions installation/language/de-AT/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>German (Austria)</name>
<version>4.3.2</version>
<creationDate>2023-05</creationDate>
<version>4.3.3</version>
<creationDate>2023-07</creationDate>
<author>J!German</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
4 changes: 2 additions & 2 deletions installation/language/de-CH/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>German (Switzerland)</name>
<version>4.3.2</version>
<creationDate>2023-05</creationDate>
<version>4.3.3</version>
<creationDate>2023-07</creationDate>
<author>J!German</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
4 changes: 2 additions & 2 deletions installation/language/de-DE/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>German (Germany)</name>
<version>4.3.2</version>
<creationDate>2023-05</creationDate>
<version>4.3.3</version>
<creationDate>2023-07</creationDate>
<author>J!German</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
4 changes: 2 additions & 2 deletions installation/language/de-LI/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>German (Liechtenstein)</name>
<version>4.3.2</version>
<creationDate>2023-05</creationDate>
<version>4.3.3</version>
<creationDate>2023-07</creationDate>
<author>J!German</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
4 changes: 2 additions & 2 deletions installation/language/de-LU/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>German (Luxembourg)</name>
<version>4.3.2</version>
<creationDate>2023-05</creationDate>
<version>4.3.3</version>
<creationDate>2023-07</creationDate>
<author>J!German</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/el-GR/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Greek (el-GR)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Ομάδα Μετάφρασης: joomla. gr</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-AU/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>English (Australia)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-CA/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>English (Canada)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-NZ/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>English (New Zealand)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/en-US/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>English (United States)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/es-ES/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Spanish (Spain)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Spanish [es-ES] Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/et-EE/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Estonian</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/eu-ES/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>Basque</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>Joomla! Basque Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/fa-AF/langmetadata.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<metafile client="installation">
<name>فارسی (دری)</name>
<version>4.3.3</version>
<version>4.3.4</version>
<creationDate>2023-07</creationDate>
<author>JoomlaPersian Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down

0 comments on commit a3189af

Please sign in to comment.