Module: wine Branch: master Commit: 3d047b76015edd385b4b707036d7040f0ccb5ba2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3d047b76015edd385b4b707036...
Author: Ricardo Filipe ricardo_barbano@hotmail.com Date: Mon Oct 20 19:17:47 2008 -0700
xcopy: Added Portuguese translation.
---
programs/xcopy/Pt.rc | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ programs/xcopy/rsrc.rc | 1 + 2 files changed, 80 insertions(+), 0 deletions(-)
diff --git a/programs/xcopy/Pt.rc b/programs/xcopy/Pt.rc new file mode 100644 index 0000000..47e9609 --- /dev/null +++ b/programs/xcopy/Pt.rc @@ -0,0 +1,79 @@ +/* + * XCOPY - Wine-compatible xcopy program + * Portuguese language support + * + * Copyright (C) 2008 Ricardo Filipe + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + + +LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL + +STRINGTABLE +{ + STRING_INVPARMS, "N�mero de par�metros inv�lido - Use xcopy /? para ajuda\n" + STRING_INVPARM, "Par�metro inv�lido '%s' - Use xcopy /? para ajuda\n" + STRING_PAUSE, "Carregue <Enter> para iniciar c�pia\n" + STRING_SIMCOPY, "%d ficheiro(s) seriam copiados\n" + STRING_COPY, "%d ficheiro(s) copiados\n" + STRING_QISDIR, "'%s' � um ficheiro ou direct�rio\n" \ + "no alvo?\n" \ + "(F - Ficheiro, D - Direct�rio)\n" + STRING_SRCPROMPT,"%s? (Yes|No)\n" + STRING_OVERWRITE,"Reescrever %s? (Yes|No|All)\n" + STRING_COPYFAIL, "C�pia de '%s' para '%s' falhou com r/c %d\n" + STRING_OPENFAIL, "Falhou ao abrir '%s'\n" + STRING_READFAIL, "Falhou a ler '%s'\n" + STRING_YES_CHAR, "Y" + STRING_NO_CHAR, "N" + STRING_ALL_CHAR, "A" + STRING_FILE_CHAR,"F" + STRING_DIR_CHAR, "D" + + STRING_HELP, +"XCOPY - Copia ficheiros ou direct�rios para um destino\n\ +\n\ +Sintaxe:\n\ +XCOPY source [dest] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n\ +\t [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n\ +\n\ +Onde:\n\ +\n\ +[/I] Assume direct�rio se o destino n�o existe e est� a copiar 2 ou\n\ +\tmais ficheiros\n\ +[/S] Copiar direct�rios e subdirect�rios\n\ +[/E] Copiar direct�rios e subdirect�rios, incluindo os vazios\n\ +[/Q] N�o mostrar nomes durante a c�pia, ie quiet.\n\ +[/F] Mostrar por completo os nomes de fonte e destino durante a c�pia\n\ +[/L] Simular a opera��o, mostrando os nomes que seriam copiados\n\ +[/W] Alerta antes de iniciar a opera��o de c�pia\n\ +[/T] Cria a estrutura de direct�rios mas n�o copia ficheiros\n\ +[/Y] Suprimir alertas quando reescreve ficheiros\n\ +[/-Y] Alertar quando reescreve ficheiros\n\ +[/P] Alertar antes de cada ficheiros ser copiado\n\ +[/N] Copiar usando nomes pequenos\n\ +[/U] Copiar apenas ficheiros que j� existem no destino\n\ +[/R] Reescrever quaisquer ficheiros apenas de leitura\n\ +[/H] Incluir ficheiros ocultos e de sistema na c�pia\n\ +[/C] Continuar mesmo que ocorra um erro durante a c�pia\n\ +[/A] Copiar apenas ficheiros com atributo de arquivo\n\ +[/M] Copiar apenas ficheiros com atributo de arquivo, removendo\n\ +\to atributo de arquivo\n\ +[/D | /D:m-d-y] Copiar novos ficheiros ou os alterados ap�s a data fornecida\n\ +\t\tSe nenhuma data for fornecida, apenas copiar se o destino for mais antigo\n\ +\t\tque a fonte\n\n" + +} diff --git a/programs/xcopy/rsrc.rc b/programs/xcopy/rsrc.rc index 9547668..dcbc811 100644 --- a/programs/xcopy/rsrc.rc +++ b/programs/xcopy/rsrc.rc @@ -30,5 +30,6 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "Nl.rc" #include "No.rc" #include "Pl.rc" +#include "Pt.rc" #include "Ru.rc" #include "Si.rc"