I've been told that we have to change a ressource's name when its
content is changed.
Say that we have <!ENTITY myRessource.label "Enter some infos"> and
that we change its content to "Enter something".
Do we have then to change its name (by example to
myRessourceNew.label) ?
If it does, why ? Is there a good reason ?
Thank you in advance,
Thomas
No, what you probably will do is giving an new string value instead of
"Enter some infos", you want to use "Enter something". Then you needn't
(even you mustn't!) change the name of the entity. What are doing? Are
you programming any extension or do you translate anything? If you are
programming you can define the name of the entity. If you translate youd
mustn't change the name of the entity (myRessource.label) but you can
change the value of this entity ("Enter some infos").
Cédric
On 29 sep, 17:14, Cédric Corazza <cedric.cora...@gmail.com> wrote:
> Hi Thomas,
> When a semantic change occurs in a string, the rule is to also change
> the entity name so that localizers notice the semantic change when their
> tinderbox turn to orange, so that they can change it in their locale.
Alright, so there's more than
http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=all&branch=HEAD&branchtype=match&dir=&file=%28properties%7Cdtd%29%24&filetype=regexp&who=&whotype=match&sortby=Date&hours=2&date=month&mindate=&maxdate=&cvsroot=%2Fcvsroot
to watch changes in locales.
Then http://tinderbox.mozilla.org/showbuilds.cgi?tree=Mozilla-l10n-fr
turns to orange when there's an entity name mismatch ?
Thomas