summaryrefslogtreecommitdiffstats
path: root/lib/gettext.php
diff options
context:
space:
mode:
authorPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-06-13 08:11:09 +0000
committerPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-06-13 08:11:09 +0000
commit4b5756ba9d8ee9e83c1ba4624b461b4746e49e82 (patch)
tree2e46772da9d25197fd847b273ca1f9b882ad3e34 /lib/gettext.php
parent93f4a26ab07207e1f9a8e716a82c5d8812d5344c (diff)
downloadampache-4b5756ba9d8ee9e83c1ba4624b461b4746e49e82.tar.gz
ampache-4b5756ba9d8ee9e83c1ba4624b461b4746e49e82.tar.bz2
ampache-4b5756ba9d8ee9e83c1ba4624b461b4746e49e82.zip
Miscellaneous cleanup.
Diffstat (limited to 'lib/gettext.php')
-rw-r--r--lib/gettext.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/gettext.php b/lib/gettext.php
index 6c88b057..c73ad501 100644
--- a/lib/gettext.php
+++ b/lib/gettext.php
@@ -20,10 +20,10 @@
*/
-/*!
- @function load_gettext
- @discussion sets the local
-*/
+/**
+ * load_gettext
+ * Sets up our local gettext settings.
+ */
function load_gettext() {
/* If we have gettext */
if (function_exists('bindtextdomain')) {
@@ -57,9 +57,9 @@ function load_gettext() {
*/
function __($string,$subject,$replace) {
- $translated = _($string);
- $result = str_replace($subject,$replace,$translated);
- return $result;
+ $translated = _($string);
+ $result = str_replace($subject,$replace,$translated);
+ return $result;
} // __