summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-08-13 11:44:29 +0000
committerthomascube <thomas@roundcube.net>2011-08-13 11:44:29 +0000
commit1c72e9983dfc9bbfb0fe4c0f02215855b0cb3e5f (patch)
treef9d95a215d3aaa8c6efc2feac0d261ce94a52a75
parent6667bcf9649c1895ac31093ccd63671113b3fc1c (diff)
parenta02cfa9b085fc875fc55f57029a8e5846771ed5e (diff)
Tagging files for release 0.5.4v0.5.4
-rw-r--r--program/include/main.inc10
-rw-r--r--program/include/rcmail.php15
2 files changed, 25 insertions, 0 deletions
diff --git a/program/include/main.inc b/program/include/main.inc
index 3c04e20bf..842b93323 100644
--- a/program/include/main.inc
+++ b/program/include/main.inc
@@ -92,6 +92,16 @@ function rcube_label($p, $domain=null)
return rcmail::get_instance()->gettext($p, $domain);
}
+/**
+ * Global wrapper of rcmail::text_exists()
+ * to check whether a text label is defined
+ *
+ * @see rcmail::text_exists()
+ */
+function rcube_label_exists($name, $domain=null)
+{
+ return rcmail::get_instance()->text_exists($name, $domain);
+}
/**
* Overwrite action variable
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