Skip to content

Commit

Permalink
Kept consistency with langage strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie.lodder committed Apr 22, 2015
1 parent 840f9b2 commit 7c3048b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mod_slideset/language/en-GB/en-GB.mod_slideset.sys.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
; Note : All ini files need to be saved as UTF-8

JJ_SLIDESET_INSTALLATION="<h1>JJ Slideset</h1><h3>Brought to you by JoomJunk</h3><p>Copyright (C) 2015 JoomJunk</p><p>Released under GNU/GPL 3.0 License</p><p>Website: <a href='http://www.joomjunk.co.uk'>www.joomjunk.co.uk</a></p><p>Slideset is an elegant module that utilizes Yootheme's UIKit. It creates set of images and allows you to loop through them. The best bit, is that it's fully responsive and uses CSS3 animations, so speed and smoothness are second to none.</p>"
MOD_SLIDESET_JOOMLA_NOT_COMPATIBLE="Installation aborted: Slideset requires Joomla %s or higher"
MOD_SLIDESET_COULD_NOT_CREATE_IMAGES_DIR="Installation error: Slideset couldn't create a subdirectory in images called \"Slideset\". You will need to manually create this directory"
JJ_SLIDESET_JOOMLA_NOT_COMPATIBLE="Installation aborted: Slideset requires Joomla %s or higher"
JJ_SLIDESET_COULD_NOT_CREATE_IMAGES_DIR="Installation error: Slideset couldn't create a subdirectory in images called \"Slideset\". You will need to manually create this directory"
4 changes: 2 additions & 2 deletions mod_slideset/script.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function preflight($type, $parent)

if (!$jVersion->isCompatible($minimumJoomlaVersion))
{
echo JText::sprintf('MOD_SLIDESET_JOOMLA_NOT_COMPATIBLE', $minimumJoomlaVersion);
echo JText::sprintf('JJ_SLIDESET_JOOMLA_NOT_COMPATIBLE', $minimumJoomlaVersion);

return false;
}
Expand All @@ -55,7 +55,7 @@ public function install($parent)
{
if (!JFolder::create(JPATH_ROOT . '/images/slideset'))
{
echo JText::_('MOD_SLIDESET_COULD_NOT_CREATE_IMAGES_DIR');
echo JText::_('JJ_SLIDESET_COULD_NOT_CREATE_IMAGES_DIR');
}
}
}
Expand Down

0 comments on commit 7c3048b

Please sign in to comment.