Skip to content
Snippets Groups Projects
Unverified Commit 58e60ef7 authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

Add missing class properties

parent 7d9b293c
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,6 @@ use Gettext\Translator;
class Localization
{
/**
* The configuration to use.
*
......@@ -37,21 +36,36 @@ class Localization
*/
const GETTEXT_I18N_BACKEND = 'gettext/gettext';
/*
/**
* The default locale directory
*/
private $localeDir;
/*
/**
* Where specific domains are stored
*/
private $localeDomainMap = array();
/*
/**
* Pointer to currently active translator
*/
private $translator;
/**
* Pointer to current Language
*/
private $language;
/**
* Language code representing the current Language
*/
private $langcode;
/**
* The language backend to use
*/
private $i18nBackend;
/**
* Constructor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment