On Wed, 29 Apr 2020 15:56:07 +0200 waterbeare...@gmx.com said:

> 
> El mié, 29-04-2020 a las 13:15 +0100, Carsten Haitzler escribió:
> > On Wed, 29 Apr 2020 13:06:14 +0200 aguador <waterbeare...@gmx.com>
> > said:
> >
> > > I am in the process of updating the Spanish translation for E24 and
> > > am
> > > curious about the "ps" tag. When I updated for E23, I saw that most
> > > <br> tags were replaced by <ps/>, although I could not find the
> > > latter
> > > on any list of XML tags. Now I see that there are both <ps/> and
> > > </ps>
> > > tags.
> > >     * How and where are these tags defined?
> > >     * Are both correct and how do they differ (as they do not seem
> > > to
> > >       be paired)?
> > >     * Why are they preferred over <br>?
> > >     * Should the few remaining <br> tags be replaced?
> > > Thanks,
> > > Roy
> >
> > it's a paragraph separator. br is explicitly a newline break.
> >
> >
> OK, to clarify a badly formed question on my part: What is the
> difference between the leading and trailing slashes in the tab, if any?

https://stackoverflow.com/questions/7231902/self-closing-tags-in-xml-files

it isn't actually necessary. evas's textblock parser is super-forgiving. it's
just that its a tag that doesnt need a closing tag. so you dont do

<p>xxxx</p>
<p>yyyy</p>

but

xxxx
<ps/>
yyyy

textblock will be just as happy with

xxxx
<ps>
yyyy


I have also liberally used <br> to get lines to be shorter without a new
paragraph.

> The trailing slashes (<ps/>) appeared in E23. However I have just
> noticed that some of the strings about gadget .desktop file errors now
> appear with </ps>.


-- 
------------- Codito, ergo sum - "I code, therefore I am" --------------
Carsten Haitzler - ras...@rasterman.com



_______________________________________________
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to