diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-11-29 11:50:54 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-11-29 14:40:45 +0000 |
commit | 59b98580bfd70205a9ebdb0ba67e74225d875b43 (patch) | |
tree | 49ae5fefb8e5df4fdcce26f77740fc0fef70cdc5 /svtools/uiconfig/ui/restartdialog.ui | |
parent | 7e1b156a4103bbb6d1dc110ffac53528c00b5dd2 (diff) |
Resolves: fdo#44664 Provide a way to set the default print job format.
a) In the print dialog you can temporarily override the default print job
format for a single print job
b) In the printer options dialog you can override the default print job format
for a single printer
c) Under tools->options->print you can override the default print job format
for all printers.
Tidy up the restart dialog in passing
Change-Id: Ibea94bab6a79c3590dbf34583013db4e2ac06f45
Diffstat (limited to 'svtools/uiconfig/ui/restartdialog.ui')
-rw-r--r-- | svtools/uiconfig/ui/restartdialog.ui | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/svtools/uiconfig/ui/restartdialog.ui b/svtools/uiconfig/ui/restartdialog.ui index dd041b4ec52b..475dfbdf1756 100644 --- a/svtools/uiconfig/ui/restartdialog.ui +++ b/svtools/uiconfig/ui/restartdialog.ui @@ -1,17 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * ---> <interface> <!-- interface-requires gtk+ 3.0 --> <object class="GtkDialog" id="RestartDialog"> <property name="can_focus">False</property> <property name="border_width">5</property> + <property name="title" translatable="yes">Restart %PRODUCTNAME</property> <property name="type_hint">dialog</property> <child internal-child="vbox"> <object class="GtkBox" id="dialog-vbox1"> @@ -26,9 +19,13 @@ <child> <object class="GtkButton" id="yes"> <property name="label" translatable="yes">Restart now</property> + <property name="use_action_appearance">False</property> <property name="visible">True</property> <property name="can_focus">True</property> + <property name="can_default">True</property> + <property name="has_default">True</property> <property name="receives_default">True</property> + <property name="use_action_appearance">False</property> </object> <packing> <property name="expand">False</property> @@ -39,9 +36,11 @@ <child> <object class="GtkButton" id="no"> <property name="label" translatable="yes">Restart later</property> + <property name="use_action_appearance">False</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">True</property> + <property name="use_action_appearance">False</property> </object> <packing> <property name="expand">False</property> @@ -62,10 +61,14 @@ <property name="visible">True</property> <property name="can_focus">False</property> <property name="orientation">vertical</property> + <property name="spacing">16</property> <child> <object class="GtkLabel" id="reason_java"> <property name="can_focus">False</property> + <property name="no_show_all">True</property> <property name="label" translatable="yes">For the selected Java runtime environment to work properly, %PRODUCTNAME must be restarted.</property> + <property name="wrap">True</property> + <property name="max_width_chars">30</property> </object> <packing> <property name="expand">False</property> @@ -74,15 +77,30 @@ </packing> </child> <child> + <object class="GtkLabel" id="reason_pdf"> + <property name="can_focus">False</property> + <property name="no_show_all">True</property> + <property name="label" translatable="yes">For the modified default print job format to take effect, %PRODUCTNAME must be restarted.</property> + <property name="wrap">True</property> + <property name="max_width_chars">50</property> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">1</property> + </packing> + </child> + <child> <object class="GtkLabel" id="label"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Do you want to restart %PRODUCTNAME now?</property> + <property name="wrap">True</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> - <property name="position">1</property> + <property name="position">2</property> </packing> </child> </object> |