You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12
Original file line number
Diff line number
Diff line change
@@ -250,6 +250,18 @@ If you are developing on Windows, you can use docker or WSL to run the tests on
250
250
docker run -rm -e SQLCMDSERVER=<yourserver> -e SQLCMDUSER=<youruser> -e SQLCMDPASSWORD=<yourpassword> -v i:\git\go-sqlcmd:/go-sqlcmd -w /go-sqlcmd golang:1.16 go test ./...
251
251
```
252
252
253
+
## Localization
254
+
A partial localization suppport exists in go-sqlcmd for following languages for user visible content that also existed in ODBC based SQLCMD.
255
+
Chinese (Simplified) | Chinese (Traditional) | English (United States) | French | German | Italian | Japanese | Korean | Portuguese (Brazil) | Russian | Spanish
256
+
257
+
To get localized messages from SQLCMD user needs to set environment variable SQLCMD_LANG to a language tag as per BCP47 convention.
258
+
E.g.
259
+
```
260
+
\git\go-sqlcmd>set SQLCMD_LANG=de-de
261
+
\git\go-sqlcmd>.\sqlcmd.exe -w 4
262
+
sqlcmd.exe: error: sqlcmd.exe: '-w 4': Der Wert muss größer als 8 und kleiner als 65536 sein.
263
+
```
264
+
253
265
## Contributing
254
266
255
267
This project welcomes contributions and suggestions. Most contributions require you to agree to a
0 commit comments