diff options
Diffstat (limited to 'help/da/text.page')
-rw-r--r-- | help/da/text.page | 48 |
1 files changed, 22 insertions, 26 deletions
diff --git a/help/da/text.page b/help/da/text.page index 948644db..531186d9 100644 --- a/help/da/text.page +++ b/help/da/text.page @@ -2,81 +2,77 @@ <page xmlns="http://projectmallard.org/1.0/" type="topic" id="text" xml:lang="da"> <info> <link type="guide" xref="index#dialogs"/> - <desc>Use the <cmd>--text-info</cmd> option.</desc> + <desc>Brug tilvalget <cmd>--text-info</cmd>.</desc> </info> - <title>Tekstinformationsdialogvindue</title> - <p> - Use the <cmd>--text-info</cmd> option to create a text information dialog. - </p> + <title>Tekstinformationsdialog</title> + <p>Brug tilvalget <cmd>--text-info</cmd> til at oprette en dialog med tekstinformationstekst.</p> - <p>Tekstinformationsdialogvinduet understøtter følgende tilvalg:</p> + <p>Tekstinformationsdialogen understøtter følgende tilvalg:</p> <terms> <item> - <title><cmd>--filename</cmd>=<var>filename</var></title> - <p>Angiver en fil, der indlæses i tekstinformationsdialogvinduet.</p> + <title><cmd>--filename</cmd>=<var>filnavn</var></title> + <p>Angiver en fil, der indlæses i tekstinformationsdialogen.</p> </item> <item> <title><cmd>--editable</cmd></title> - <p>Tillader redigering af den viste tekst. Den redigerede tekst returneres til standard output, når dialogvinduet lukkes.</p> + <p>Tillader redigering af den viste tekst. Den redigerede tekst returneres til standardoutput, når dialogen lukkes.</p> </item> <item> - <title><cmd>--font</cmd>=<var>FONT</var></title> - <p>Specifies the text font.</p> + <title><cmd>--font</cmd>=<var>SKRIFTTYPE</var></title> + <p>Angiver skrifttypen for teksten.</p> </item> <item> - <title><cmd>--checkbox</cmd>=<var>TEXT</var></title> - <p>Enable a checkbox for use like a 'I read and accept the terms.'</p> + <title><cmd>--checkbox</cmd>=<var>TEKST</var></title> + <p>Aktivér et afkrydsningsfelt til brug, såsom “Jeg har læst og accepterer vilkårene”.</p> </item> <item> <title><cmd>--html</cmd></title> - <p>Enable html support.</p> + <p>Aktivér understøttelse af html.</p> </item> <item> <title><cmd>--url</cmd>=<var>URL</var></title> - <p>Sets an url instead of a file. Only works if you use --html option.</p> + <p>Angiver en URL i stedet for en fil. Fungerer kun hvis du bruger tilvalget --html.</p> </item> </terms> - <p> - The following example script shows how to create a text information dialog: - </p> + <p>Følgende eksempelscript viser, hvordan man opretter en tekstinformationsdialog:</p> <code> #!/bin/sh -# You must place file "COPYING" in same folder of this script. +# Du skal placere filen “COPYING” i samme mappe som dette script. FILE=`dirname $0`/COPYING zenity --text-info \ - --title="License" \ + --title="Licens" \ --filename=$FILE \ - --checkbox="I read and accept the terms." + --checkbox="Jeg har læst og accepterer vilkårene." case $? in 0) - echo "Start installation!" + echo "Start installationen!" # next step ;; 1) - echo "Stop installation!" + echo "Stop installationen!" ;; -1) - echo "An unexpected error has occurred." + echo "Der opstod en uventet fejl." ;; esac </code> <figure> - <title>Eksempel på dialogvindue med tekstinformation</title> - <desc><app>Zenity</app> text information dialog example</desc> + <title>Eksempel på tekstinformationsdialog</title> + <desc>Eksempel på tekstinformationsdialog til <app>Zenity</app></desc> <media type="image" mime="image/png" src="figures/zenity-text-screenshot.png"/> </figure> </page> |