Skip to content

Commit

Permalink
Improves language string names
Browse files Browse the repository at this point in the history
  • Loading branch information
betweenbrain committed Aug 26, 2013
1 parent a7fad98 commit 6424573
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions language/en-GB/en-GB.mod_session.ini
Expand Up @@ -3,10 +3,8 @@ MOD_SESSION_FORMAT_DESC="The requested format of the data to be returned from Aj
MOD_SESSION_FORMAT_LABEL="Response Format"
MOD_SESSION_LOAD_JQUERY_DESC="Load the latest CDN hosted version of jQuery. Generally useful for testing, but not advised for production."
MOD_SESSION_LOAD_JQUERY_LABEL="Load jQuery"
MOD_SESSION_MODE_DESC="Select whether the Ajax request will be made to a plugin or module. The default is to make Ajax requests to the helper file of this module."
MOD_SESSION_MODE_LABEL="Ajax Mode"
MOD_SESSION_NODE_DESC="The name of the $_SESSION superglobal node to store data in and make requests to."
MOD_SESSION_NODE_LABEL="Session Storage Node"
MOD_SESSION_ADD="Add Value"
MOD_SESSION_DELETE="Delete Value"
MOD_SESSION_DESTROY="Delete All Values"
MOD_SESSION_INPUT_ADD="Add Value"
MOD_SESSION_INPUT_DELETE="Delete Value"
MOD_SESSION_INPUT_DESTROY="Delete All Values"
6 changes: 3 additions & 3 deletions tmpl/default.php
Expand Up @@ -12,8 +12,8 @@
?>
<form>
<input type="text" name="data">
<input type="submit" class="add" value="<?php echo JText::_('MOD_SESSION_ADD') ?>" />
<input type="submit" class="delete" value="<?php echo JText::_('MOD_SESSION_DELETE') ?>" />
<input type="submit" class="destroy" value="<?php echo JText::_('MOD_SESSION_DESTROY') ?>" />
<input type="submit" class="add" value="<?php echo JText::_('MOD_SESSION_INPUT_ADD') ?>" />
<input type="submit" class="delete" value="<?php echo JText::_('MOD_SESSION_INPUT_DELETE') ?>" />
<input type="submit" class="destroy" value="<?php echo JText::_('MOD_SESSION_INPUT_DESTROY') ?>" />
</form>
<div class="status"></div>

0 comments on commit 6424573

Please sign in to comment.