Somehow these got lost in a past sync. Added French and Netherlands Translation to...
authorDaniel Reimer <reimer.daniel@freenet.de>
Wed, 27 Feb 2008 12:04:30 +0000 (12:04 +0000)
committerDaniel Reimer <reimer.daniel@freenet.de>
Wed, 27 Feb 2008 12:04:30 +0000 (12:04 +0000)
svn path=/trunk/; revision=32505

reactos/base/applications/cmdutils/xcopy/Fr.rc [new file with mode: 0644]
reactos/base/applications/cmdutils/xcopy/Nl.rc [new file with mode: 0644]

diff --git a/reactos/base/applications/cmdutils/xcopy/Fr.rc b/reactos/base/applications/cmdutils/xcopy/Fr.rc
new file mode 100644 (file)
index 0000000..e641e6a
--- /dev/null
@@ -0,0 +1,82 @@
+/*
+ * XCOPY - Wine-compatible xcopy program
+ * French language support
+ *
+ * Copyright 2007 Jonathan Ernst
+ *
+ * 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
+ */
+#pragma code_page(65001)
+
+
+LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+    STRING_INVPARMS, "Nombre invalide de paramètres - Utilisez xcopy /? pour obtenir de l'aide\n"
+    STRING_INVPARM,  "Paramètre invalide « %s » -  Utilisez xcopy /? pour obtenir de l'aide\n"
+    STRING_PAUSE,    "Appuyez sur ENTRÉE pour démarrer la copie\n"
+    STRING_SIMCOPY,  "%d fichier(s) seront copiés\n"
+    STRING_COPY,     "%d fichier(s) copiés\n"
+    STRING_QISDIR,   "Est-ce que « %s » est un fichier ou un répertoire\n" \
+                     "dans la destination ?\n" \
+                     "(F - Fichier, R - Répertoire)\n"
+    STRING_SRCPROMPT,"%s ? (Oui|Non)\n"
+    STRING_OVERWRITE,"Écraser  %s ? (Oui|Non|Tous)\n"
+    STRING_COPYFAIL, "La copie de « %s » vers « %s » a échoué avec le c/r %d\n"
+    STRING_OPENFAIL, "Impossible d'ouvrir « %s »\n"
+    STRING_READFAIL, "Impossible de lire « %s »\n"
+    STRING_YES_CHAR, "O"
+    STRING_NO_CHAR,  "N"
+    STRING_ALL_CHAR, "T"
+    STRING_FILE_CHAR,"F"
+    STRING_DIR_CHAR, "R"
+
+    STRING_HELP,
+"XCOPY - Copie les fichiers ou répertoires source vers une destination\n\
+\n\
+Syntaxe :\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\
+Où :\n\
+\n\
+[/I]  Suppose que la destination est un répertoire si elle n'existe pas et que l'on copie plus\n\
+\td'un fichier\n\
+[/S]  Copie les répertoires et sous-répertoires\n\
+[/E]  Copie les répertoires et sous-répertoires, y compris ceux qui sont vides\n\
+[/Q]  Ne pas afficher la liste des fichiers copiés (mode silencieux)\n\
+[/F]  Afficher la source et la destination complète lors de la copie\n\
+[/L]  Simuler l'opération, en montrant le nom des fichiers qui auraient été copiés\n\
+[/W]  Demande avant de démarrer la copie\n\
+[/T]  Créer une structure de répertoires vides, mais ne copie pas les fichiers\n\
+[/Y]  Ne demande pas de confirmation lors de l'écrasement des fichiers\n\
+[/-Y] Demande une confirmation lors de l'écrasement des fichiers\n\
+[/P]  Demande avant de copier chaque fichier source\n\
+[/N]  Copie en utilisant des noms courts\n\
+[/U]  Copie uniquement les fichiers qui existent déjà dans la destination\n\
+[/R]  Écrase même les fichiers en lecture seule\n\
+[/H]  Inclure les fichiers cachés et système dans la copie\n\
+[/C]  Continue même si une erreur survient pendant la copie\n\
+[/A]  Copie uniquement les fichiers qui ont l'attribut archive défini\n\
+[/M]  Copie uniquement les fichiers qui ont l'attribut archive défini, supprime \n\
+\tensuite l'attribut\n\
+[/D | /D:m-d-y] Copie uniquement les fichiers nouveaux ou ceux modifiés après la date spécifiée.\n\
+\t\tSi aucune date n'est spécifiée, copie uniquement lorsque le fichier de destination est plus vieux\n\
+\t\tque le fichier source\n\n"
+
+}
+
+#pragma code_page(default)
diff --git a/reactos/base/applications/cmdutils/xcopy/Nl.rc b/reactos/base/applications/cmdutils/xcopy/Nl.rc
new file mode 100644 (file)
index 0000000..83720ff
--- /dev/null
@@ -0,0 +1,78 @@
+/*
+ * XCOPY - Wine-compatible xcopy program
+ * Dutch language support
+ *
+ * Copyright (C) 2008 Frans Kool
+ *
+ * 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_DUTCH, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+    STRING_INVPARMS, "Onjuist aantal parameters - Gebruik xcopy /? om hulp te krijgen\n"
+    STRING_INVPARM,  "Onjuiste parameter '%s' -  Gebruik xcopy /? om hulp te krijgen\n"
+    STRING_PAUSE,    "Druk op <enter> om te beginnen met copiëren\n"
+    STRING_SIMCOPY,  "%d bestand(en) zouden worden gecopiëerd\n"
+    STRING_COPY,     "%d bestand(en) gecopiëerd\n"
+    STRING_QISDIR,   "Is '%s' een bestand of een directory\n" \
+                     "op de bestemming?\n" \
+                     "(B - Bestand, D - Directory)\n"
+    STRING_SRCPROMPT,"%s? (Ja|Nee)\n"
+    STRING_OVERWRITE,"Overschrijven %s? (Ja|Nee|Alles)\n"
+    STRING_COPYFAIL, "Copiëren van '%s' naar '%s' mislukt met r/c %d\n"
+    STRING_OPENFAIL, "Fout tijdens openen van '%s'\n"
+    STRING_READFAIL, "Fout tijdens lezen van '%s'\n"
+    STRING_YES_CHAR, "J"
+    STRING_NO_CHAR,  "N"
+    STRING_ALL_CHAR, "A"
+    STRING_FILE_CHAR,"B"
+    STRING_DIR_CHAR, "D"
+
+    STRING_HELP,
+"XCOPY - Copiëerd bron bestanden of directory bomen naar een bestemming\n\
+\n\
+Gebruik:\n\
+XCOPY bron [bestemming] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U] \n\
+\t     [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n\
+\n\
+Parameters:\n\
+\n\
+[/I]  Als bestemming niet bestaat en 2 of meer bestanden worden\n\
+\tgecopiëerd, neem aan dat een directory werd bedoeld\n\
+[/S]  Copiëer directories en subdirectories\n\
+[/E]  Copiëer directories en subdirectories, inclusief lege\n\
+[/Q]  Toon geen namen tijdens copiëren (stil).\n\
+[/F]  Toon volledige bron- en bestemmingnamen tijdens copiëren\n\
+[/L]  Simuleer de actie, toon de namen die gecopiëerd zouden worden\n\
+[/W]  Wacht op gebruiker actie voordat de copiëeractie begint\n\
+[/T]  Creëert de lege directory structuur maar copiëert geen bestanden\n\
+[/Y]  Onderdrukt gebruikersactie wanneer bestanden worden overschreven\n\
+[/-Y] Vraagt gebruikersactie wanneer bestanden worden overschreven\n\
+[/P]  Vraagt gebruikersactie voor ieder bron bestand voor copiëren\n\
+[/N]  Copiëer m.b.v korte bestandsnamen\n\
+[/U]  Copiëer alleen bestanden die al bestaan op de bestemming\n\
+[/R]  Overschrijf alle schrijf-beveiligde bestanden\n\
+[/H]  Inclusief verborgen en systeem bestanden\n\
+[/C]  Ga door zelfs als er een fout optreed tijdens het copiëren\n\
+[/A]  Copiëer alleen bestanden met archiverings attribuut aan\n\
+[/M]  Copiëer alleen bestanden met archiverings attribuut aan, verwijderd \n\
+\tdit archiverings attribuut\n\
+[/D | /D:m-d-y] Copiëer nieuwe bestanden of die gewijzigd zijn na de opgegeven\n\
+\t\tdatum. Als geen detum wordt gegeven, copiëer alleen als bron nieuwer is.\n\n"
+
+}