Skip to content

Commit

Permalink
Merge branch '4.0-dev' into cassiopeia-position-brand
Browse files Browse the repository at this point in the history
  • Loading branch information
richard67 committed May 12, 2021
2 parents 7894923 + eddd451 commit 2333d5f
Show file tree
Hide file tree
Showing 69 changed files with 396 additions and 330 deletions.
Expand Up @@ -113,7 +113,7 @@ public function display($tpl = null)
*/
protected function addToolbar()
{
ToolbarHelper::title(Text::_('COM_CONFIG_GLOBAL_CONFIGURATION'), 'sliders-h config');
ToolbarHelper::title(Text::_('COM_CONFIG_GLOBAL_CONFIGURATION'), 'cog config');
ToolbarHelper::apply('application.apply');
ToolbarHelper::divider();
ToolbarHelper::save('application.save');
Expand Down
Expand Up @@ -114,7 +114,7 @@ public function display($tpl = null)
*/
protected function addToolbar()
{
ToolbarHelper::title(Text::_($this->component->option . '_configuration'), 'sliders-h config');
ToolbarHelper::title(Text::_($this->component->option . '_configuration'), 'cog config');
ToolbarHelper::apply('component.apply');
ToolbarHelper::divider();
ToolbarHelper::save('component.save');
Expand Down
Expand Up @@ -220,7 +220,8 @@
$options = [
'transitions' => $transitions,
'title' => Text::_($item->stage_title),
'tip_content' => Text::sprintf('JWORKFLOW', Text::_($item->workflow_title))
'tip_content' => Text::sprintf('JWORKFLOW', Text::_($item->workflow_title)),
'id' => 'workflow-' . $item->id
];

echo (new TransitionButton($options))
Expand All @@ -233,7 +234,8 @@
<?php
$options = [
'task_prefix' => 'articles.',
'disabled' => $workflow_featured || !$canChange
'disabled' => $workflow_featured || !$canChange,
'id' => 'featured-' . $item->id
];

echo (new FeaturedButton)
Expand All @@ -244,7 +246,8 @@
<?php
$options = [
'task_prefix' => 'articles.',
'disabled' => $workflow_state || !$canChange
'disabled' => $workflow_state || !$canChange,
'id' => 'state-' . $item->id
];

echo (new PublishedButton)->render((int) $item->state, $i, $options, $item->publish_up, $item->publish_down);
Expand Down
16 changes: 5 additions & 11 deletions administrator/components/com_fields/tmpl/field/edit.php
Expand Up @@ -73,18 +73,12 @@
<?php $this->set('ignore_fieldsets', array('fieldparams')); ?>
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'publishing', Text::_('JGLOBAL_FIELDSET_PUBLISHING', true)); ?>
<div class="row">
<div class="col-md-6">
<fieldset id="fieldset-publishingdata" class="options-form">
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
<div>
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
</div>
</fieldset>
</div>
<div class="col-md-6">
<fieldset id="fieldset-publishingdata" class="options-form">
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
<div>
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
</div>
</div>
</fieldset>
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<?php if ($this->canDo->get('core.admin')) : ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'rules', Text::_('JGLOBAL_ACTION_PERMISSIONS_LABEL', true)); ?>
Expand Down
18 changes: 6 additions & 12 deletions administrator/components/com_fields/tmpl/group/edit.php
Expand Up @@ -53,18 +53,12 @@
</div>
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<?php echo HTMLHelper::_('uitab.addTab', 'myTab', 'publishing', Text::_('JGLOBAL_FIELDSET_PUBLISHING', true)); ?>
<div class="row form-horizontal-desktop">
<div class="col-md-6">
<fieldset id="fieldset-rules" class="options-form">
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
<div>
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
</div>
</fieldset>
</div>
<div class="col-md-6">
</div>
</div>
<fieldset id="fieldset-rules" class="options-form">
<legend><?php echo Text::_('JGLOBAL_FIELDSET_PUBLISHING'); ?></legend>
<div>
<?php echo LayoutHelper::render('joomla.edit.publishingdata', $this); ?>
</div>
</fieldset>
<?php echo HTMLHelper::_('uitab.endTab'); ?>
<?php $this->set('ignore_fieldsets', array('fieldparams')); ?>
<?php echo LayoutHelper::render('joomla.edit.params', $this); ?>
Expand Down
18 changes: 12 additions & 6 deletions administrator/components/com_finder/src/Model/MapsModel.php
Expand Up @@ -97,6 +97,18 @@ public function delete(&$pks)
// Include the content plugins for the on delete events.
PluginHelper::importPlugin('content');

// Iterate the items to check if all of them exist.
foreach ($pks as $i => $pk)
{
if (!$table->load($pk))
{
// Item is not in the table.
$this->setError($table->getError());

return false;
}
}

// Iterate the items to delete each one.
foreach ($pks as $i => $pk)
{
Expand Down Expand Up @@ -142,12 +154,6 @@ public function delete(&$pks)
}
}
}
else
{
$this->setError($table->getError());

return false;
}
}

// Clear the component's cache
Expand Down
Expand Up @@ -103,11 +103,6 @@ protected function addToolbar(): void
// Get the toolbar object instance
$toolbar = Toolbar::getInstance('toolbar');

if ($canDo->get('core.edit'))
{
ToolbarHelper::editList('updatesite.edit');
}

if ($canDo->get('core.edit.state'))
{
$dropdown = $toolbar->dropdownButton('status-group')
Expand Down
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_article.ini
Expand Up @@ -4,5 +4,5 @@
; Note : All ini files need to be saved as UTF-8

PLG_ARTICLE_BUTTON_ARTICLE="Article"
PLG_ARTICLE_XML_DESCRIPTION="Displays a button to insert links to articles into an Article. Displays a popup allowing you to choose the article."
PLG_ARTICLE_XML_DESCRIPTION="Displays a button to insert links to articles into an editor area. Displays a popup allowing you to choose the article."
PLG_EDITORS-XTD_ARTICLE="Button - Article"
Expand Up @@ -3,5 +3,5 @@
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

PLG_ARTICLE_XML_DESCRIPTION="Displays a button to insert links to articles into an Article. Displays a popup allowing you to choose the article."
PLG_ARTICLE_XML_DESCRIPTION="Displays a button to insert links to articles into an editor area. Displays a popup allowing you to choose the article."
PLG_EDITORS-XTD_ARTICLE="Button - Article"
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_contact.ini
Expand Up @@ -5,4 +5,4 @@

PLG_EDITORS-XTD_CONTACT="Button - Contact"
PLG_EDITORS-XTD_CONTACT_BUTTON_CONTACT="Contact"
PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION="Displays a button to insert links to Contacts in an article. Displays a popup allowing you to choose the contact."
PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION="Displays a button to insert links to Contacts into an editor area. Displays a popup allowing you to choose the contact."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_EDITORS-XTD_CONTACT="Button - Contact"
PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION="Displays a button to insert links to Contacts in an article. Displays a popup allowing you to choose the contact."
PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION="Displays a button to insert links to Contacts into an editor area. Displays a popup allowing you to choose the contact."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_image.ini
Expand Up @@ -6,4 +6,4 @@
PLG_EDITORS-XTD_IMAGE="Button - Image"
PLG_IMAGE_BUTTON_IMAGE="Image"
PLG_IMAGE_BUTTON_INSERT="Insert Image"
PLG_IMAGE_XML_DESCRIPTION="Displays a button to insert images into an Article. Displays a popup allowing you to configure an image's properties and upload new image files."
PLG_IMAGE_XML_DESCRIPTION="Displays a button to insert images into an editor area. Displays a popup allowing you to configure an image's properties and upload new image files."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_image.sys.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_EDITORS-XTD_IMAGE="Button - Image"
PLG_IMAGE_XML_DESCRIPTION="Displays a button to insert images into an Article. Displays a popup allowing you to configure an image's properties and upload new image files."
PLG_IMAGE_XML_DESCRIPTION="Displays a button to insert images into an editor area. Displays a popup allowing you to configure an image's properties and upload new image files."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_menu.ini
Expand Up @@ -5,4 +5,4 @@

PLG_EDITORS-XTD_MENU="Button - Menu"
PLG_EDITORS-XTD_MENU_BUTTON_MENU="Menu"
PLG_EDITORS-XTD_MENU_XML_DESCRIPTION="Displays a button to insert menu item links into an Article. Displays a popup allowing you to choose the menu item."
PLG_EDITORS-XTD_MENU_XML_DESCRIPTION="Displays a button to insert menu item links into an editor area. Displays a popup allowing you to choose the menu item."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_menu.sys.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_EDITORS-XTD_MENU="Button - Menu"
PLG_EDITORS-XTD_MENU_XML_DESCRIPTION="Displays a button to insert menu item links into an Article. Displays a popup allowing you to choose the menu item."
PLG_EDITORS-XTD_MENU_XML_DESCRIPTION="Displays a button to insert menu item links into an editor area. Displays a popup allowing you to choose the menu item."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_editors-xtd_module.ini
Expand Up @@ -5,4 +5,4 @@

PLG_EDITORS-XTD_MODULE="Button - Module"
PLG_MODULE_BUTTON_MODULE="Module"
PLG_MODULE_XML_DESCRIPTION="Displays a button to insert a module into an Article. Displays a popup allowing you to choose the module."
PLG_MODULE_XML_DESCRIPTION="Displays a button to insert a module into an editor area. Displays a popup allowing you to choose the module."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_EDITORS-XTD_MODULE="Button - Module"
PLG_MODULE_XML_DESCRIPTION="Displays a button to insert a module into an Article. Displays a popup allowing you to choose the module."
PLG_MODULE_XML_DESCRIPTION="Displays a button to insert a module into an editor area. Displays a popup allowing you to choose the module."
Expand Up @@ -6,4 +6,4 @@
PLG_INSTALLER_FOLDERINSTALLER_TEXT="Install from Folder"
PLG_INSTALLER_FOLDERINSTALLER_BUTTON="Check and Install"
PLG_INSTALLER_FOLDERINSTALLER_NO_INSTALL_PATH="Please enter a Folder."
PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION="This plugin allows you to install extensions from a folder."
PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION="This plugin allows you to install extensions from a folder on the web server."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_INSTALLER_FOLDERINSTALLER="Installer - Install from Folder"
PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION="This plugin allows you to install extensions from a folder."
PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION="This plugin allows you to install extensions from a folder on the web server."
Expand Up @@ -16,4 +16,4 @@ PLG_SYSTEM_UPDATENOTIFICATION_MAIL_MAIL_TITLE="Joomla: Update Notification"
PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME="The Joomla! Update Notification will not run in this configuration"
PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME_ACTION="Set it back to the default setting (6 Hours)"
PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME_BODY="<p>In your Installer Configuration you have set the Option Update Cache (in Hours) to 0 this means that Joomla is not caching the Update. This means an email should be sent on every page visit but this is not possible. Please increase the value (6 is default) or confirm that the Joomla! Update Notification will never send you mails.</p>"
PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION="This plugin periodically checks for the availability of new Joomla! versions. When one is found it will send you an email, reminding you to update Joomla!. Pro Tip: You can customise the email message by overriding the language string keys PLG_SYSTEM_UPDATENOTIFICATION_EMAIL_SUBJECT and PLG_SYSTEM_UPDATENOTIFICATION_EMAIL_BODY."
PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION="This plugin periodically checks for the availability of new Joomla! versions. When one is found it will send you an email, reminding you to update. You can customise the email at System > Mail Templates."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_SYSTEM_UPDATENOTIFICATION="System - Joomla! Update Notification"
PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION="This plugin periodically checks for the availability of new Joomla! versions. When one is found it will send you an email, reminding you to update Joomla!. Pro Tip: You can customise the email message by overriding the language string keys PLG_SYSTEM_UPDATENOTIFICATION_EMAIL_SUBJECT and PLG_SYSTEM_UPDATENOTIFICATION_EMAIL_BODY."
PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION="This plugin periodically checks for the availability of new Joomla! versions. When one is found it will send you an email, reminding you to update. You can customise the email at System > Mail Templates."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_banners.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_BANNERS="Web Services - Banners"
PLG_WEBSERVICES_BANNERS_XML_DESCRIPTION="Add banners routes to the API for your website."
PLG_WEBSERVICES_BANNERS_XML_DESCRIPTION="Add banner routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_BANNERS="Web Services - Banners"
PLG_WEBSERVICES_BANNERS_XML_DESCRIPTION="Add banners routes to the API for your website."
PLG_WEBSERVICES_BANNERS_XML_DESCRIPTION="Add banner routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_config.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONFIG="Web Services - Config"
PLG_WEBSERVICES_CONFIG_XML_DESCRIPTION="Add configs routes to the API for your website."
PLG_WEBSERVICES_CONFIG_XML_DESCRIPTION="Add config routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONFIG="Web Services - Config"
PLG_WEBSERVICES_CONFIG_XML_DESCRIPTION="Add configs routes to the API for your website."
PLG_WEBSERVICES_CONFIG_XML_DESCRIPTION="Add config routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_contact.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONTACT="Web Services - Contact"
PLG_WEBSERVICES_CONTACT_XML_DESCRIPTION="Add contacts routes to the API for your website."
PLG_WEBSERVICES_CONTACT_XML_DESCRIPTION="Add contact routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONTACT="Web Services - Contact"
PLG_WEBSERVICES_CONTACT_XML_DESCRIPTION="Add contacts routes to the API for your website."
PLG_WEBSERVICES_CONTACT_XML_DESCRIPTION="Add contact routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_content.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONTENT="Web Services - Content"
PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Add articles routes to the API for your website."
PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Add article routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_CONTENT="Web Services - Content"
PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Add articles routes to the API for your website."
PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION="Add article routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_languages.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_LANGUAGES="Web Services - Languages"
PLG_WEBSERVICES_LANGUAGES_XML_DESCRIPTION="Add languages routes to the API for your website."
PLG_WEBSERVICES_LANGUAGES_XML_DESCRIPTION="Add language routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_LANGUAGES="Web Services - Languages"
PLG_WEBSERVICES_LANGUAGES_XML_DESCRIPTION="Add languages routes to the API for your website."
PLG_WEBSERVICES_LANGUAGES_XML_DESCRIPTION="Add language routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_menus.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MENUS="Web Services - Menus"
PLG_WEBSERVICES_MENUS_XML_DESCRIPTION="Add menus routes to the API for your website."
PLG_WEBSERVICES_MENUS_XML_DESCRIPTION="Add menu routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_menus.sys.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MENUS="Web Services - Menus"
PLG_WEBSERVICES_MENUS_XML_DESCRIPTION="Add menus routes to the API for your website."
PLG_WEBSERVICES_MENUS_XML_DESCRIPTION="Add menu routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_messages.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MESSAGES="Web Services - Messages"
PLG_WEBSERVICES_MESSAGES_XML_DESCRIPTION="Add messages routes to the API for your website."
PLG_WEBSERVICES_MESSAGES_XML_DESCRIPTION="Add message routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MESSAGES="Web Services - Messages"
PLG_WEBSERVICES_MESSAGES_XML_DESCRIPTION="Add messages routes to the API for your website."
PLG_WEBSERVICES_MESSAGES_XML_DESCRIPTION="Add message routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_modules.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MODULES="Web Services - Modules"
PLG_WEBSERVICES_MODULES_XML_DESCRIPTION="Add modules routes to the API for your website."
PLG_WEBSERVICES_MODULES_XML_DESCRIPTION="Add module routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_MODULES="Web Services - Modules"
PLG_WEBSERVICES_MODULES_XML_DESCRIPTION="Add modules routes to the API for your website."
PLG_WEBSERVICES_MODULES_XML_DESCRIPTION="Add module routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_newsfeeds.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_NEWSFEEDS="Web Services - Newsfeeds"
PLG_WEBSERVICES_NEWSFEEDS_XML_DESCRIPTION="Add newsfeeds routes to the API for your website."
PLG_WEBSERVICES_NEWSFEEDS_XML_DESCRIPTION="Add newsfeed routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_NEWSFEEDS="Web Services - Newsfeeds"
PLG_WEBSERVICES_NEWSFEEDS_XML_DESCRIPTION="Add newsfeeds routes to the API for your website."
PLG_WEBSERVICES_NEWSFEEDS_XML_DESCRIPTION="Add newsfeed routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_plugins.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_PLUGINS="Web Services - Plugins"
PLG_WEBSERVICES_PLUGINS_XML_DESCRIPTION="Add plugins routes to the API for your website."
PLG_WEBSERVICES_PLUGINS_XML_DESCRIPTION="Add plugin routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_PLUGINS="Web Services - Plugins"
PLG_WEBSERVICES_PLUGINS_XML_DESCRIPTION="Add plugins routes to the API for your website."
PLG_WEBSERVICES_PLUGINS_XML_DESCRIPTION="Add plugin routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_tags.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_TAGS="Web Services - Tags"
PLG_WEBSERVICES_TAGS_XML_DESCRIPTION="Add tags routes to the API for your website."
PLG_WEBSERVICES_TAGS_XML_DESCRIPTION="Add tag routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_tags.sys.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_TAGS="Web Services - Tags"
PLG_WEBSERVICES_TAGS_XML_DESCRIPTION="Add tags routes to the API for your website."
PLG_WEBSERVICES_TAGS_XML_DESCRIPTION="Add tag routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_templates.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_TEMPLATES="Web Services - Templates"
PLG_WEBSERVICES_TEMPLATES_XML_DESCRIPTION="Add templates routes to the API for your website."
PLG_WEBSERVICES_TEMPLATES_XML_DESCRIPTION="Add template routes to the API for your website."
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_TEMPLATES="Web Services - Templates"
PLG_WEBSERVICES_TEMPLATES_XML_DESCRIPTION="Add templates routes to the API for your website."
PLG_WEBSERVICES_TEMPLATES_XML_DESCRIPTION="Add template routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_users.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_USERS="Web Services - Users"
PLG_WEBSERVICES_USERS_XML_DESCRIPTION="Add users routes to the API for your website."
PLG_WEBSERVICES_USERS_XML_DESCRIPTION="Add user routes to the API for your website."
2 changes: 1 addition & 1 deletion administrator/language/en-GB/plg_webservices_users.sys.ini
Expand Up @@ -4,4 +4,4 @@
; Note : All ini files need to be saved as UTF-8

PLG_WEBSERVICES_USERS="Web Services - Users"
PLG_WEBSERVICES_USERS_XML_DESCRIPTION="Add users routes to the API for your website."
PLG_WEBSERVICES_USERS_XML_DESCRIPTION="Add user routes to the API for your website."

0 comments on commit 2333d5f

Please sign in to comment.