Lists: | pgsql-translators |
---|
From: | SAS <sas(dot)postgresql(at)gmail(dot)com> |
---|---|
To: | pgsql-translators(at)postgresql(dot)org |
Subject: | French translation mistake |
Date: | 2022-09-22 08:59:27 |
Message-ID: | 3bcf3c96-14d3-f8d3-4525-8f0afe816ad6@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-translators |
Good morning,
Reading xproc.html for PG14, in both french and english, I wonder if french
translation is totally accurate.
The english version says :
Certain function attributes, such as strictness, don't apply to procedures.
Those attributes control how the function is used in a query, which isn't
relevant to procedures.
while the french version says:
Certains attributs de fonction, tel que la volatilité, ne s'applique pas aux
procédures. Ces attributs contrôlent comment la fonction est appelée dans une
requête, ce qui est hors propos pour les procédures.
In my understanding, strictness and volatility do not have the say meaning. Am
I wrong ?
What's more, the french sentence should have been written like "Certains
attributs de fonction... ne s'applique*nt* pas..." I would also have written
the second part slightly diffrently : "Ces attributs contrôlent l'utilisation
de la fonction dans une requête, et ne sont pas pertinents dans le cas de
procédures."
Best,
--
Dr Stéphane Schildknecht
Contact régional PostgreSQL pour l'Europe francophone
+33 617 11 37 42
From: | Guillaume Lelarge <guillaume(at)lelarge(dot)info> |
---|---|
To: | SAS <sas(dot)postgresql(at)gmail(dot)com> |
Cc: | pgsql-translators(at)postgresql(dot)org |
Subject: | Re: French translation mistake |
Date: | 2022-09-22 13:32:51 |
Message-ID: | CAECtzeXu7Cr9xmVoZbqc1O9z1qa32tMZB9RP0MMM-06e-Zj=bA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-translators |
Hi,
Le jeu. 22 sept. 2022 à 10:59, SAS <sas(dot)postgresql(at)gmail(dot)com> a écrit :
> Good morning,
>
> Reading xproc.html for PG14, in both french and english, I wonder if
> french translation is totally accurate.
>
> The english version says :
> Certain function attributes, such as strictness, don't apply to
> procedures. Those attributes control how the function is used in a query,
> which isn't relevant to procedures.
>
> while the french version says:
> Certains attributs de fonction, tel que la volatilité, ne s'applique pas
> aux procédures. Ces attributs contrôlent comment la fonction est appelée
> dans une requête, ce qui est hors propos pour les procédures.
>
> In my understanding, strictness and volatility do not have the say
> meaning. Am I wrong ?
>
I'd like to know this as well, so that I could fix it if need be.
> What's more, the french sentence should have been written like "Certains
> attributs de fonction... ne s'applique*nt* pas..." I would also have
> written the second part slightly diffrently : "Ces attributs contrôlent
> l'utilisation de la fonction dans une requête, et ne sont pas pertinents
> dans le cas de procédures."
>
This is fixed. Thanks.
>
--
Guillaume.
From: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> |
---|---|
To: | Guillaume Lelarge <guillaume(at)lelarge(dot)info> |
Cc: | SAS <sas(dot)postgresql(at)gmail(dot)com>, pgsql-translators(at)postgresql(dot)org |
Subject: | Re: French translation mistake |
Date: | 2022-09-22 14:10:35 |
Message-ID: | 20220922141035.3z6tu4nqg2vrmogt@alvherre.pgsql |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-translators |
On 2022-Sep-22, Guillaume Lelarge wrote:
> Le jeu. 22 sept. 2022 à 10:59, SAS <sas(dot)postgresql(at)gmail(dot)com> a écrit :
> > Reading xproc.html for PG14, in both french and english, I wonder if
> > french translation is totally accurate.
> >
> > The english version says :
> > Certain function attributes, such as strictness, don't apply to
> > procedures. Those attributes control how the function is used in a query,
> > which isn't relevant to procedures.
> I'd like to know this as well, so that I could fix it if need be.
Well, volatility and strictness are different things. However, you
cannot set either of them for procedures, so while this is technically
not an accurate translation, in practice it makes no difference.
create procedure f (a int) language plpgsql strict as $$ begin raise notice 'called once'; end $$;
ERROR: invalid attribute in procedure definition
LÍNEA 1: create procedure f (a int) language plpgsql strict as $$ beg...
^
--
Álvaro Herrera 48°01'N 7°57'E — https://www.EnterpriseDB.com/
"Right now the sectors on the hard disk run clockwise, but I heard a rumor that
you can squeeze 0.2% more throughput by running them counterclockwise.
It's worth the effort. Recommended." (Gerry Pourwelle)
From: | SAS <sas(dot)postgresql(at)gmail(dot)com> |
---|---|
To: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Guillaume Lelarge <guillaume(at)lelarge(dot)info> |
Cc: | pgsql-translators(at)postgresql(dot)org |
Subject: | Re: French translation mistake |
Date: | 2022-09-23 08:13:15 |
Message-ID: | 5f91eca5-f9e0-3902-6f07-e9dd3f47e7fc@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-translators |
Hello Alvaro,
Le 22/09/2022 à 16:10, Alvaro Herrera a écrit :
> On 2022-Sep-22, Guillaume Lelarge wrote:
>
>> Le jeu. 22 sept. 2022 à 10:59, SAS<sas(dot)postgresql(at)gmail(dot)com> a écrit :
>>> Reading xproc.html for PG14, in both french and english, I wonder if
>>> french translation is totally accurate.
>>>
>>> The english version says :
>>> Certain function attributes, such as strictness, don't apply to
>>> procedures. Those attributes control how the function is used in a query,
>>> which isn't relevant to procedures.
>> I'd like to know this as well, so that I could fix it if need be.
> Well, volatility and strictness are different things. However, you
> cannot set either of them for procedures, so while this is technically
> not an accurate translation, in practice it makes no difference.
>
> create procedure f (a int) language plpgsql strict as $$ begin raise notice 'called once'; end $$;
> ERROR: invalid attribute in procedure definition
> LÍNEA 1: create procedure f (a int) language plpgsql strict as $$ beg...
> ^
Many thanks for the explanation.
Best regards,
--
Dr Stéphane Schildknecht
Contact régional PostgreSQL pour l'Europe francophone
+33 617 11 37 42