File tree Expand file tree Collapse file tree 8 files changed +16
-60
lines changed
pages/ConnectionDialog/components Expand file tree Collapse file tree 8 files changed +16
-60
lines changed Original file line number Diff line number Diff line change 194
194
"Advanced Connection Settings" : " Advanced Connection Settings" ,
195
195
"Advanced" : " Advanced" ,
196
196
"Test Connection" : " Test Connection" ,
197
- "Connect to SQL Server " : " Connect to SQL Server " ,
197
+ "Connect to Database " : " Connect to Database " ,
198
198
"Parameters" : " Parameters" ,
199
199
"Connection String" : " Connection String" ,
200
200
"Browse Azure" : " Browse Azure" ,
Original file line number Diff line number Diff line change 270
270
<trans-unit id =" ++CODE++1a2303ede07493acc7caaa7c737f3c52bcc9cf04372be19ed1b0af6b9f2c791e" >
271
271
<source xml : lang =" en" >Connect</source >
272
272
</trans-unit >
273
- <trans-unit id =" ++CODE++8a8bef20f041d1f1fc0ea7966a3fa58563c599617464a303258ed302ddca5a79 " >
274
- <source xml : lang =" en" >Connect to SQL Server </source >
273
+ <trans-unit id =" ++CODE++150851f09acf7f6f4d53e35fb619389c38558ea5b98d3a13efaf84b3eda50422 " >
274
+ <source xml : lang =" en" >Connect to Database </source >
275
275
</trans-unit >
276
276
<trans-unit id =" ++CODE++b6c3dc8ba33b3a93b9060f81da8fa7d496f07487cec7a12353257242b2ea9e24" >
277
277
<source xml : lang =" en" >Connected to server " {0}" on document " {1}" . Server information: {2}</source >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ export class LocConstants {
164
164
advancedConnectionSettings : l10n . t ( "Advanced Connection Settings" ) ,
165
165
advancedSettings : l10n . t ( "Advanced" ) ,
166
166
testConnection : l10n . t ( "Test Connection" ) ,
167
- connectToSQLServer : l10n . t ( "Connect to SQL Server " ) ,
167
+ connectToDatabase : l10n . t ( "Connect to Database " ) ,
168
168
parameters : l10n . t ( "Parameters" ) ,
169
169
connectionString : l10n . t ( "Connection String" ) ,
170
170
browseAzure : l10n . t ( "Browse Azure" ) ,
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import { ConnectionDialogContext } from "../connectionDialogStateProvider";
10
10
import { locConstants } from "../../../common/locConstants" ;
11
11
import { useContext } from "react" ;
12
12
13
- const sqlServerImage = require ( "../../../../../media/sqlServer_light .svg" ) ;
14
- const sqlServerImageDark = require ( "../../../../../media/sqlServer_dark .svg" ) ;
13
+ const databaseIconLight = require ( "../../../../../media/database_light .svg" ) ;
14
+ const databaseIconDark = require ( "../../../../../media/database_dark .svg" ) ;
15
15
16
16
export const ConnectionHeader = ( ) => {
17
17
const connectionDialogContext = useContext ( ConnectionDialogContext ) ;
@@ -29,10 +29,10 @@ export const ConnectionHeader = () => {
29
29
} }
30
30
src = {
31
31
connectionDialogContext ?. themeKind === ColorThemeKind . Light
32
- ? sqlServerImage
33
- : sqlServerImageDark
32
+ ? databaseIconLight
33
+ : databaseIconDark
34
34
}
35
- alt = "SQL Server"
35
+ alt = { locConstants . connectionDialog . connectToDatabase }
36
36
height = { 60 }
37
37
width = { 60 }
38
38
/>
@@ -43,7 +43,7 @@ export const ConnectionHeader = () => {
43
43
} }
44
44
weight = "medium"
45
45
>
46
- { locConstants . connectionDialog . connectToSQLServer }
46
+ { locConstants . connectionDialog . connectToDatabase }
47
47
</ Text >
48
48
</ div >
49
49
) ;
You can’t perform that action at this time.
0 commit comments