Skip to content

Commit

Permalink
Translate drop_publication.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
rjuju authored and gleu committed Jun 19, 2017
1 parent 8f15b93 commit 68b5daf
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions postgresql/ref/drop_publication.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,52 +12,53 @@ PostgreSQL documentation
<refmeta>
<refentrytitle>DROP PUBLICATION</refentrytitle>
<manvolnum>7</manvolnum>
<refmiscinfo>SQL - Language Statements</refmiscinfo>
<refmiscinfo>SQL - Instructions du langage</refmiscinfo>
</refmeta>

<refnamediv>
<refname>DROP PUBLICATION</refname>
<refpurpose>remove a publication</refpurpose>
<refpurpose>supprime une: publication</refpurpose>
</refnamediv>

<refsynopsisdiv>
<synopsis>
DROP PUBLICATION [ IF EXISTS ] <replaceable class="parameter">name</replaceable> [, ...] [ CASCADE | RESTRICT ]
DROP PUBLICATION [ IF EXISTS ] <replaceable class="parameter">nom</replaceable> [, ...] [ CASCADE | RESTRICT ]
</synopsis>
</refsynopsisdiv>

<refsect1>
<title>Description</title>

<para>
<command>DROP PUBLICATION</command> removes an existing publication from
the database.
<command>DROP PUBLICATION</command> supprime une publication existante de la
base.
</para>

<para>
A publication can only be dropped by its owner or a superuser.
Une publication ne peut être supprimée que par son propriétaire ou un
superutilisateur.
</para>
</refsect1>

<refsect1>
<title>Parameters</title>
<title>Paramètres</title>

<variablelist>
<varlistentry>
<term><literal>IF EXISTS</literal></term>
<listitem>
<para>
Do not throw an error if the extension does not exist. A notice is issued
in this case.
Ne remonte pas d'erreur si la publication n'existe pas. Une note est
affichée dans ce cas.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term><replaceable class="parameter">name</replaceable></term>
<term><replaceable class="parameter">nom</replaceable></term>
<listitem>
<para>
The name of an existing publication.
Le nom d'une publication existante.
</para>
</listitem>
</varlistentry>
Expand All @@ -68,19 +69,19 @@ DROP PUBLICATION [ IF EXISTS ] <replaceable class="parameter">name</replaceable>

<listitem>
<para>
These key words do not have any effect, since there are no dependencies
on publications.
Ces mots clés n'ont aucune effet, puisqu'il n'y a pas de dépendances sur
les publications.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>

<refsect1>
<title>Examples</title>
<title>Exemples</title>

<para>
Drop a publication:
Supprime une publication :
<programlisting>
DROP PUBLICATION mypublication;
</programlisting>
Expand All @@ -89,16 +90,16 @@ DROP PUBLICATION mypublication;
</refsect1>

<refsect1>
<title>Compatibility</title>
<title>Compatibilité</title>

<para>
<command>DROP PUBLICATION</command> is a <productname>PostgreSQL</productname>
extension.
<command>DROP PUBLICATION</command> est une extension
<productname>PostgreSQL</productname>.
</para>
</refsect1>

<refsect1>
<title>See Also</title>
<title>Voir aussi</title>

<simplelist type="inline">
<member><xref linkend="sql-createpublication"/></member>
Expand Down

0 comments on commit 68b5daf

Please sign in to comment.