Skip to content

Commit

Permalink
Added localization in Portuguese to SqlExtension.
Browse files Browse the repository at this point in the history
  • Loading branch information
FernandoNunes committed Aug 18, 2014
1 parent fbdf745 commit d5f0cec
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ext/SqlExtension/wixlib/SqlExtension.wixproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
<EmbeddedResource Include="en-us.wxl" />
<EmbeddedResource Include="es-es.wxl" />
<EmbeddedResource Include="ja-jp.wxl" />
<EmbeddedResource Include="pt-pt.wxl" />
<EmbeddedResource Include="pt-br.wxl" />
</ItemGroup>

<ItemGroup>
Expand Down
22 changes: 22 additions & 0 deletions src/ext/SqlExtension/wixlib/pt-br.wxl
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>
22 changes: 22 additions & 0 deletions src/ext/SqlExtension/wixlib/pt-pt.wxl
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>

0 comments on commit d5f0cec

Please sign in to comment.