diff options
author | thomascube <thomas@roundcube.net> | 2011-08-13 09:10:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-08-13 09:10:11 +0000 |
commit | a02cfa9b085fc875fc55f57029a8e5846771ed5e (patch) | |
tree | f9d95a215d3aaa8c6efc2feac0d261ce94a52a75 /program/include/rcmail.php | |
parent | 3b4dee3735c976d5ecd21430515df014262b8e21 (diff) |
Fix incomplete backport from trunkv0.5.4@5065
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r-- | program/include/rcmail.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 7ef34724e..d29ebe780 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -915,6 +915,21 @@ class rcmail return $text; } + /** + * Check if the given text lable exists + * + * @param string Label name + * @return boolean True if text exists (either in the current language or in en_US) + */ + public function text_exists($name, $domain=null) + { + // load localization files if not done yet + if (empty($this->texts)) + $this->load_language(); + + // check for text with domain first + return ($domain && isset($this->texts[$domain.'.'.$name])) || isset($this->texts[$name]); + } /** * Load a localization package |