Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
gtk
Commits
bebbf23f
Commit
bebbf23f
authored
Sep 14, 2007
by
Matthias Clasen
Browse files
2.12.0
svn path=/trunk/; revision=18820
parent
ecefbe84
Changes
197
Expand all
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
bebbf23f
2007
-
09
-
13
Matthias
Clasen
<
mclasen
@
redhat
.
com
>
*
===
Released
2.12.0
===
2007
-
09
-
14
Kristian
Rietveld
<
kris
@
gtk
.
org
>
*
gtk
/
gtktreeview
.
c
(
gtk_tree_view_get_property
):
the
tooltip
-
column
...
...
INSTALL
View file @
bebbf23f
...
...
@@ -4,7 +4,7 @@ Prerequisites
GTK+ requires the following packages:
- The GLib, Pango, ATK and cairo libraries, available at the same
location as GTK+. GTK+ 2.1
1.6
requires at least GLib 2.12,
location as GTK+. GTK+ 2.1
2.0
requires at least GLib 2.12,
Pango 1.13, ATK 1.9 and cairo 1.2.
- The TIFF, PNG, and JPEG image loading libraries. You most
...
...
@@ -20,8 +20,8 @@ GTK+ requires the following packages:
Simple install procedure
========================
% gzip -cd gtk+-2.1
1.6
.tar.gz | tar xvf - # unpack the sources
% cd gtk+-2.1
1.6
# change to the toplevel directory
% gzip -cd gtk+-2.1
2.0
.tar.gz | tar xvf - # unpack the sources
% cd gtk+-2.1
2.0
# change to the toplevel directory
% ./configure # run the `configure' script
% make # build GTK+
[ Become root if necessary ]
...
...
NEWS
View file @
bebbf23f
...
...
@@ -86,6 +86,8 @@ Overview of Changes from GTK+ 2.11.6 to 2.12.0
474897 rendering problem with latest gtk+
475400 Fix a typo in gtkentry.c
476688 scale button uses wrong value type in getter
476665 gtkcellrendereraccel missing property getter
476689 gtktreeview tooltip column property getter uses wrong val...
* Updated translations
- Bulgarian (bg)
...
...
README
View file @
bebbf23f
General Information
===================
This is GTK+ version 2.1
1.6
. GTK+ is a multi-platform toolkit for
This is GTK+ version 2.1
2.0
. GTK+ is a multi-platform toolkit for
creating graphical user interfaces. Offering a complete set of widgets,
GTK+ is suitable for projects ranging from small one-off projects to
complete application suites.
...
...
@@ -117,6 +117,26 @@ Release notes for 2.12
* gtk_menu_item_remove_submenu() has been deprecated in favour of
gtk_menu_item_set_submenu (..., NULL).
* gtk_default_draw_check() has been fixed to really decrease the
indicator size by one pixel to ensure an odd size instead of
accidentially increasing it.
Consequently, gtk_cell_renderer_toggle_render() could be fixed to
not subtract 1 from the size passed to gtk_paint_option(), which
was just a workaround for above off-by-two for even sizes (theme
engines now get the real indicator size passed).
The default toggle size of GtkCheckMenuItem and GtkCellRendererToggle
has been changed to 13 to be consistent with GtkCheckButton.
The only visible change with default settings is that the indicator in
GtkCellRendererToggle has changed its size from 11 to 13 and is now
consistent with menus and toggle buttons.
* GTK+ has always required that gtk_init() (or a variant thereof) is
called before any other GTK+ function. Some applications call functions
like gtk_clipboard_get() to check if they need to call gtk_init(),
anyway. A change in GLib 2.14 has recently broken this unsupported
practise. It is worth pointing out that calling gtk_init() twice
does no harm.
Release notes for 2.10
======================
...
...
contrib/gdk-pixbuf-xlib/ChangeLog
View file @
bebbf23f
2007-09-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.12.0 ===
2007-07-21 Matthias Clasen <mclasen@redhat.com>
* === Released 2.11.6 ===
...
...
docs/reference/ChangeLog
View file @
bebbf23f
2007-09-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.12.0 ===
2007-09-10 Matthias Clasen <mclasen@redhat.com>
* gtk/migrating-GtkBuilder.sgml: Add a paragraph about
...
...
docs/reference/gtk/tmpl/gtkprintoperation.sgml
View file @
bebbf23f
...
...
@@ -502,15 +502,6 @@ The #GQuark used for #GtkPrintError errors.
@Returns:
<!-- ##### FUNCTION gtk_print_operation_get_error ##### -->
<para>
</para>
@op:
@error:
<!-- ##### FUNCTION gtk_print_run_page_setup_dialog ##### -->
<para>
...
...
docs/reference/gtk/tmpl/gtkruler.sgml
View file @
bebbf23f
...
...
@@ -91,11 +91,12 @@ is GTK_PIXELS.
<para>
</para>
@ruler:
@lower:
@upper:
@position:
@max_size:
@ruler:
@lower:
@upper:
@position:
@max_size:
<!-- ##### FUNCTION gtk_ruler_get_metric ##### -->
...
...
gdk-pixbuf/ChangeLog
View file @
bebbf23f
2007
-
09
-
13
Matthias
Clasen
<
mclasen
@
redhat
.
com
>
*
===
Released
2.12.0
===
2007
-
09
-
13
Matthias
Clasen
<
mclasen
@
redhat
.
com
>
*
gdk
-
pixbuf
-
scaled
-
anim
.
c
(
get_scaled_pixbuf
):
Don
't leak
...
...
gtk/gtkbuilder.c
View file @
bebbf23f
...
...
@@ -696,7 +696,7 @@ gtk_builder_add_from_string (GtkBuilder *builder,
tmp_error
=
NULL
;
builder
->
priv
->
filename
=
"."
;
builder
->
priv
->
filename
=
g_strdup
(
"."
)
;
_gtk_builder_parser_parse_buffer
(
builder
,
"<input>"
,
buffer
,
length
,
...
...
gtk/xdgmime/ChangeLog
View file @
bebbf23f
2007-09-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.12.0 ===
2007-07-25 Alexander Larsson <alexl@redhat.com>
* xdgmimealias.h:
...
...
po-properties/ChangeLog
View file @
bebbf23f
2007-09-13 Matthias Clasen <mclasen@redhat.com>
* === Released 2.12.0 ===
2007-09-13 Gabor Kelemen <kelemeng@gnome.hu>
* hu.po: Translation updated.
...
...
po-properties/af.po
View file @
bebbf23f
This diff is collapsed.
Click to expand it.
po-properties/am.po
View file @
bebbf23f
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: gtk+ 2.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-0
7-20 18:13
-0400\n"
"POT-Creation-Date: 2007-0
9-13 19:20
-0400\n"
"PO-Revision-Date: 2003-01-14 11:02+EDT\n"
"Last-Translator: Ge'ez Frontier Foundation <locales@geez.org>\n"
"Language-Team: Amharic <locales@geez.org>\n"
...
...
@@ -393,7 +393,7 @@ msgid "Whether the action group is visible."
msgstr ""
#: gtk/gtkadjustment.c:86 gtk/gtkcellrendererprogress.c:128
#: gtk/gtkspinbutton.c:268
#:
gtk/gtkscalebutton.c:181
gtk/gtkspinbutton.c:268
msgid "Value"
msgstr "ዕሴት"
...
...
@@ -765,6 +765,14 @@ msgstr "ቦታ"
msgid "The index of the child in the parent"
msgstr ""
#: gtk/gtkbuilder.c:104
msgid "Translation Domain"
msgstr ""
#: gtk/gtkbuilder.c:105
msgid "The translation domain used by gettext"
msgstr ""
#: gtk/gtkbutton.c:200
msgid ""
"Text of the label widget inside the button, if the button contains a label "
...
...
@@ -791,11 +799,11 @@ msgid ""
"If set, the label is used to pick a stock item instead of being displayed"
msgstr ""
#: gtk/gtkbutton.c:223 gtk/gtkcombobox.c:75
1
gtk/gtkfilechooserbutton.c:
401
#: gtk/gtkbutton.c:223 gtk/gtkcombobox.c:7
8
5 gtk/gtkfilechooserbutton.c:
398
msgid "Focus on click"
msgstr ""
#: gtk/gtkbutton.c:224 gtk/gtkfilechooserbutton.c:
402
#: gtk/gtkbutton.c:224 gtk/gtkfilechooserbutton.c:
399
msgid "Whether the button grabs focus when it is clicked with the mouse"
msgstr ""
...
...
@@ -1245,8 +1253,8 @@ msgstr "አቀማመጥ"
msgid "Orientation and growth direction of the progress bar"
msgstr ""
#: gtk/gtkcellrendererspin.c:93 gtk/gtkprogressbar.c:122 gtk/gtkrange.c:34
5
#: gtk/gtkspinbutton.c:207
#: gtk/gtkcellrendererspin.c:93 gtk/gtkprogressbar.c:122 gtk/gtkrange.c:34
6
#:
gtk/gtkscalebutton.c:200
gtk/gtkspinbutton.c:207
msgid "Adjustment"
msgstr ""
...
...
@@ -1447,7 +1455,7 @@ msgid ""
"have enough room to display the entire string"
msgstr ""
#: gtk/gtkcellrenderertext.c:429 gtk/gtkfilechooserbutton.c:42
9
#: gtk/gtkcellrenderertext.c:429 gtk/gtkfilechooserbutton.c:42
6
#: gtk/gtklabel.c:449
msgid "Width In Characters"
msgstr ""
...
...
@@ -1466,7 +1474,7 @@ msgid ""
"have enough room to display the entire string"
msgstr ""
#: gtk/gtkcellrenderertext.c:468 gtk/gtkcombobox.c:64
0
#: gtk/gtkcellrenderertext.c:468 gtk/gtkcombobox.c:6
7
4
#, fuzzy
msgid "Wrap width"
msgstr "ስፋት"
...
...
@@ -1709,7 +1717,7 @@ msgstr ""
msgid "Whether or not to give the color an alpha value"
msgstr ""
#: gtk/gtkcolorbutton.c:187 gtk/gtkfilechooserbutton.c:41
5
#: gtk/gtkcolorbutton.c:187 gtk/gtkfilechooserbutton.c:41
2
#: gtk/gtkfontbutton.c:143 gtk/gtkprintjob.c:116 gtk/gtktreeviewcolumn.c:264
msgid "Title"
msgstr "አርእስት"
...
...
@@ -1719,7 +1727,7 @@ msgstr "አርእስት"
msgid "The title of the color selection dialog"
msgstr "የመስኮቱ አርእስት"
#: gtk/gtkcolorbutton.c:202 gtk/gtkcolorsel.c:187
1
#: gtk/gtkcolorbutton.c:202 gtk/gtkcolorsel.c:18
5
7
msgid "Current Color"
msgstr "የአሁኑን ቀለም"
...
...
@@ -1727,7 +1735,7 @@ msgstr "የአሁኑን ቀለም"
msgid "The selected color"
msgstr ""
#: gtk/gtkcolorbutton.c:217 gtk/gtkcolorsel.c:18
78
#: gtk/gtkcolorbutton.c:217 gtk/gtkcolorsel.c:18
64
msgid "Current Alpha"
msgstr ""
...
...
@@ -1735,35 +1743,35 @@ msgstr ""
msgid "The selected opacity value (0 fully transparent, 65535 fully opaque)"
msgstr ""
#: gtk/gtkcolorsel.c:18
57
#: gtk/gtkcolorsel.c:18
43
msgid "Has Opacity Control"
msgstr ""
#: gtk/gtkcolorsel.c:18
58
#: gtk/gtkcolorsel.c:18
44
msgid "Whether the color selector should allow setting opacity"
msgstr ""
#: gtk/gtkcolorsel.c:18
64
#: gtk/gtkcolorsel.c:18
50
msgid "Has palette"
msgstr ""
#: gtk/gtkcolorsel.c:18
6
5
#: gtk/gtkcolorsel.c:185
1
msgid "Whether a palette should be used"
msgstr ""
#: gtk/gtkcolorsel.c:18
72
#: gtk/gtkcolorsel.c:18
58
msgid "The current color"
msgstr ""
#: gtk/gtkcolorsel.c:18
79
#: gtk/gtkcolorsel.c:18
65
msgid "The current opacity value (0 fully transparent, 65535 fully opaque)"
msgstr ""
#: gtk/gtkcolorsel.c:189
3
#: gtk/gtkcolorsel.c:18
7
9
msgid "Custom palette"
msgstr ""
#: gtk/gtkcolorsel.c:18
94
#: gtk/gtkcolorsel.c:18
80
msgid "Palette to use in the color selector"
msgstr ""
...
...
@@ -1807,104 +1815,104 @@ msgstr ""
msgid "Whether entered values must already be present in the list"
msgstr ""
#: gtk/gtkcombobox.c:6
23
#: gtk/gtkcombobox.c:6
57
msgid "ComboBox model"
msgstr ""
#: gtk/gtkcombobox.c:6
24
#: gtk/gtkcombobox.c:6
58
msgid "The model for the combo box"
msgstr ""
#: gtk/gtkcombobox.c:6
41
#: gtk/gtkcombobox.c:6
75
msgid "Wrap width for laying out the items in a grid"
msgstr ""
#: gtk/gtkcombobox.c:6
63
#: gtk/gtkcombobox.c:6
97
msgid "Row span column"
msgstr ""
#: gtk/gtkcombobox.c:6
64
#: gtk/gtkcombobox.c:6
98
msgid "TreeModel column containing the row span values"
msgstr ""
#: gtk/gtkcombobox.c:
685
#: gtk/gtkcombobox.c:
719
msgid "Column span column"
msgstr ""
#: gtk/gtkcombobox.c:
686
#: gtk/gtkcombobox.c:
720
msgid "TreeModel column containing the column span values"
msgstr ""
#: gtk/gtkcombobox.c:7
07
#: gtk/gtkcombobox.c:7
41
msgid "Active item"
msgstr ""
#: gtk/gtkcombobox.c:7
08
#: gtk/gtkcombobox.c:7
42
msgid "The item which is currently active"
msgstr ""
#: gtk/gtkcombobox.c:7
27
gtk/gtkuimanager.c:220
#: gtk/gtkcombobox.c:7
61
gtk/gtkuimanager.c:220
msgid "Add tearoffs to menus"
msgstr ""
#: gtk/gtkcombobox.c:72
8
#: gtk/gtkcombobox.c:7
6
2
msgid "Whether dropdowns should have a tearoff menu item"
msgstr ""
#: gtk/gtkcombobox.c:7
43
gtk/gtkentry.c:522
#: gtk/gtkcombobox.c:7
77
gtk/gtkentry.c:522
msgid "Has Frame"
msgstr "ፍሬም አለ"
#: gtk/gtkcombobox.c:7
44
#: gtk/gtkcombobox.c:7
78
msgid "Whether the combo box draws a frame around the child"
msgstr ""
#: gtk/gtkcombobox.c:7
52
#: gtk/gtkcombobox.c:7
86
msgid "Whether the combo box grabs focus when it is clicked with the mouse"
msgstr ""
#: gtk/gtkcombobox.c:
767
gtk/gtkmenu.c:484
#: gtk/gtkcombobox.c:
801
gtk/gtkmenu.c:484
msgid "Tearoff Title"
msgstr ""
#: gtk/gtkcombobox.c:
768
#: gtk/gtkcombobox.c:
802
msgid ""
"A title that may be displayed by the window manager when the popup is torn-"
"off"
msgstr ""
#: gtk/gtkcombobox.c:
785
#: gtk/gtkcombobox.c:
819
msgid "Popup shown"
msgstr ""
#: gtk/gtkcombobox.c:
786
#: gtk/gtkcombobox.c:
820
msgid "Whether the combo's dropdown is shown"
msgstr ""
#: gtk/gtkcombobox.c:
792
#: gtk/gtkcombobox.c:
826
msgid "Appears as list"
msgstr ""
#: gtk/gtkcombobox.c:
793
#: gtk/gtkcombobox.c:
827
msgid "Whether dropdowns should look like lists rather than menus"
msgstr ""
#: gtk/gtkcombobox.c:8
09
#: gtk/gtkcombobox.c:8
43
#, fuzzy
msgid "Arrow Size"
msgstr "ጽሑፍ አሳይ"
#: gtk/gtkcombobox.c:8
10
#: gtk/gtkcombobox.c:8
44
msgid "The minimum size of the arrow in the combo box"
msgstr ""
#: gtk/gtkcombobox.c:8
2
5 gtk/gtkentry.c:622 gtk/gtkhandlebox.c:176
#: gtk/gtkcombobox.c:85
9
gtk/gtkentry.c:622 gtk/gtkhandlebox.c:176
#: gtk/gtkmenubar.c:201 gtk/gtkstatusbar.c:186 gtk/gtktoolbar.c:613
#: gtk/gtkviewport.c:122
msgid "Shadow type"
msgstr ""
#: gtk/gtkcombobox.c:8
2
6
#: gtk/gtkcombobox.c:86
0
msgid "Which kind of shadow to draw around the combo box"
msgstr ""
...
...
@@ -2282,7 +2290,7 @@ msgstr "ፋይሎች"
msgid "Name of file system backend to use"
msgstr ""
#: gtk/gtkfilechooser.c:210 gtk/gtkrecentchooser.c:
169
#: gtk/gtkfilechooser.c:210 gtk/gtkrecentchooser.c:
252
#, fuzzy
msgid "Filter"
msgstr "ፋይሎች"
...
...
@@ -2336,7 +2344,7 @@ msgstr "ስፋት"
msgid "Application supplied widget for extra options."
msgstr ""
#: gtk/gtkfilechooser.c:246 gtk/gtkfilesel.c:539 gtk/gtkrecentchooser.c:1
42
#: gtk/gtkfilechooser.c:246 gtk/gtkfilesel.c:539 gtk/gtkrecentchooser.c:1
91
#, fuzzy
msgid "Select Multiple"
msgstr "ሁሉንም ምረጡ"
...
...
@@ -2364,20 +2372,20 @@ msgid ""
"dialog if necessary."
msgstr ""
#: gtk/gtkfilechooserbutton.c:38
4
#: gtk/gtkfilechooserbutton.c:38
1
msgid "Dialog"
msgstr ""
#: gtk/gtkfilechooserbutton.c:38
5
#: gtk/gtkfilechooserbutton.c:38
2
msgid "The file chooser dialog to use."
msgstr ""
#: gtk/gtkfilechooserbutton.c:41
6
#: gtk/gtkfilechooserbutton.c:41
3
#, fuzzy
msgid "The title of the file chooser dialog."
msgstr "የመስኮቱ አርእስት"
#: gtk/gtkfilechooserbutton.c:4
30
#: gtk/gtkfilechooserbutton.c:4
27
msgid "The desired width of the button widget, in characters."
msgstr ""
...
...
@@ -2733,7 +2741,7 @@ msgstr ""
msgid "Icon set to display"
msgstr ""
#: gtk/gtkimage.c:187 gtk/gtktoolbar.c:530
#: gtk/gtkimage.c:187
gtk/gtkscalebutton.c:191
gtk/gtktoolbar.c:530
msgid "Icon size"
msgstr "የምልክት መጠን"
...
...
@@ -3088,11 +3096,11 @@ msgstr ""
msgid "A boolean that determines whether the menu grabs the keyboard focus"
msgstr ""
#: gtk/gtkmenutoolbutton.c:23
6
gtk/gtkoptionmenu.c:161
#: gtk/gtkmenutoolbutton.c:23
0
gtk/gtkoptionmenu.c:161
msgid "Menu"
msgstr "ሜኑ"
#: gtk/gtkmenutoolbutton.c:23
7
#: gtk/gtkmenutoolbutton.c:23
1
msgid "The dropdown menu"
msgstr ""
...
...
@@ -3575,7 +3583,7 @@ msgstr ""
msgid "Printer settings"
msgstr ""
#: gtk/gtkprintjob.c:143 gtk/gtkprintjob.c:144 gtk/gtkprintunixdialog.c:2
31
#: gtk/gtkprintjob.c:143 gtk/gtkprintjob.c:144 gtk/gtkprintunixdialog.c:2
40
#, fuzzy
msgid "Page Setup"
msgstr "መጠን"
...
...
@@ -3599,11 +3607,11 @@ msgstr "የነበረው እርዝማኔ"
msgid "The GtkPageSetup used by default"
msgstr ""
#: gtk/gtkprintoperation.c:896 gtk/gtkprintunixdialog.c:2
49
#: gtk/gtkprintoperation.c:896 gtk/gtkprintunixdialog.c:2
58
msgid "Print Settings"
msgstr ""
#: gtk/gtkprintoperation.c:897 gtk/gtkprintunixdialog.c:25
0
#: gtk/gtkprintoperation.c:897 gtk/gtkprintunixdialog.c:25
9
msgid "The GtkPrintSettings used for initializing the dialog"
msgstr ""
...
...
@@ -3626,12 +3634,12 @@ msgstr "ዐምዶች"
msgid "The number of pages in the document."
msgstr "የጽሑፉ መለያ"
#: gtk/gtkprintoperation.c:962 gtk/gtkprintunixdialog.c:2
39
#: gtk/gtkprintoperation.c:962 gtk/gtkprintunixdialog.c:2
48
#, fuzzy
msgid "Current Page"
msgstr "የአሁኑን ቀለም"
#: gtk/gtkprintoperation.c:963 gtk/gtkprintunixdialog.c:24
0
#: gtk/gtkprintoperation.c:963 gtk/gtkprintunixdialog.c:24
9
#, fuzzy
msgid "The current page in the document"
msgstr "የጽሑፉ መለያ"
...
...
@@ -3707,15 +3715,15 @@ msgstr ""
msgid "Label for the tab containing custom widgets."
msgstr ""
#: gtk/gtkprintunixdialog.c:2
32
#: gtk/gtkprintunixdialog.c:2
41
msgid "The GtkPageSetup to use"
msgstr ""
#: gtk/gtkprintunixdialog.c:2
57
#: gtk/gtkprintunixdialog.c:2
66
msgid "Selected Printer"
msgstr ""
#: gtk/gtkprintunixdialog.c:2
58
#: gtk/gtkprintunixdialog.c:2
67
msgid "The GtkPrinter which is selected"
msgstr ""
...
...
@@ -3847,234 +3855,234 @@ msgstr ""
msgid "The radio menu item whose group this widget belongs to."
msgstr ""
#: gtk/gtkrange.c:33
6
#: gtk/gtkrange.c:33
7
msgid "Update policy"
msgstr ""
#: gtk/gtkrange.c:33
7
#: gtk/gtkrange.c:33
8
msgid "How the range should be updated on the screen"
msgstr ""
#: gtk/gtkrange.c:34
6
#: gtk/gtkrange.c:34
7
msgid "The GtkAdjustment that contains the current value of this range object"
msgstr ""
#: gtk/gtkrange.c:35
3
#: gtk/gtkrange.c:35
4
msgid "Inverted"
msgstr ""
#: gtk/gtkrange.c:35
4
#: gtk/gtkrange.c:35
5
msgid "Invert direction slider moves to increase range value"
msgstr ""
#: gtk/gtkrange.c:36
1
#: gtk/gtkrange.c:36
2
msgid "Lower stepper sensitivity"
msgstr ""
#: gtk/gtkrange.c:36
2
#: gtk/gtkrange.c:36
3
msgid ""
"The sensitivity policy for the stepper that points to the adjustment's lower "
"side"
msgstr ""
#: gtk/gtkrange.c:37
0
#: gtk/gtkrange.c:37
1
msgid "Upper stepper sensitivity"
msgstr ""
#: gtk/gtkrange.c:37
1
#: gtk/gtkrange.c:37
2
msgid ""
"The sensitivity policy for the stepper that points to the adjustment's upper "
"side"
msgstr ""
#: gtk/gtkrange.c:38
8
#: gtk/gtkrange.c:38
9
msgid "Show Fill Level"
msgstr ""
#: gtk/gtkrange.c:3
8
9
#: gtk/gtkrange.c:39
0
msgid "Whether to display a fill level indicator graphics on trough."
msgstr ""
#: gtk/gtkrange.c:40
5
#: gtk/gtkrange.c:40
6
msgid "Restrict to Fill Level"
msgstr ""
#: gtk/gtkrange.c:40
6
#: gtk/gtkrange.c:40
7
msgid "Whether to restrict the upper boundary to the fill level."
msgstr ""
#: gtk/gtkrange.c:42
1
#: gtk/gtkrange.c:42
2
msgid "Fill Level"
msgstr ""
#: gtk/gtkrange.c:42
2
#: gtk/gtkrange.c:42
3
msgid "The fill level."
msgstr ""
#: gtk/gtkrange.c:43
0
#: gtk/gtkrange.c:43
1
msgid "Slider Width"
msgstr ""
#: gtk/gtkrange.c:43
1
#: gtk/gtkrange.c:43
2
msgid "Width of scrollbar or scale thumb"
msgstr ""
#: gtk/gtkrange.c:43
8
#: gtk/gtkrange.c:43
9
msgid "Trough Border"
msgstr ""
#: gtk/gtkrange.c:4
39
#: gtk/gtkrange.c:4
40
msgid "Spacing between thumb/steppers and outer trough bevel"
msgstr ""