From: shirayuki Date: Sun, 23 Feb 2014 23:40:20 +0000 (+0900) Subject: i18n: use "int:" for consistency X-Git-Tag: 1.31.0-rc.0~16705^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=964548c14e64cdc144b27673937df07de882105b;p=lhc%2Fweb%2Fwiklou.git i18n: use "int:" for consistency - {{int:config-mssql-windowsauth}} - update comment for grep Change-Id: Id4749ab3e0c9e6cc9f1af5877cffe614adce2b8d --- diff --git a/includes/installer/Installer.i18n.php b/includes/installer/Installer.i18n.php index 9f39a879e8..2539f0ceb8 100644 --- a/includes/installer/Installer.i18n.php +++ b/includes/installer/Installer.i18n.php @@ -358,9 +358,9 @@ In UTF-8 mode, MySQL will know what character set your data is 'config-mssql-auth' => 'Authentication type:', 'config-mssql-install-auth' => 'Select the authentication type that will be used to connect to the database during the installation process. -If you select "Windows Authentication", the credentials of whatever user the webserver is running as will be used.', +If you select "{{int:config-mssql-windowsauth}}", the credentials of whatever user the webserver is running as will be used.', 'config-mssql-web-auth' => 'Select the authentication type that the web server will use to connect to the database server, during ordinary operation of the wiki. -If you select "Windows Authentication", the credentials of whatever user the webserver is running as will be used.', +If you select "{{int:config-mssql-windowsauth}}", the credentials of whatever user the webserver is running as will be used.', 'config-mssql-sqlauth' => 'SQL Server Authentication', 'config-mssql-windowsauth' => 'Windows Authentication', 'config-site-name' => 'Name of wiki:', diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index f83db54420..4bc6cad246 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -482,7 +482,7 @@ class WebInstaller_DBConnect extends WebInstallerPage { $defaultType = $this->getVar( 'wgDBtype' ); // Messages: config-dbsupport-mysql, config-dbsupport-postgres, config-dbsupport-oracle, - // config-dbsupport-sqlite + // config-dbsupport-sqlite, config-dbsupport-mssql $dbSupport = ''; foreach ( Installer::getDBTypes() as $type ) { $dbSupport .= wfMessage( "config-dbsupport-$type" )->plain() . "\n";