summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2001-04-12 18:18:38 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2001-04-12 18:18:38 +0000
commit02e28d29a899caad8f2a5966046abd8afd778528 (patch)
tree6e0897592e8f1ba16b5e40e34cebfaad31e00347
parent2f309aa5c895ecacf2b983b1d609e19ed67233f3 (diff)
downloadbrdo-02e28d29a899caad8f2a5966046abd8afd778528.tar.gz
brdo-02e28d29a899caad8f2a5966046abd8afd778528.tar.bz2
Typo: "the language the site" -> "the language of the site".
-rw-r--r--account.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/account.php b/account.php
index 755646729..d88ffdb30 100644
--- a/account.php
+++ b/account.php
@@ -153,7 +153,7 @@ function account_site_edit() {
$output .= "<B>". t("Language" ) .":</B><BR>\n";
foreach ($languages as $key=>$value) $options3 .= " <OPTION VALUE=\"$key\"". (($user->language == $key) ? " SELECTED" : "") .">$value - $key</OPTION>\n";
$output .= "<SELECT NAME=\"edit[language]\">\n$options3</SELECT><BR>\n";
- $output .= "<I><SMALL>". t("Selecting a different language will change the language the site.") ."</SMALL></I><P>\n";
+ $output .= "<I><SMALL>". t("Selecting a different language will change the language of the site.") ."</SMALL></I><P>\n";
$output .= "<B>". t("Maximum number of items to display") .":</B><BR>\n";
for ($nodes = 10; $nodes <= 30; $nodes += 5) $options4 .= "<OPTION VALUE=\"$nodes\"". (($user->nodes == $nodes) ? " SELECTED" : "") .">$nodes</OPTION>\n";