forked from wixtoolset/wix3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added localization in Portuguese to SqlExtension.
- Loading branch information
1 parent
fbdf745
commit d5f0cec
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
<copyright file="pt-br.wxl" company="Outercurve Foundation"> | ||
Copyright (c) 2004, Outercurve Foundation. | ||
This software is released under Microsoft Reciprocal License (MS-RL). | ||
The license and further copyright text can be found in the file | ||
LICENSE.TXT at the root directory of the distribution. | ||
</copyright> | ||
--> | ||
<WixLocalization Culture="pt-br" xmlns="http://schemas.microsoft.com/wix/2006/localization"> | ||
<String Id="msierrSQLFailedCreateDatabase" Overridable="yes">Error [2]: falha ao criar o Banco de Dados: [3], detalhes: [4].</String> | ||
<String Id="msierrSQLFailedDropDatabase" Overridable="yes">Error [2]: falha ao remover o Banco de Dados: [3], detalhes: [4].</String> | ||
<String Id="msierrSQLFailedConnectDatabase" Overridable="yes">Falhou a ligação ao Banco de Dados. ([2] [3] [4] [5])</String> | ||
<String Id="msierrSQLFailedExecString" Overridable="yes">Erro [2]: falha ao executar o comando de SQL, detalhes: [3], Comando: [4] Conteúdo: [5]</String> | ||
<String Id="msierrSQLDatabaseAlreadyExists" Overridable="yes">O Banco de Dados [3] já existe. Deseja continuar?</String> | ||
|
||
<String Id="ConfigureSql" Overridable="yes">Configurando o Servidor de SQL</String> | ||
<String Id="CreateDatabase" Overridable="yes">Criando os Bancos de Dados</String> | ||
<String Id="DropDatabase" Overridable="yes">Removendo os Bancos de Dados</String> | ||
<String Id="ExecuteSqlStrings" Overridable="yes">Executando comandos de SQL</String> | ||
<String Id="RollbackExecuteSqlStrings" Overridable="yes">Revertendo os comandos de SQL</String> | ||
</WixLocalization> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
<copyright file="pt-pt.wxl" company="Outercurve Foundation"> | ||
Copyright (c) 2004, Outercurve Foundation. | ||
This software is released under Microsoft Reciprocal License (MS-RL). | ||
The license and further copyright text can be found in the file | ||
LICENSE.TXT at the root directory of the distribution. | ||
</copyright> | ||
--> | ||
<WixLocalization Culture="pt-pt" xmlns="http://schemas.microsoft.com/wix/2006/localization"> | ||
<String Id="msierrSQLFailedCreateDatabase" Overridable="yes">Error [2]: falha ao criar a Base de Dados: [3], detalhes: [4].</String> | ||
<String Id="msierrSQLFailedDropDatabase" Overridable="yes">Error [2]: falha ao remover a Base de Dados: [3], detalhes: [4].</String> | ||
<String Id="msierrSQLFailedConnectDatabase" Overridable="yes">Falhou a ligação à Base de Dados. ([2] [3] [4] [5])</String> | ||
<String Id="msierrSQLFailedExecString" Overridable="yes">Erro [2]: falha ao executar o comando de SQL, detalhes: [3], Comando: [4] Conteúdo: [5]</String> | ||
<String Id="msierrSQLDatabaseAlreadyExists" Overridable="yes">A Base de Dados [3] já existe. Deseja continuar?</String> | ||
|
||
<String Id="ConfigureSql" Overridable="yes">Configurar o Servidor de SQL</String> | ||
<String Id="CreateDatabase" Overridable="yes">Criar as Bases de Dados</String> | ||
<String Id="DropDatabase" Overridable="yes">Remover as Bases de Dados</String> | ||
<String Id="ExecuteSqlStrings" Overridable="yes">Executar comandos de SQL</String> | ||
<String Id="RollbackExecuteSqlStrings" Overridable="yes">Reverter os comandos de SQL</String> | ||
</WixLocalization> |