diff --git a/component/admin/config.xml b/component/admin/config.xml
index d30e74b1..201d1f99 100644
--- a/component/admin/config.xml
+++ b/component/admin/config.xml
@@ -130,6 +130,92 @@
label="COM_LOCALISE_LABEL_LICENSE"
description="COM_LOCALISE_LABEL_LICENSE_DESC" />
+
'
+ . $change
+ . '
';
+
+ $field->attributes()->istextchange = 1;
+ $field->addAttribute('changestatus', $revisedchanges[$key]);
+ $field->addAttribute('sourcetext', $sourcetext);
+ $field->addAttribute('targettext', $targettext);
+ }
+ elseif ($have_develop == '1' && in_array($key, $developdata['extra_keys']['keys']))
+ {
+ $label = '
-
+
form->getFieldset('select') as $field): ?>
type != "Spacer") : ?>
@@ -214,7 +240,7 @@ function translateAll()
-
+
@@ -368,3 +394,29 @@ function translateAll()
+
diff --git a/component/admin/views/translation/tmpl/raw.php b/component/admin/views/translation/tmpl/raw.php
index fbb05484..834a8c03 100644
--- a/component/admin/views/translation/tmpl/raw.php
+++ b/component/admin/views/translation/tmpl/raw.php
@@ -15,6 +15,27 @@
JHtml::_('behavior.keepalive');
JHTML::_('stylesheet', 'com_localise/localise.css', null, true);
+$params = JComponentHelper::getParams('com_localise');
+$ref_tag = $params->get('reference', 'en-GB');
+$allow_develop = $params->get('gh_allow_develop', 0);
+$saved_ref = $params->get('customisedref', 0);
+$source_ref = $saved_ref;
+$istranslation = $this->item->istranslation;
+$installed_version = new JVersion;
+$installed_version = $installed_version->getShortVersion();
+
+ if ($saved_ref == 0)
+ {
+ $source_ref = $installed_version;
+ }
+
+ if ($saved_ref != 0 && $allow_develop == 1 && $ref_tag == 'en-GB' && $istranslation == 0)
+ {
+ JFactory::getApplication()->enqueueMessage(
+ JText::sprintf('COM_LOCALISE_NOTICE_EDIT_REFERENCE_HAS_LIMITED_USE', $source_ref),
+ 'notice');
+ }
+
$fieldSets = $this->form->getFieldsets();
$ftpSets = $this->formftp->getFieldsets();
?>
diff --git a/component/admin/views/translations/tmpl/default.php b/component/admin/views/translations/tmpl/default.php
index d673113c..a680e7bb 100644
--- a/component/admin/views/translations/tmpl/default.php
+++ b/component/admin/views/translations/tmpl/default.php
@@ -17,6 +17,8 @@
$listDirn = $this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'filename';
$sortFields = $this->getSortFields();
+$params = JComponentHelper::getParams('com_localise');
+$ref_tag = $params->get('reference', 'en-GB');
?>