2021-03-05 03:08:47 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<form
|
|
|
|
addrulepath="/administrator/components/com_componentbuilder/models/rules"
|
|
|
|
addfieldpath="/administrator/components/com_componentbuilder/models/fields"
|
|
|
|
>
|
2017-04-03 10:58:41 +00:00
|
|
|
<fieldset name="details">
|
2018-03-18 04:28:54 +00:00
|
|
|
<!-- Default Fields. -->
|
|
|
|
<!-- Id Field. Type: Text (joomla) -->
|
|
|
|
<field
|
|
|
|
name="id"
|
|
|
|
type="text" class="readonly" label="JGLOBAL_FIELD_ID_LABEL"
|
|
|
|
description ="JGLOBAL_FIELD_ID_DESC" size="10" default="0"
|
|
|
|
readonly="true"
|
|
|
|
/>
|
|
|
|
<!-- Date Created Field. Type: Calendar (joomla) -->
|
|
|
|
<field
|
|
|
|
name="created"
|
|
|
|
type="calendar"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_CREATED_DATE_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_CREATED_DATE_DESC"
|
|
|
|
size="22"
|
|
|
|
format="%Y-%m-%d %H:%M:%S"
|
|
|
|
filter="user_utc"
|
|
|
|
/>
|
|
|
|
<!-- User Created Field. Type: User (joomla) -->
|
|
|
|
<field
|
|
|
|
name="created_by"
|
|
|
|
type="user"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_CREATED_BY_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_CREATED_BY_DESC"
|
|
|
|
/>
|
|
|
|
<!-- Published Field. Type: List (joomla) -->
|
|
|
|
<field name="published" type="list" label="JSTATUS"
|
|
|
|
description="JFIELD_PUBLISHED_DESC" class="chzn-color-state"
|
|
|
|
filter="intval" size="1" default="1" >
|
|
|
|
<option value="1">
|
|
|
|
JPUBLISHED</option>
|
|
|
|
<option value="0">
|
|
|
|
JUNPUBLISHED</option>
|
|
|
|
<option value="2">
|
|
|
|
JARCHIVED</option>
|
|
|
|
<option value="-2">
|
|
|
|
JTRASHED</option>
|
|
|
|
</field>
|
|
|
|
<!-- Date Modified Field. Type: Calendar (joomla) -->
|
|
|
|
<field name="modified" type="calendar" class="readonly"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_MODIFIED_DATE_LABEL" description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_MODIFIED_DATE_DESC"
|
|
|
|
size="22" readonly="true" format="%Y-%m-%d %H:%M:%S" filter="user_utc" />
|
|
|
|
<!-- User Modified Field. Type: User (joomla) -->
|
|
|
|
<field name="modified_by" type="user"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_MODIFIED_BY_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_MODIFIED_BY_DESC"
|
|
|
|
class="readonly"
|
|
|
|
readonly="true"
|
|
|
|
filter="unset"
|
|
|
|
/>
|
|
|
|
<!-- Access Field. Type: Accesslevel (joomla) -->
|
|
|
|
<field name="access"
|
|
|
|
type="accesslevel"
|
|
|
|
label="JFIELD_ACCESS_LABEL"
|
|
|
|
description="JFIELD_ACCESS_DESC"
|
|
|
|
default="1"
|
|
|
|
required="false"
|
|
|
|
/>
|
|
|
|
<!-- Ordering Field. Type: Numbers (joomla) -->
|
|
|
|
<field
|
|
|
|
name="ordering"
|
|
|
|
type="number"
|
|
|
|
class="inputbox validate-ordering"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_ORDERING_LABEL"
|
|
|
|
description=""
|
|
|
|
default="0"
|
|
|
|
size="6"
|
|
|
|
required="false"
|
|
|
|
/>
|
|
|
|
<!-- Version Field. Type: Text (joomla) -->
|
|
|
|
<field
|
|
|
|
name="version"
|
|
|
|
type="text"
|
|
|
|
class="readonly"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_VERSION_LABEL"
|
|
|
|
description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_VERSION_DESC"
|
|
|
|
size="6"
|
|
|
|
readonly="true"
|
|
|
|
filter="unset"
|
|
|
|
/>
|
2020-12-24 13:39:33 +00:00
|
|
|
<!-- Was added due to Permissions JS needing a Title field -->
|
|
|
|
<!-- Let us know at gh-629 should this change -->
|
|
|
|
<!-- https://github.com/vdm-io/Joomla-Component-Builder/issues/629#issuecomment-750117235 -->
|
|
|
|
<field
|
|
|
|
name="title"
|
|
|
|
type="hidden"
|
|
|
|
default="componentbuilder language_translation"
|
|
|
|
/>
|
2018-03-18 04:28:54 +00:00
|
|
|
<!-- Dynamic Fields. -->
|
2018-04-19 23:36:21 +00:00
|
|
|
<!-- Source Field. Type: Textarea. (joomla) -->
|
2018-03-18 04:28:54 +00:00
|
|
|
<field
|
|
|
|
type="textarea"
|
2018-04-19 23:36:21 +00:00
|
|
|
name="source"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_SOURCE_LABEL"
|
2018-03-18 04:28:54 +00:00
|
|
|
rows="4"
|
|
|
|
cols="5"
|
2018-04-19 23:36:21 +00:00
|
|
|
message="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_SOURCE_MESSAGE"
|
2018-03-18 04:28:54 +00:00
|
|
|
class="text_area span12"
|
2018-04-19 23:36:21 +00:00
|
|
|
filter="safehtml"
|
|
|
|
hint="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_SOURCE_HINT"
|
2018-03-18 04:28:54 +00:00
|
|
|
readonly="true"
|
|
|
|
disabled="true"
|
|
|
|
/>
|
2020-03-24 01:11:43 +00:00
|
|
|
<!-- Plugins Field. Type: Joomlaplugins. (custom) -->
|
|
|
|
<field
|
|
|
|
type="joomlaplugins"
|
|
|
|
name="plugins"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_PLUGINS_LABEL"
|
|
|
|
class="list_class span12"
|
|
|
|
multiple="true"
|
|
|
|
default="0"
|
|
|
|
button="true"
|
|
|
|
/>
|
|
|
|
<!-- Modules Field. Type: Joomlamodules. (custom) -->
|
|
|
|
<field
|
|
|
|
type="joomlamodules"
|
|
|
|
name="modules"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_MODULES_LABEL"
|
|
|
|
class="list_class span12"
|
|
|
|
multiple="true"
|
|
|
|
default="0"
|
|
|
|
button="true"
|
|
|
|
/>
|
2021-01-15 07:13:06 +00:00
|
|
|
<!-- Components Field. Type: Joomlacomponents. (custom) -->
|
2018-03-18 04:28:54 +00:00
|
|
|
<field
|
2021-01-15 07:13:06 +00:00
|
|
|
type="joomlacomponents"
|
2018-03-18 04:28:54 +00:00
|
|
|
name="components"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_COMPONENTS_LABEL"
|
2020-03-24 01:11:43 +00:00
|
|
|
class="list_class span12"
|
2018-03-18 04:28:54 +00:00
|
|
|
multiple="true"
|
|
|
|
default="0"
|
|
|
|
button="false"
|
|
|
|
/>
|
|
|
|
<!-- Translation Field. Type: Subform. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="subform"
|
|
|
|
name="translation"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_LABEL"
|
|
|
|
layout="joomla.form.field.subform.repeatable-table"
|
|
|
|
multiple="true"
|
|
|
|
description="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_DESCRIPTION"
|
2018-09-24 14:37:51 +00:00
|
|
|
default=""
|
2018-04-08 06:12:18 +00:00
|
|
|
icon="list">
|
2018-03-18 04:28:54 +00:00
|
|
|
<form hidden="true" name="list_translation_modal" repeat="true">
|
|
|
|
<!-- Translation Field. Type: Textarea. (joomla) -->
|
|
|
|
<field
|
|
|
|
type="textarea"
|
|
|
|
name="translation"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_LABEL"
|
|
|
|
rows="4"
|
|
|
|
cols="20"
|
|
|
|
message="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_MESSAGE"
|
|
|
|
class="text_area translation_text_area"
|
2020-07-18 19:36:05 +00:00
|
|
|
filter="RAW"
|
2018-03-18 04:28:54 +00:00
|
|
|
hint="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_TRANSLATION_HINT"
|
|
|
|
/>
|
|
|
|
<!-- Language Field. Type: Lang. (custom) -->
|
|
|
|
<field
|
|
|
|
type="lang"
|
|
|
|
name="language"
|
|
|
|
label="COM_COMPONENTBUILDER_LANGUAGE_TRANSLATION_LANGUAGE_LABEL"
|
|
|
|
class="list_class"
|
|
|
|
multiple="false"
|
2020-03-24 01:11:43 +00:00
|
|
|
default="en-GB"
|
2019-05-25 20:20:12 +00:00
|
|
|
required="true"
|
2018-03-18 04:28:54 +00:00
|
|
|
button="false"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</field>
|
2021-03-05 03:08:47 +00:00
|
|
|
</fieldset>
|
|
|
|
|
2017-04-03 10:58:41 +00:00
|
|
|
<!-- Access Control Fields. -->
|
|
|
|
<fieldset name="accesscontrol">
|
|
|
|
<!-- Asset Id Field. Type: Hidden (joomla) -->
|
|
|
|
<field
|
|
|
|
name="asset_id"
|
|
|
|
type="hidden"
|
|
|
|
filter="unset"
|
|
|
|
/>
|
|
|
|
<!-- Rules Field. Type: Rules (joomla) -->
|
|
|
|
<field
|
|
|
|
name="rules"
|
|
|
|
type="rules"
|
2017-04-05 13:21:10 +00:00
|
|
|
label="Permissions in relation to this language_translation"
|
2017-04-03 10:58:41 +00:00
|
|
|
translate_label="false"
|
|
|
|
filter="rules"
|
|
|
|
validate="rules"
|
|
|
|
class="inputbox"
|
|
|
|
component="com_componentbuilder"
|
2017-04-05 13:21:10 +00:00
|
|
|
section="language_translation"
|
2017-04-03 10:58:41 +00:00
|
|
|
/>
|
2021-03-05 03:08:47 +00:00
|
|
|
</fieldset>
|
2017-04-03 10:58:41 +00:00
|
|
|
</form>
|