ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Expansion in PDF metadata
@ 2016-03-04  6:58 Marco Patzer
  2016-03-04  9:34 ` Hans Hagen
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Patzer @ 2016-03-04  6:58 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi!

How to expand \translate so that it doesn't show up in the PDF
metadata? Example:

\setupdocument [metadata:title=\documentvariable{title}]
\mainlanguage  [sv]

\startdocument [title={\translate[en=Foo, sv=Bar]}]
  \input knuth
\stopdocument

This literally shows:

  Title: \translate [en=Foo, sv=Bar]

The following workaround does the job, but it's not that elegant:

\setupdocument [metadata:title=\documentvariable{title}]
\enablemode [sv]

\startmodeset
  [en] {\mainlanguage[en]\startdocument[title=Foo]}
  [sv] {\mainlanguage[sv]\startdocument[title=Bar]}
\stopmodeset

  \input knuth
\stopdocument

Is there a better mechanism to support multiple languages in the
PDF metadata or just have \translate expanded?

Marco
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Expansion in PDF metadata
  2016-03-04  6:58 Expansion in PDF metadata Marco Patzer
@ 2016-03-04  9:34 ` Hans Hagen
  2016-03-04 10:52   ` Marco Patzer
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Hagen @ 2016-03-04  9:34 UTC (permalink / raw)
  To: ntg-context

On 3/4/2016 7:58 AM, Marco Patzer wrote:
> Hi!
>
> How to expand \translate so that it doesn't show up in the PDF
> metadata? Example:
>
> \setupdocument [metadata:title=\documentvariable{title}]
> \mainlanguage  [sv]
>
> \startdocument [title={\translate[en=Foo, sv=Bar]}]
>    \input knuth
> \stopdocument
>
> This literally shows:
>
>    Title: \translate [en=Foo, sv=Bar]
>
> The following workaround does the job, but it's not that elegant:
>
> \setupdocument [metadata:title=\documentvariable{title}]
> \enablemode [sv]
>
> \startmodeset
>    [en] {\mainlanguage[en]\startdocument[title=Foo]}
>    [sv] {\mainlanguage[sv]\startdocument[title=Bar]}
> \stopmodeset
>
>    \input knuth
> \stopdocument
>
> Is there a better mechanism to support multiple languages in the
> PDF metadata or just have \translate expanded?

\mainlanguage[sv]

\startmodeset
     [*en] {
         \setupdocument [metadata:title=Foo]
     }
     [*sv] {
         \setupdocument [metadata:title=Bar]
     }
     [default] {
         \setupdocument [metadata:title=Far]
     }
\stopmodeset

\startdocument [title={\translate[en=Foo, sv=Bar]}]
   \input knuth
\stopdocument


-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
       tel: 038 477 53 69 | www.pragma-ade.com | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Expansion in PDF metadata
  2016-03-04  9:34 ` Hans Hagen
@ 2016-03-04 10:52   ` Marco Patzer
  0 siblings, 0 replies; 3+ messages in thread
From: Marco Patzer @ 2016-03-04 10:52 UTC (permalink / raw)
  To: ntg-context

On Fri, 4 Mar 2016 10:34:49 +0100
Hans Hagen <pragma@wxs.nl> wrote:

> On 3/4/2016 7:58 AM, Marco Patzer wrote:
> > Hi!
> >
> > How to expand \translate so that it doesn't show up in the PDF
> > metadata? Example:
> >
> > \setupdocument [metadata:title=\documentvariable{title}]
> > \mainlanguage  [sv]
> >
> > \startdocument [title={\translate[en=Foo, sv=Bar]}]
> >    \input knuth
> > \stopdocument
> >
> > This literally shows:
> >
> >    Title: \translate [en=Foo, sv=Bar]
> >
> > The following workaround does the job, but it's not that elegant:
> >
> > \setupdocument [metadata:title=\documentvariable{title}]
> > \enablemode [sv]
> >
> > \startmodeset
> >    [en] {\mainlanguage[en]\startdocument[title=Foo]}
> >    [sv] {\mainlanguage[sv]\startdocument[title=Bar]}
> > \stopmodeset
> >
> >    \input knuth
> > \stopdocument
> >
> > Is there a better mechanism to support multiple languages in the
> > PDF metadata or just have \translate expanded?  
> 
> \mainlanguage[sv]
> 
> \startmodeset
>      [*en] {
>          \setupdocument [metadata:title=Foo]
>      }
>      [*sv] {
>          \setupdocument [metadata:title=Bar]
>      }
>      [default] {
>          \setupdocument [metadata:title=Far]
>      }
> \stopmodeset
> 
> \startdocument [title={\translate[en=Foo, sv=Bar]}]
>    \input knuth
> \stopdocument

That works and seems cleaner, thanks.

Marco
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-03-04 10:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-04  6:58 Expansion in PDF metadata Marco Patzer
2016-03-04  9:34 ` Hans Hagen
2016-03-04 10:52   ` Marco Patzer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).