From: opensides Date: Sun, 4 Nov 2007 22:30:40 +0000 (+0000) Subject: - French locale X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=423b4adc13c9e54f6dec77bc0ab98350ef8ca55d;p=gosa.git - French locale git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5-plugins@7732 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/vhost-apache2/locale/fr/LC_MESSAGES/messages.mo b/vhost-apache2/locale/fr/LC_MESSAGES/messages.mo new file mode 100644 index 000000000..4f08046ee Binary files /dev/null and b/vhost-apache2/locale/fr/LC_MESSAGES/messages.mo differ diff --git a/vhost-apache2/locale/fr/LC_MESSAGES/messages.po b/vhost-apache2/locale/fr/LC_MESSAGES/messages.po new file mode 100644 index 000000000..9b0198650 --- /dev/null +++ b/vhost-apache2/locale/fr/LC_MESSAGES/messages.po @@ -0,0 +1,102 @@ +# translation of messages.po to Français +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Benoit Mortier , 2007. +msgid "" +msgstr "" +"Project-Id-Version: messages\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-11-04 23:14+0100\n" +"PO-Revision-Date: 2007-11-04 23:34+0100\n" +"Last-Translator: Benoit Mortier \n" +"Language-Team: Français \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: src/functions_apache.inc:192 +#, php-format +msgid "Undefined vhost name '%s'. Vhost name must look like this 'server/zone.com'." +msgstr "Nom d'hôte non défini '%s'. Les nom d'hôtes doivent être comme ceci 'www.example.com ou example.com'." + +#: src/class_servApacheEditVhost.inc:289 src/class_servApacheEditVhost.inc:311 +msgid "Up" +msgstr "Au dessus" + +#: src/class_servApacheEditVhost.inc:290 src/class_servApacheEditVhost.inc:312 +msgid "Down" +msgstr "En bas" + +#: src/class_servApacheEditVhost.inc:292 src/class_servApacheEditVhost.inc:314 +msgid "Delete" +msgstr "Effacer" + +#: src/class_servApacheEditVhost.inc:368 +#, php-format +msgid "Please choose a valid Virtual Host Name." +msgstr "Veuillez choisir un nom d'hôte virtuel valide." + +#: src/class_servApacheEditVhost.inc:372 +msgid "Please choose a valid Path as Virtual Host Document Root." +msgstr "Veuillez choisir une chemin valide comme racine de votre hôte virtuel." + +#: src/class_servApacheEditVhost.inc:376 +msgid "Please choose a valid Email Account as Admin Mail address." +msgstr "Veuillez choisir une adresse de messagerie valide pour l'administrateur." + +#: src/class_servApacheEditVhost.inc:380 +msgid "Only lowercase strings are allowed as Virtual Host Name." +msgstr "Seules les minuscules sont autorisées dans le nom." + +#: src/class_servApacheEditVhost.inc:384 +msgid "Only lowercase strings are allowed as Virtual Host Document Root." +msgstr "Seules les minuscules sont autorisée dans le chemin Hôte Racine." + +#: src/class_servApacheEditVhost.inc:388 +msgid "Only lowercase strings are allowed as Admin Mail address." +msgstr "Seules les minuscules sont autorisées dans l'adresse de messagerie pour l'administrateur." + +#: src/class_servApacheEditVhost.inc:395 src/class_servApacheEditVhost.inc:403 +#, php-format +msgid "Please choose a valid Path as URL Alias Path in line: %s" +msgstr "Veuillez choisir un chemin valide comme alias dans la ligne: %s" + +#: src/class_servApacheVhost.inc:66 +msgid "Remove Apache service" +msgstr "Suppression du service Apache" + +#: src/class_servApacheVhost.inc:67 +msgid "" +"This server has Apache features enabled. You can disable them by clicking " +"below." +msgstr "" +"Ce serveur à l'extension Apache activée. Vous pouvez la désactiver en " +"cliquant sur le bouton ci-dessous." + +#: src/class_servApacheVhost.inc:69 +msgid "Add Apache service" +msgstr "Ajouter un service Apache" + +#: src/class_servApacheVhost.inc:70 +msgid "" +"This server has Apache features disabled. You can enable them by clicking " +"below." +msgstr "" +"Ce serveur à l'extension Apache désactivé. Vous pouvez l'activer en cliquant " +"sur le bouton ci-dessous." + +#: src/class_servApacheVhost.inc:236 +msgid "Updating Apache service failed" +msgstr "La mise à jour du service Apache à échoué" + +#: src/class_servApacheVhost.inc:245 +msgid "Removing Apache entries failed" +msgstr "La suppression d'une entrée Apache à échoué" + +#: src/class_servApacheVhost.inc:267 +msgid "Saving apache entries failed" +msgstr "La sauvegarde des entrées du service apache à échoué" + diff --git a/vhost-apache2/src/functions_apache.inc b/vhost-apache2/src/functions_apache.inc index edaa39d2e..9ed7ea4b9 100644 --- a/vhost-apache2/src/functions_apache.inc +++ b/vhost-apache2/src/functions_apache.inc @@ -189,7 +189,7 @@ function getVhostDN($config,$apacheServerNameMix) { $ret = ""; if(!strstr($apacheServerNameMix, '/')) { - print_red(sprintf(_("Undefined vhost name '%s'. Vhost name must look like this 'server/zone.com'."),$apacheServerNameMix)); + print_red(sprintf(_("Undefined vhost name '%s'. Vhost name must look like this 'www.example.com or example.com'."),$apacheServerNameMix)); return($ret); }