Revert "Correct inconsistent capitalization on "Server Add""

This reverts commit f4810345b4.
Bharat is a correct as in that "Server Add" is a proper name and should
be exempt from the capitalization rules.
This commit is contained in:
Tim Almdal 2009-12-05 12:07:24 -08:00
parent f4810345b4
commit 4a6b62c285
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ class server_add_Core {
}
if (empty($paths)) {
site_status::warning(
t("Server add module needs configuration. <a href=\"%url\">Configure it now!</a>",
t("Server Add needs configuration. <a href=\"%url\">Configure it now!</a>",
array("url" => html::mark_clean(url::site("admin/server_add")))),
"server_add_configuration");
} else {

View File

@ -22,7 +22,7 @@ class server_add_event_Core {
$menu->get("settings_menu")
->append(Menu::factory("link")
->id("server_add")
->label(t("Server add"))
->label(t("Server Add"))
->url(url::site("admin/server_add")));
}
@ -35,7 +35,7 @@ class server_add_event_Core {
$menu->get("add_menu")
->append(Menu::factory("dialog")
->id("server_add")
->label(t("Server add"))
->label(t("Server Add"))
->url(url::site("server_add/browse/$item->id")));
}
}