summaryrefslogtreecommitdiff
path: root/lib/phptal/PHPTAL/TranslationService.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-10-31 21:58:33 +0100
committeremkael <emkael@tlen.pl>2016-10-31 21:59:22 +0100
commitd216b3147bc3f37cf2337acab5767c6a4f74aa2e (patch)
tree6090989e5071db101a1112131e2b075a02dccbc4 /lib/phptal/PHPTAL/TranslationService.php
parentb23bfbb17d1d5f6852a1690f246a84c2d38ae969 (diff)
* PHPTAL library
Diffstat (limited to 'lib/phptal/PHPTAL/TranslationService.php')
-rw-r--r--lib/phptal/PHPTAL/TranslationService.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/lib/phptal/PHPTAL/TranslationService.php b/lib/phptal/PHPTAL/TranslationService.php
new file mode 100644
index 0000000..0a63e3f
--- /dev/null
+++ b/lib/phptal/PHPTAL/TranslationService.php
@@ -0,0 +1,62 @@
+<?php
+/**
+ * PHPTAL templating engine
+ *
+ * PHP Version 5
+ *
+ * @category HTML
+ * @package PHPTAL
+ * @author Laurent Bedubourg <lbedubourg@motion-twin.com>
+ * @author Kornel LesiƄski <kornel@aardvarkmedia.co.uk>
+ * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License
+ * @version SVN: $Id$
+ * @link http://phptal.org/
+ */
+
+/**
+ * @package PHPTAL
+ */
+interface PHPTAL_TranslationService
+{
+ /**
+ * Set the target language for translations.
+ *
+ * When set to '' no translation will be done.
+ *
+ * You can specify a list of possible language for exemple :
+ *
+ * setLanguage('fr_FR', 'fr_FR@euro')
+ *
+ * @return string - chosen language
+ */
+ function setLanguage(/*...*/);
+
+ /**
+ * PHPTAL will inform translation service what encoding page uses.
+ * Output of translate() must be in this encoding.
+ */
+ function setEncoding($encoding);
+
+ /**
+ * Set the domain to use for translations (if different parts of application are translated in different files. This is not for language selection).
+ */
+ function useDomain($domain);
+
+ /**
+ * Set XHTML-escaped value of a variable used in translation key.
+ *
+ * You should use it to replace all ${key}s with values in translated strings.
+ *
+ * @param string $key - name of the variable
+ * @param string $value_escaped - XHTML markup
+ */
+ function setVar($key, $value_escaped);
+
+ /**
+ * Translate a gettext key and interpolate variables.
+ *
+ * @param string $key - translation key, e.g. "hello ${username}!"
+ * @param string $htmlescape - if true, you should HTML-escape translated string. You should never HTML-escape interpolated variables.
+ */
+ function translate($key, $htmlescape=true);
+}