Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,10 @@ Pull Request for Issue # .



### Documentation Changes Required
### Link to documentations
Please select:
- [ ] Documentation link for docs.joomla.org: <link>
- [ ] No documentation changes for docs.joomla.org needed

- [ ] Pull Request link for manual.joomla.org: <link>
- [ ] No documentation changes for manual.joomla.org needed
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function display($cachable = false, $urlparams = array())
if ($view === 'filter' && $layout === 'edit' && !$this->checkEditId('com_finder.edit.filter', $filterId)) {
// Somehow the person just went to the form - we don't allow that.
if (!\count($this->app->getMessageQueue())) {
$this->setMessage(Text::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $f_id), 'error');
$this->setMessage(Text::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $filterId), 'error');
}

$this->setRedirect(Route::_('index.php?option=com_finder&view=filters', false));
Expand Down
17 changes: 9 additions & 8 deletions administrator/language/en-GB/com_media.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,17 @@ COM_MEDIA_EDIT="Media Edit"
COM_MEDIA_ERROR="An error occurred."
COM_MEDIA_ERROR_ACCOUNT_NOT_FOUND="The account was not found"
COM_MEDIA_ERROR_ACCOUNT_NOT_SET="Account was not set."
COM_MEDIA_ERROR_MAKESAFE="Could not make the file name safe. If it contains non ASCII chars please ensure you have the INTL and ICONV PHP Extensions installed."
COM_MEDIA_ERROR_MEDIA_PROVIDER_NOT_FOUND="Media Provider not found."
COM_MEDIA_ERROR_NO_ADAPTER_FOUND="No adapter found."
COM_MEDIA_ERROR_NO_CONTENT_AVAILABLE="No content available!"
COM_MEDIA_ERROR_NO_PROVIDERS="No filesystem providers have been found. Please enable at least one <a href=\"%s\">filesystem plugin</a>."
COM_MEDIA_ERROR_MISSING_DIR="One or more of the directories defined in the FileSystem - Local plugin does not exist."
COM_MEDIA_ERROR_NOT_AUTHENTICATED="You are not authenticated. Please login."
COM_MEDIA_ERROR_NOT_AUTHORIZED="You are not authorised"
COM_MEDIA_ERROR_NOT_FOUND="File or Folder not found"
COM_MEDIA_ERROR_NO_ADAPTER_FOUND="No adapter found."
COM_MEDIA_ERROR_NO_CONTENT_AVAILABLE="No content available!"
COM_MEDIA_ERROR_NO_PROVIDERS="No filesystem providers have been found. Please enable at least one <a href=\"%s\">filesystem plugin</a>."
COM_MEDIA_ERROR_WARNFILETOOLARGE="This file is too large to upload. You can change the limits for your site in the component options."
COM_MEDIA_FIELDSET_OPTIONS_LABEL="Media"
COM_MEDIA_FIELD_CHECK_MIME_DESC="Use MIME Magic or Fileinfo to attempt to verify files. Try disabling this if you get invalid mime type errors."
COM_MEDIA_FIELD_CHECK_MIME_LABEL="Check MIME Types"
COM_MEDIA_FIELD_IGNORED_EXTENSIONS_DESC="Ignored file extensions for MIME type checking and restricted uploads."
Expand All @@ -46,10 +49,10 @@ COM_MEDIA_FIELD_LEGAL_DOCUMENT_EXTENSIONS_DESC="Document extensions (file types)
COM_MEDIA_FIELD_LEGAL_DOCUMENT_EXTENSIONS_LABEL="Legal Document Extensions (File Types)"
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_DESC="Image extensions (file types) you are allowed to upload (comma separated). These are used to check for valid image headers."
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_LABEL="Legal Image Extensions (File Types)"
COM_MEDIA_FIELD_LEGAL_VIDEO_EXTENSIONS_DESC="Video extensions (file types) you are allowed to upload (comma separated). These are used to check for valid video headers."
COM_MEDIA_FIELD_LEGAL_VIDEO_EXTENSIONS_LABEL="Legal Video Extensions (File Types)"
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_DESC="A comma separated list of legal MIME types to upload."
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_LABEL="Legal MIME Types"
COM_MEDIA_FIELD_LEGAL_VIDEO_EXTENSIONS_DESC="Video extensions (file types) you are allowed to upload (comma separated). These are used to check for valid video headers."
COM_MEDIA_FIELD_LEGAL_VIDEO_EXTENSIONS_LABEL="Legal Video Extensions (File Types)"
COM_MEDIA_FIELD_MAXIMUM_SIZE_DESC="Use zero for no limit. Note: your server has a maximum limit."
COM_MEDIA_FIELD_MAXIMUM_SIZE_LABEL="Maximum Size (in MB)"
COM_MEDIA_FIELD_PATH_FILE_FOLDER_DESC="Enter the path to the files folder relative to the root of your webspace. Warning! Changing to another path than the default 'images' may break your links. Note: Do not start the path with a slash!"
Expand All @@ -60,12 +63,11 @@ COM_MEDIA_FIELD_RESTRICT_UPLOADS_DESC="Restrict uploads for lower than manager u
COM_MEDIA_FIELD_RESTRICT_UPLOADS_EXTENSIONS_DESC="Restrict uploads for lower than manager users to files in the list."
COM_MEDIA_FIELD_RESTRICT_UPLOADS_EXTENSIONS_LABEL="Allowed Extensions"
COM_MEDIA_FIELD_RESTRICT_UPLOADS_LABEL="Restrict Uploads"
COM_MEDIA_FIELDSET_OPTIONS_LABEL="Media"
COM_MEDIA_FILE="File"
COM_MEDIA_FILE_EXISTS_AND_OVERRIDE="%s already exists. Do you want to replace it?"
COM_MEDIA_FOLDER="Folder"
COM_MEDIA_FOLDER_NAME="Folder Name"
COM_MEDIA_FOLDERS="Media Folders"
COM_MEDIA_FOLDER_NAME="Folder Name"
COM_MEDIA_INCREASE_GRID="Increase grid size"
COM_MEDIA_MEDIA_DATE_CREATED="Date Created"
COM_MEDIA_MEDIA_DATE_MODIFIED="Date Modified"
Expand All @@ -80,7 +82,6 @@ COM_MEDIA_OPEN_ITEM_ACTIONS="Open item actions"
COM_MEDIA_PLEASE_SELECT_ITEM="Please select item."
COM_MEDIA_RENAME="Rename"
COM_MEDIA_RENAME_ERROR="Error renaming item."
COM_MEDIA_ERROR_MAKESAFE="Could not make the file name safe. If it contains non ASCII chars please ensure you have the INTL and ICONV PHP Extensions installed."
COM_MEDIA_RENAME_SUCCESS="Item renamed."
COM_MEDIA_RESET="Reset"
COM_MEDIA_SEARCH="Search"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,10 @@ const initRunner = () => {
window.location.href = `${paths ? `${paths.base}/index.php` : window.location.pathname}?option=com_scheduler&view=tasks`;
};

modal.addEventListener('show.bs.modal', triggerTaskAndShowOutput);
modal.addEventListener('hidden.bs.modal', reloadOnClose);
if (modal) {
modal.addEventListener('show.bs.modal', triggerTaskAndShowOutput);
modal.addEventListener('hidden.bs.modal', reloadOnClose);
}
document.removeEventListener('DOMContentLoaded', initRunner);
};

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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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/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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Danish Translation Team (Transl.: Ronny Buelund)</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</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.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>JoomlaPersian Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/fa-IR/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>Persian (پارسی)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>JoomlaFarsi.Com Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/fi-FI/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>Finnish (Suomi)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Finnish translation team: Joomla.fi</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/fr-FR/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>French (fr-FR)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Joomla! Project - French translation team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/he-IL/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>Hebrew (Israel)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Joomla! Project</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/hu-HU/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>Hungarian (Magyar)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Joomla! Magyarország</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/it-IT/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>Italiano (it-IT)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Progetto Joomla!</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/ja-JP/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>Japanese (ja-JP)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Joomla!じゃぱん</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/ka-GE/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>Georgian (Georgia)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Georgian Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/kk-KZ/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>Kazakh (Kazakhstan)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Sarvarov Akylkerey</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/lt-LT/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>Lithuanian (Lithuania)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Oskaras Jankauskas</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/lv-LV/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>Latvian (Latvia)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Joomla! Projekts</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/nl-BE/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>Dutch (Belgium)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Dutch (BE) translation team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/nl-NL/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>Dutch (nl-NL)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Dutch Translation Team</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/pl-PL/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>Polish (Poland)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Projekt Joomla!</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/pt-BR/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>Português Brasil (pt-BR)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Projeto Joomla!</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/pt-PT/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>Português (Portugal)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Comunidade JoomlaPortugal</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/ro-RO/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>Română (România)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Horia Negura - Quanta</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
2 changes: 1 addition & 1 deletion installation/language/sk-SK/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>Slovak (Slovakia)</name>
<version>4.2.3</version>
<version>4.2.4</version>
<creationDate>2022-09</creationDate>
<author>Slovak translation team : Peter Michnica</author>
<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
Expand Down
Loading