diff options
author | Jeremy Bicha <jbicha@ubuntu.com> | 2018-03-12 08:19:55 -0400 |
---|---|---|
committer | Jeremy Bicha <jbicha@ubuntu.com> | 2018-03-12 08:19:55 -0400 |
commit | 33107665128a1b59a9ea0181a03b279688dd183f (patch) | |
tree | acef596ee073ce5333125aaebc2d542210bb167d /help/da/notification.page | |
parent | New upstream version 3.27.90 (diff) | |
parent | release: Prepare for 3.28.0 (diff) | |
download | zenity-33107665128a1b59a9ea0181a03b279688dd183f.tar.gz zenity-33107665128a1b59a9ea0181a03b279688dd183f.tar.bz2 zenity-33107665128a1b59a9ea0181a03b279688dd183f.zip |
New upstream version 3.28.0
Diffstat (limited to 'help/da/notification.page')
-rw-r--r-- | help/da/notification.page | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/help/da/notification.page b/help/da/notification.page index cabd38a2..07a7a364 100644 --- a/help/da/notification.page +++ b/help/da/notification.page @@ -2,51 +2,51 @@ <page xmlns="http://projectmallard.org/1.0/" type="topic" id="notification" xml:lang="da"> <info> <link type="guide" xref="index#dialogs"/> - <desc>Use the <cmd>--notification</cmd> option.</desc> + <desc>Brug tilvalget <cmd>--notification</cmd>.</desc> </info> <title>Påmindelsesikon</title> - <p>Use the <cmd>--notification</cmd> option to create a notification icon.</p> + <p>Brug tilvalget <cmd>--notification</cmd> til at oprette et påmindelsesikon.</p> <terms> <item> - <title><cmd>--text</cmd>=<var>text</var></title> + <title><cmd>--text</cmd>=<var>tekst</var></title> <p>Angiver teksten, der vises i påmindelsesområdet.</p> </item> <item> - <title><cmd>--listen</cmd>=icon: '<var>text</var>', message: '<var>text</var>', tooltip: '<var>text</var>', visible: '<var>text</var>',</title> - <p>Listens for commands at standard input. At least one command must be specified. Commands are comma separated. A command must be followed by a colon and a value. </p> + <title><cmd>--listen</cmd>=icon: '<var>tekst</var>', message: '<var>tekst</var>', tooltip: '<var>tekst</var>', visible: '<var>tekst</var>',</title> + <p>Lytter efter kommandoer på standardinput. Mindst én kommando skal gives. Kommandoer adskilles med komma. En kommando skal følges af kolon og en værdi.</p> <note style="tip"> - <p>The <cmd>icon</cmd> command also accepts four stock icon values such as <var>error</var>, <var>info</var>, <var>question</var> and <var>warning</var>.</p> + <p>Kommandoen <cmd>icon</cmd> accepterer også fire standardikonværdier, såsom <var>error</var>, <var>info</var>, <var>question</var> og <var>warning</var>.</p> </note> </item> </terms> - <p>The following example script shows how to create a notification icon:</p> + <p>Følgende eksempelscript viser, hvordan man opretter et påmindelsesikon:</p> <code> #!/bin/sh zenity --notification\ --window-icon="info" \ - --text="There are system updates necessary!" + --text="Der er nødvendige systemopdateringer!" </code> <figure> <title>Eksempel på påmindelsesikon</title> - <desc><app>Zenity</app> notification icon example</desc> + <desc>Eksempel på påmindelsesikon til <app>Zenity</app></desc> <media type="image" mime="image/png" src="figures/zenity-notification-screenshot.png"/> </figure> - <p>The following example script shows how to create a notification icon along with <cmd>--listen</cmd>:</p> + <p>Følgende eksempelscript viser, hvordan man opretter et påmindelsesikon med <cmd>--listen</cmd>:</p> <code> #!/bin/sh cat <<EOH| zenity --notification --listen - message: this is the message text + message: dette er beskedteksten EOH </code> <figure> - <title>Notification Icon with <cmd>--listen</cmd> Example</title> - <desc><app>Zenity</app> notification with <cmd>--listen</cmd> example</desc> + <title>Eksempel på påmindelsesikon med <cmd>--listen</cmd></title> + <desc><app>Zenity</app>-påmindelse med <cmd>--listen</cmd>-eksempel</desc> <media type="image" mime="image/png" src="figures/zenity-notification-listen-screenshot.png"/> </figure> |