[gtk+/gtk-3-10] Bump version



commit 77d6c28521f5e6a6c830817c827ee5937ef3f003
Author: Matthias Clasen <mclasen redhat com>
Date:   Mon Nov 11 09:59:57 2013 -0500

    Bump version

 build-aux/test-driver                              |  127 +
 build/win32/vs10/gdk.vcxproj                       |  363 +
 build/win32/vs10/gdk.vcxproj.filters               |   54 +
 build/win32/vs10/gtk.vcxproj                       |  538 ++
 build/win32/vs10/gtk.vcxproj.filters               |  381 +
 build/win32/vs10/gtka11y.vcxproj                   |  294 +
 build/win32/vs10/gtka11y.vcxproj.filters           |   69 +
 build/win32/vs9/gdk.vcproj                         |  334 +
 build/win32/vs9/gtk.vcproj                         |  533 ++
 build/win32/vs9/gtka11y.vcproj                     |  271 +
 configure.ac                                       |    4 +-
 docs/reference/gdk/.libs/gdk3-scan                 |  Bin 0 -> 83470 bytes
 docs/reference/gdk/.libs/gdk3-scan.o               |  Bin 0 -> 169080 bytes
 docs/reference/gdk/.libs/lt-gdk3-scan              |  Bin 0 -> 83470 bytes
 docs/reference/gtk/.libs/gtk3-scan                 |  Bin 0 -> 155247 bytes
 docs/reference/gtk/.libs/gtk3-scan.o               |  Bin 0 -> 267776 bytes
 docs/reference/gtk/.libs/lt-gtk3-scan              |  Bin 0 -> 155247 bytes
 gtk+-3.10.3.tar.xz                                 |  Bin 0 -> 14377200 bytes
 m4/gtk-doc.m4                                      |    1 +
 po-properties/gtk30-properties.pot                 | 8233 ++++++++++++++++++++
 tests/autotestkeywords.trs                         |    4 +
 tests/test-suite.log                               |   14 +
 22 files changed, 11218 insertions(+), 2 deletions(-)
---
diff --git a/build-aux/test-driver b/build-aux/test-driver
new file mode 100755
index 0000000..32bf39e
--- /dev/null
+++ b/build-aux/test-driver
@@ -0,0 +1,127 @@
+#! /bin/sh
+# test-driver - basic testsuite driver script.
+
+scriptversion=2012-06-27.10; # UTC
+
+# Copyright (C) 2011-2013 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# This file is maintained in Automake, please report
+# bugs to <bug-automake gnu org> or send patches to
+# <automake-patches gnu org>.
+
+# Make unconditional expansion of undefined variables an error.  This
+# helps a lot in preventing typo-related bugs.
+set -u
+
+usage_error ()
+{
+  echo "$0: $*" >&2
+  print_usage >&2
+  exit 2
+}
+
+print_usage ()
+{
+  cat <<END
+Usage:
+  test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
+              [--expect-failure={yes|no}] [--color-tests={yes|no}]
+              [--enable-hard-errors={yes|no}] [--] TEST-SCRIPT
+The '--test-name', '--log-file' and '--trs-file' options are mandatory.
+END
+}
+
+# TODO: better error handling in option parsing (in particular, ensure
+# TODO: $log_file, $trs_file and $test_name are defined).
+test_name= # Used for reporting.
+log_file=  # Where to save the output of the test script.
+trs_file=  # Where to save the metadata of the test run.
+expect_failure=no
+color_tests=no
+enable_hard_errors=yes
+while test $# -gt 0; do
+  case $1 in
+  --help) print_usage; exit $?;;
+  --version) echo "test-driver $scriptversion"; exit $?;;
+  --test-name) test_name=$2; shift;;
+  --log-file) log_file=$2; shift;;
+  --trs-file) trs_file=$2; shift;;
+  --color-tests) color_tests=$2; shift;;
+  --expect-failure) expect_failure=$2; shift;;
+  --enable-hard-errors) enable_hard_errors=$2; shift;;
+  --) shift; break;;
+  -*) usage_error "invalid option: '$1'";;
+  esac
+  shift
+done
+
+if test $color_tests = yes; then
+  # Keep this in sync with 'lib/am/check.am:$(am__tty_colors)'.
+  red='' # Red.
+  grn='' # Green.
+  lgn='' # Light green.
+  blu='' # Blue.
+  mgn='' # Magenta.
+  std=''     # No color.
+else
+  red= grn= lgn= blu= mgn= std=
+fi
+
+do_exit='rm -f $log_file $trs_file; (exit $st); exit $st'
+trap "st=129; $do_exit" 1
+trap "st=130; $do_exit" 2
+trap "st=141; $do_exit" 13
+trap "st=143; $do_exit" 15
+
+# Test script is run here.
+"$@" >$log_file 2>&1
+estatus=$?
+if test $enable_hard_errors = no && test $estatus -eq 99; then
+  estatus=1
+fi
+
+case $estatus:$expect_failure in
+  0:yes) col=$red res=XPASS recheck=yes gcopy=yes;;
+  0:*)   col=$grn res=PASS  recheck=no  gcopy=no;;
+  77:*)  col=$blu res=SKIP  recheck=no  gcopy=yes;;
+  99:*)  col=$mgn res=ERROR recheck=yes gcopy=yes;;
+  *:yes) col=$lgn res=XFAIL recheck=no  gcopy=yes;;
+  *:*)   col=$red res=FAIL  recheck=yes gcopy=yes;;
+esac
+
+# Report outcome to console.
+echo "${col}${res}${std}: $test_name"
+
+# Register the test result, and other relevant metadata.
+echo ":test-result: $res" > $trs_file
+echo ":global-test-result: $res" >> $trs_file
+echo ":recheck: $recheck" >> $trs_file
+echo ":copy-in-global-log: $gcopy" >> $trs_file
+
+# Local Variables:
+# mode: shell-script
+# sh-indentation: 2
+# eval: (add-hook 'write-file-hooks 'time-stamp)
+# time-stamp-start: "scriptversion="
+# time-stamp-format: "%:y-%02m-%02d.%02H"
+# time-stamp-time-zone: "UTC"
+# time-stamp-end: "; # UTC"
+# End:
diff --git a/build/win32/vs10/gdk.vcxproj b/build/win32/vs10/gdk.vcxproj
new file mode 100644
index 0000000..f6b29d4
--- /dev/null
+++ b/build/win32/vs10/gdk.vcxproj
@@ -0,0 +1,363 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug_Broadway|Win32">
+      <Configuration>Debug_Broadway</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug_Broadway|x64">
+      <Configuration>Debug_Broadway</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release_Broadway|Win32">
+      <Configuration>Release_Broadway</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release_Broadway|x64">
+      <Configuration>Release_Broadway</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <ProjectGuid>{FC5AADB5-95CD-4BF0-BA8B-0C16FE7073F7}</ProjectGuid>
+    <RootNamespace>gdk</RootNamespace>
+    <Keyword>Win32Proj</Keyword>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-ignore-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-ignore-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-ignore-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-ignore-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-copy-gdk-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-copy-gdk-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-copy-gdk-broadway.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtk-copy-gdk-broadway.props" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
+    <LinkIncremental 
Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'">true</LinkIncremental>
+    <LinkIncremental 
Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'">false</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'">true</LinkIncremental>
+    <LinkIncremental 
Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'">false</LinkIncremental>
+  </PropertyGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <AdditionalDependencies>imm32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>imm32.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <AdditionalDependencies>imm32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>imm32.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <AdditionalDependencies>imm32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>imm32.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <AdditionalDependencies>imm32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GdkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>imm32.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc" />
+  </ItemGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gdk\gdk.c" />
+   <ClCompile Include="..\..\..\gdk\gdkapplaunchcontext.c" />
+   <ClCompile Include="..\..\..\gdk\gdkcairo.c" />
+   <ClCompile Include="..\..\..\gdk\gdkcolor.c" />
+   <ClCompile Include="..\..\..\gdk\gdkcursor.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdeprecated.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdevice.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdevicemanager.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdisplay.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdisplaymanager.c" />
+   <ClCompile Include="..\..\..\gdk\gdkdnd.c" />
+   <ClCompile Include="..\..\..\gdk\gdkevents.c" />
+   <ClCompile Include="..\..\..\gdk\gdkframetimings.c" />
+   <ClCompile Include="..\..\..\gdk\gdkglobals.c" />
+   <ClCompile Include="..\..\..\gdk\gdkkeys.c" />
+   <ClCompile Include="..\..\..\gdk\gdkkeyuni.c" />
+   <ClCompile Include="..\..\..\gdk\gdkoffscreenwindow.c" />
+   <ClCompile Include="..\..\..\gdk\gdkframeclock.c" />
+   <ClCompile Include="..\..\..\gdk\gdkframeclockidle.c" />
+   <ClCompile Include="..\..\..\gdk\gdkpango.c" />
+   <ClCompile Include="..\..\..\gdk\gdkpixbuf-drawable.c" />
+   <ClCompile Include="..\..\..\gdk\gdkproperty.c" />
+   <ClCompile Include="..\..\..\gdk\gdkrectangle.c" />
+   <ClCompile Include="..\..\..\gdk\gdkrgba.c" />
+   <ClCompile Include="..\..\..\gdk\gdkscreen.c" />
+   <ClCompile Include="..\..\..\gdk\gdkselection.c" />
+   <ClCompile Include="..\..\..\gdk\gdkvisual.c" />
+   <ClCompile Include="..\..\..\gdk\gdkwindow.c" />
+   <ClCompile Include="..\..\..\gdk\gdkwindowimpl.c" />
+   <ClCompile Include="..\..\..\gdk\gdkenumtypes.c" />
+   <ClCompile Include="..\..\..\gdk\gdkmarshalers.c" />
+    <ClCompile Include="..\..\..\gdk\gdkkeynames.c" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="gdk-broadway.vcxproj">
+      <Project>{fc5aadb5-95cd-4bf0-ba8b-0c16fe7073fe}</Project>
+      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
+    </ProjectReference>
+    <ProjectReference Include="gdk-win32.vcxproj">
+      <Project>{fc5aadb5-95cd-4bf0-ba8b-0c16fe7073fa}</Project>
+      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
diff --git a/build/win32/vs10/gdk.vcxproj.filters b/build/win32/vs10/gdk.vcxproj.filters
new file mode 100644
index 0000000..6ad6f6d
--- /dev/null
+++ b/build/win32/vs10/gdk.vcxproj.filters
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup>
+    <Filter Include="Header Files">
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
+    </Filter>
+    <Filter Include="Resource Files">
+      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx</Extensions>
+    </Filter>
+    <Filter Include="Source Files">
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+    </Filter>
+  </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\gdk\win32\rc\gdk.rc"><Filter>Resource Files</Filter></ResourceCompile>
+  </ItemGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gdk\gdk.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkapplaunchcontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkcairo.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkcolor.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkcursor.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdeprecated.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdevice.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdevicemanager.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdisplay.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdisplaymanager.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkdnd.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkevents.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkframetimings.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkglobals.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkkeys.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkkeyuni.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkoffscreenwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkframeclock.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkframeclockidle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkpango.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkpixbuf-drawable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkproperty.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkrectangle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkrgba.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkscreen.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkselection.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkvisual.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkwindowimpl.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkenumtypes.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gdk\gdkmarshalers.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\gdk\gdkkeynames.c"><Filter>Source Files</Filter></ClCompile>
+  </ItemGroup>
+</Project>
diff --git a/build/win32/vs10/gtk.vcxproj b/build/win32/vs10/gtk.vcxproj
new file mode 100644
index 0000000..ae40020
--- /dev/null
+++ b/build/win32/vs10/gtk.vcxproj
@@ -0,0 +1,538 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+      <WholeProgramOptimization>true</WholeProgramOptimization>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+      <WholeProgramOptimization>true</WholeProgramOptimization>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <ProjectGuid>{FC5AADB5-95CD-4BF0-BA8B-0C16FE7073F5}</ProjectGuid>
+    <RootNamespace>gtk</RootNamespace>
+    <Keyword>Win32Proj</Keyword>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>DynamicLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
+    <LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
+  </PropertyGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>atk-1.0.lib;pangowin32-1.0.lib;imm32.lib;winspool.lib;comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>atk-1.0.lib;pangowin32-1.0.lib;imm32.lib;winspool.lib;comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>atk-1.0.lib;pangowin32-1.0.lib;imm32.lib;winspool.lib;comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      
<AdditionalIncludeDirectories>..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      
<AdditionalDependencies>atk-1.0.lib;pangowin32-1.0.lib;imm32.lib;winspool.lib;comctl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
+      <OutputFile>$(OutDir)$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Windows</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
+      <TargetMachine>MachineX64</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\gtk\gtk-win32.rc" />
+  </ItemGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkactivatable.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkaction.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkactiongroup.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkcolorsel.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkcolorseldialog.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkfontsel.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkgradient.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhandlebox.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhbbox.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhbox.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhpaned.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhscale.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhscrollbar.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhseparator.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhsv.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkiconfactory.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkimagemenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkradioaction.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkrc.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkrecentaction.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkstock.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkstyle.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtksymboliccolor.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktable.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktearoffmenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktoggleaction.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkuimanager.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvbbox.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvbox.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvscale.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvscrollbar.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvseparator.c" />
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvpaned.c" />
+   <ClCompile Include="..\..\..\gtk\gtkactionmuxer.c" />
+   <ClCompile Include="..\..\..\gtk\gtkactionobserver.c" />
+   <ClCompile Include="..\..\..\gtk\gtkactionobservable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkactionable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkquery.c" />
+   <ClCompile Include="..\..\..\gtk\gtksearchbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtksearchentry.c" />
+   <ClCompile Include="..\..\..\gtk\gtksearchengine.c" />
+   <ClCompile Include="..\..\..\gtk\gtksearchenginesimple.c" />
+   <ClCompile Include="..\..\..\gtk\fnmatch.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaboutdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaccelgroup.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaccellabel.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaccelmap.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\gtkactionhelper.c" />
+   <ClCompile Include="..\..\..\gtk\gtkadjustment.c" />
+   <ClCompile Include="..\..\..\gtk\gtkalignment.c" />
+   <ClCompile Include="..\..\..\gtk\gtkallocatedbitmask.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooserwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooserbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooserdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchoosermodule.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooseronline.c" />
+   <ClCompile Include="..\..\..\gtk\gtkapplication.c" />
+   <ClCompile Include="..\..\..\gtk\gtkapplicationwindow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkarrow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkaspectframe.c" />
+   <ClCompile Include="..\..\..\gtk\gtkassistant.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbbox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbin.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbindings.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbookmarksmanager.c" />
+   <ClCompile Include="..\..\..\gtk\gtkborder.c" />
+   <ClCompile Include="..\..\..\gtk\gtkborderimage.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbubblewindow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbuildable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbuilder.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbuilderparser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbuilder-menus.c" />
+   <ClCompile Include="..\..\..\gtk\gtkbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcairoblur.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcalendar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellarea.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellareabox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellareaboxcontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellareacontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcelleditable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcelllayout.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderer.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrendereraccel.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderercombo.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererpixbuf.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererprogress.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererspin.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererspinner.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderertext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderertoggle.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcellview.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcheckbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcheckmenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooserwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooserdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcoloreditor.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorplane.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorscale.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorswatch.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcolorutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcombobox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcomboboxtext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcontainer.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssanimation.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssarrayvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssbgsizevalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssbordervalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsscolorvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsscomputedvalues.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsscornervalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsscustomproperty.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsseasevalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssenumvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssenginevalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimage.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagecrossfade.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagegradient.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagelinear.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagesurface.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimageurl.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagescaled.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagevalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssimagewin32.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssinheritvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssinitialvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsskeyframes.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsslookup.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssmatcher.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssnumbervalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssparser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsspositionvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssprovider.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssrepeatvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssrgbavalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsssection.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssselector.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssstringvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssshadowsvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssshadowvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssshorthandproperty.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssshorthandpropertyimpl.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssstylefuncs.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssstyleproperty.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssstylepropertyimpl.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsstransition.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsstypedvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcssvalue.c" />
+   <ClCompile Include="..\..\..\gtk\gtkcsstypes.c" />
+   <ClCompile Include="..\..\..\gtk\gtkdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkdrawingarea.c" />
+   <ClCompile Include="..\..\..\gtk\gtkeditable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkentry.c" />
+   <ClCompile Include="..\..\..\gtk\gtkentrybuffer.c" />
+   <ClCompile Include="..\..\..\gtk\gtkentrycompletion.c" />
+   <ClCompile Include="..\..\..\gtk\gtkeventbox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkexpander.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserdefault.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserembed.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserentry.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilefilter.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilesystem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfilesystemmodel.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfixed.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfontbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfontchooser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkframe.c" />
+   <ClCompile Include="..\..\..\gtk\gtkgladecatalog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkgrid.c" />
+   <ClCompile Include="..\..\..\gtk\gtkheaderbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkhsla.c" />
+   <ClCompile Include="..\..\..\gtk\gtkiconcache.c" />
+   <ClCompile Include="..\..\..\gtk\gtkiconcachevalidator.c" />
+   <ClCompile Include="..\..\..\gtk\gtkiconhelper.c" />
+   <ClCompile Include="..\..\..\gtk\gtkicontheme.c" />
+   <ClCompile Include="..\..\..\gtk\gtkiconview.c" />
+   <ClCompile Include="..\..\..\gtk\gtkimage.c" />
+   <ClCompile Include="..\..\..\gtk\gtkimcontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkimcontextsimple.c" />
+   <ClCompile Include="..\..\..\gtk\gtkimmodule.c" />
+   <ClCompile Include="..\..\..\gtk\gtkimmulticontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkinfobar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkinvisible.c" />
+   <ClCompile Include="..\..\..\gtk\gtkkeyhash.c" />
+   <ClCompile Include="..\..\..\gtk\gtklabel.c" />
+   <ClCompile Include="..\..\..\gtk\gtklayout.c" />
+   <ClCompile Include="..\..\..\gtk\gtklevelbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtklinkbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtklistbox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkliststore.c" />
+   <ClCompile Include="..\..\..\gtk\gtklockbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmain.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmarshalers.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenu.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenubar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenubutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenushell.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenutracker.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenutrackeritem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmenutoolbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmessagedialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmisc.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmnemonichash.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmodelmenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmodifierstyle.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmodules.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmountoperation.c" />
+   <ClCompile Include="..\..\..\gtk\gtknotebook.c" />
+   <ClCompile Include="..\..\..\gtk\gtknumerableicon.c" />
+   <ClCompile Include="..\..\..\gtk\gtkoffscreenwindow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkorientable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkoverlay.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpagesetup.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpaned.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpango.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpapersize.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpathbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkplacessidebar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpressandhold.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintcontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintoperation.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintoperationpreview.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintsettings.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprivate.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprivatetypebuiltins.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprogressbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkpixelcache.c" />
+   <ClCompile Include="..\..\..\gtk\gtkradiobutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkradiomenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkradiotoolbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrange.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrbtree.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserdefault.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserdialog.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchoosermenu.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooser.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentfilter.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrecentmanager.c" />
+   <ClCompile Include="..\..\..\gtk\gtkresources.c" />
+   <ClCompile Include="..\..\..\gtk\gtkrevealer.c" />
+   <ClCompile Include="..\..\..\gtk\gtkroundedbox.c" />
+   <ClCompile Include="..\..\..\gtk\gtkscale.c" />
+   <ClCompile Include="..\..\..\gtk\gtkscalebutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkscrollable.c" />
+   <ClCompile Include="..\..\..\gtk\gtkscrollbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkscrolledwindow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkselection.c" />
+   <ClCompile Include="..\..\..\gtk\gtkseparator.c" />
+   <ClCompile Include="..\..\..\gtk\gtkseparatormenuitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtkseparatortoolitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtksettings.c" />
+   <ClCompile Include="..\..\..\gtk\gtksizegroup.c" />
+   <ClCompile Include="..\..\..\gtk\gtksizerequest.c" />
+   <ClCompile Include="..\..\..\gtk\gtksizerequestcache.c" />
+   <ClCompile Include="..\..\..\gtk\gtkshow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkspinbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkspinner.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstack.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstackswitcher.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstatusbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstatusicon.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstyleanimation.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstylecascade.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstylecontext.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstyleproperties.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstyleproperty.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstyleprovider.c" />
+   <ClCompile Include="..\..\..\gtk\gtkstyleproviderprivate.c" />
+   <ClCompile Include="..\..\..\gtk\gtkswitch.c" />
+   <ClCompile Include="..\..\..\gtk\gtktestutils.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextattributes.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextbtree.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextbuffer.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextbufferrichtext.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextbufferserialize.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextchild.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextdisplay.c" />
+   <ClCompile Include="..\..\..\gtk\gtktexthandle.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextiter.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextlayout.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextmark.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextsegment.c" />
+   <ClCompile Include="..\..\..\gtk\gtktexttag.c" />
+   <ClCompile Include="..\..\..\gtk\gtktexttagtable.c" />
+   <ClCompile Include="..\..\..\gtk\gtktexttypes.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextutil.c" />
+   <ClCompile Include="..\..\..\gtk\gtktextview.c" />
+   <ClCompile Include="..\..\..\gtk\gtkthemingbackground.c" />
+   <ClCompile Include="..\..\..\gtk\gtkthemingengine.c" />
+   <ClCompile Include="..\..\..\gtk\gtktogglebutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoggletoolbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolbar.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolbutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolitem.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolitemgroup.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolpalette.c" />
+   <ClCompile Include="..\..\..\gtk\gtktoolshell.c" />
+   <ClCompile Include="..\..\..\gtk\gtktooltip.c" />
+   <ClCompile Include="..\..\..\gtk\gtktrashmonitor.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreedatalist.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreednd.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreemenu.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreemodel.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreemodelfilter.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreemodelsort.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreeselection.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreesortable.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreestore.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreeview.c" />
+   <ClCompile Include="..\..\..\gtk\gtktreeviewcolumn.c" />
+   <ClCompile Include="..\..\..\gtk\gtktypebuiltins.c" />
+   <ClCompile Include="..\..\..\gtk\gtkvolumebutton.c" />
+   <ClCompile Include="..\..\..\gtk\gtkviewport.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwidgetpath.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwindow.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwin32theme.c" />
+   <ClCompile Include="..\..\..\gtk\gtkclipboard.c" />
+   <ClCompile Include="..\..\..\gtk\gtkclipboard-wayland.c" />
+   <ClCompile Include="..\..\..\gtk\gtkdnd.c" />
+   <ClCompile Include="..\..\..\gtk\gtkappchooseronlinepk.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprint-win32.c" />
+   <ClCompile Include="..\..\..\gtk\gtkprintoperation-win32.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwin32.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwin32embed.c" />
+   <ClCompile Include="..\..\..\gtk\gtkwin32embedwidget.c" />
+   <ClCompile Include="..\..\..\gtk\gtkmountoperation-stub.c" />
+   <ClCompile Include="..\..\..\gtk\gtkdbusgenerated.c" />
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextime.c" />
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c" />
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c" />
+    <ClCompile Include="..\..\..\modules\input\imam-et.c" />
+    <ClCompile Include="..\..\..\modules\input\imcedilla.c" />
+    <ClCompile Include="..\..\..\modules\input\imcyrillic-translit.c" />
+    <ClCompile Include="..\..\..\modules\input\imime.c" />
+    <ClCompile Include="..\..\..\modules\input\iminuktitut.c" />
+    <ClCompile Include="..\..\..\modules\input\imipa.c" />
+    <ClCompile Include="..\..\..\modules\input\immultipress.c" />
+    <ClCompile Include="..\..\..\modules\input\imthai.c" />
+    <ClCompile Include="..\..\..\modules\input\imti-er.c" />
+    <ClCompile Include="..\..\..\modules\input\imti-et.c" />
+    <ClCompile Include="..\..\..\modules\input\imviqr.c" />
+    <ClCompile Include="..\..\..\modules\input\thai-charprop.c" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="gdk.vcxproj">
+      <Project>{fc5aadb5-95cd-4bf0-ba8b-0c16fe7073f7}</Project>
+      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
+    </ProjectReference>
+    <ProjectReference Include="gtka11y.vcxproj">
+      <Project>{f756b0db-40a1-4e9f-be1f-8f02cb86ea46}</Project>
+      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
diff --git a/build/win32/vs10/gtk.vcxproj.filters b/build/win32/vs10/gtk.vcxproj.filters
new file mode 100644
index 0000000..0e5c6e4
--- /dev/null
+++ b/build/win32/vs10/gtk.vcxproj.filters
@@ -0,0 +1,381 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup>
+    <Filter Include="Header Files">
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
+    </Filter>
+    <Filter Include="Resource Files">
+      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx</Extensions>
+    </Filter>
+    <Filter Include="Source Files">
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+    </Filter>
+  </ItemGroup>
+  <ItemGroup>
+    <ResourceCompile Include="..\..\..\gtk\gtk-win32.rc"><Filter>Resource Files</Filter></ResourceCompile>
+  </ItemGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkactivatable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkaction.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkactiongroup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkcolorsel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkcolorseldialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkfontsel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkgradient.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhandlebox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhbbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhpaned.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhscale.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhscrollbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhseparator.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkhsv.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkiconfactory.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkimagemenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkradioaction.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkrc.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkrecentaction.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkstock.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkstyle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtksymboliccolor.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktearoffmenuitem.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtktoggleaction.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkuimanager.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvbbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvscale.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvscrollbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvseparator.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\deprecated\gtkvpaned.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkactionmuxer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkactionobserver.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkactionobservable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkactionable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkquery.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksearchbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksearchentry.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksearchengine.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksearchenginesimple.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\fnmatch.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaboutdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaccelgroup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaccellabel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaccelmap.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkactionhelper.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkadjustment.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkalignment.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkallocatedbitmask.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooserwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooserbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooserdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchoosermodule.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooseronline.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkapplication.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkapplicationwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkarrow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkaspectframe.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkassistant.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbin.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbindings.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbookmarksmanager.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkborder.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkborderimage.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbubblewindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbuildable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbuilder.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbuilderparser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbuilder-menus.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcairoblur.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcalendar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellarea.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellareabox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellareaboxcontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellareacontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcelleditable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcelllayout.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrendereraccel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderercombo.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererpixbuf.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererprogress.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererspin.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrendererspinner.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderertext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellrenderertoggle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcellview.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcheckbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcheckmenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooserwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorchooserdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcoloreditor.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorplane.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorscale.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorswatch.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcolorutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcombobox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcomboboxtext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcontainer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssanimation.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssarrayvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssbgsizevalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssbordervalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsscolorvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsscomputedvalues.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsscornervalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsscustomproperty.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsseasevalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssenumvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssenginevalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimage.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagecrossfade.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagegradient.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagelinear.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagesurface.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimageurl.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagescaled.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagevalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssimagewin32.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssinheritvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssinitialvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsskeyframes.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsslookup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssmatcher.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssnumbervalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssparser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsspositionvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssprovider.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssrepeatvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssrgbavalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsssection.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssselector.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssstringvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssshadowsvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssshadowvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssshorthandproperty.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssshorthandpropertyimpl.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssstylefuncs.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssstyleproperty.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssstylepropertyimpl.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsstransition.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsstypedvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcssvalue.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkcsstypes.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkdrawingarea.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkeditable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkentry.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkentrybuffer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkentrycompletion.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkeventbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkexpander.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserdefault.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserembed.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserentry.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilechooserwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilefilter.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilesystem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfilesystemmodel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfixed.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfontbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfontchooser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkfontchooserwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkframe.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkgladecatalog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkgrid.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkheaderbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkhsla.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkiconcache.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkiconcachevalidator.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkiconhelper.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkicontheme.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkiconview.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkimage.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkimcontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkimcontextsimple.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkimmodule.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkimmulticontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkinfobar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkinvisible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkkeyhash.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklabel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklayout.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklevelbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklinkbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklistbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkliststore.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtklockbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmain.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmarshalers.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenu.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenubar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenubutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenushell.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenutracker.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenutrackeritem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmenutoolbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmessagedialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmisc.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmnemonichash.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmodelmenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmodifierstyle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmodules.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmountoperation.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtknotebook.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtknumerableicon.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkoffscreenwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkorientable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkoverlay.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpagesetup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpaned.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpango.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpapersize.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpathbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkplacessidebar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpressandhold.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintcontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintoperation.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintoperationpreview.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintsettings.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprivate.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprivatetypebuiltins.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprogressbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkpixelcache.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkradiobutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkradiomenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkradiotoolbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrange.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrbtree.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserdefault.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserdialog.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchoosermenu.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooserutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentchooser.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentfilter.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrecentmanager.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkresources.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkrevealer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkroundedbox.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkscale.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkscalebutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkscrollable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkscrollbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkscrolledwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkselection.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkseparator.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkseparatormenuitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkseparatortoolitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksettings.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksizegroup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksizerequest.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtksizerequestcache.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkshow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkspinbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkspinner.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstack.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstackswitcher.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstatusbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstatusicon.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstyleanimation.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstylecascade.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstylecontext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstyleproperties.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstyleproperty.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstyleprovider.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkstyleproviderprivate.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkswitch.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktestutils.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextattributes.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextbtree.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextbuffer.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextbufferrichtext.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextbufferserialize.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextchild.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextdisplay.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktexthandle.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextiter.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextlayout.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextmark.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextsegment.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktexttag.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktexttagtable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktexttypes.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextutil.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktextview.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkthemingbackground.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkthemingengine.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktogglebutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoggletoolbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolbar.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolbutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolitem.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolitemgroup.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolpalette.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktoolshell.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktooltip.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktrashmonitor.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreedatalist.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreednd.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreemenu.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreemodel.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreemodelfilter.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreemodelsort.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreeselection.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreesortable.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreestore.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreeview.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktreeviewcolumn.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtktypebuiltins.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkvolumebutton.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkviewport.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwidgetpath.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwindow.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwin32theme.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkclipboard.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkclipboard-wayland.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkdnd.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkappchooseronlinepk.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprint-win32.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkprintoperation-win32.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwin32.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwin32embed.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkwin32embedwidget.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkmountoperation-stub.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\gtkdbusgenerated.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextime.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextmultipress.c"><Filter>Source 
Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\gtkimcontextthai.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imam-et.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imcedilla.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imcyrillic-translit.c"><Filter>Source 
Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imime.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\iminuktitut.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imipa.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\immultipress.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imthai.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imti-er.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imti-et.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\imviqr.c"><Filter>Source Files</Filter></ClCompile>
+    <ClCompile Include="..\..\..\modules\input\thai-charprop.c"><Filter>Source Files</Filter></ClCompile>
+  </ItemGroup>
+</Project>
diff --git a/build/win32/vs10/gtka11y.vcxproj b/build/win32/vs10/gtka11y.vcxproj
new file mode 100644
index 0000000..74fe14b
--- /dev/null
+++ b/build/win32/vs10/gtka11y.vcxproj
@@ -0,0 +1,294 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug|x64">
+      <Configuration>Debug</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|x64">
+      <Configuration>Release</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug_Broadway|Win32">
+      <Configuration>Debug_Broadway</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Debug_Broadway|x64">
+      <Configuration>Debug_Broadway</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release_Broadway|Win32">
+      <Configuration>Release_Broadway</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release_Broadway|x64">
+      <Configuration>Release_Broadway</Configuration>
+      <Platform>x64</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <ProjectGuid>{F756B0DB-40A1-4E9F-BE1F-8F02CB86EA46}</ProjectGuid>
+    <RootNamespace>gtka11y</RootNamespace>
+    <Keyword>Win32Proj</Keyword>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <WholeProgramOptimization>true</WholeProgramOptimization>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="Configuration">
+    <ConfigurationType>StaticLibrary</ConfigurationType>
+    <CharacterSet>MultiByte</CharacterSet>
+    <PlatformToolset>v100</PlatformToolset>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtkprebuild.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtkprebuild.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtkprebuild.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+    <Import Project="gtkprebuild.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+    <Import Project="gtk-build-defines.props" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_Broadway|x64'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      
<PreprocessorDefinitions>_DEBUG;G_ENABLE_DEBUG;$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      <Optimization>MaxSpeed</Optimization>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|Win32'">
+    <ClCompile>
+      <Optimization>MaxSpeed</Optimization>
+      <IntrinsicFunctions>true</IntrinsicFunctions>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <FunctionLevelLinking>true</FunctionLevelLinking>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+    <ClCompile>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_Broadway|x64'">
+    <ClCompile>
+      <PreprocessorDefinitions>$(GtkDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      
<AdditionalIncludeDirectories>..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+      <PrecompiledHeader>
+      </PrecompiledHeader>
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibility.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibilitymisc.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibilityutil.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkarrowaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkbooleancellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkbuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcellaccessibleparent.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcheckmenuitemaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcolorswatchaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcomboboxaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcontaineraccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcontainercellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkentryaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkexpanderaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkframeaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkiconviewaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkimageaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkimagecellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklabelaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklevelbaraccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklinkbuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklistboxaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklistboxrowaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtklockbuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenuaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenushellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenuitemaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtknotebookaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtknotebookpageaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkpanedaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkprogressbaraccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkradiobuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkradiomenuitemaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkrangeaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkrenderercellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscaleaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscalebuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscrolledwindowaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkspinbuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkspinneraccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkstatusbaraccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkswitchaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtktextcellaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtktextviewaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtktogglebuttonaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtktoplevelaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtktreeviewaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkwidgetaccessible.c" />
+   <ClCompile Include="..\..\..\gtk\a11y\gtkwindowaccessible.c" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="broadwayd.vcxproj">
+      <Project>{3281202a-cd26-4c67-b892-eb34bdbc6130}</Project>
+      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
diff --git a/build/win32/vs10/gtka11y.vcxproj.filters b/build/win32/vs10/gtka11y.vcxproj.filters
new file mode 100644
index 0000000..e69ba86
--- /dev/null
+++ b/build/win32/vs10/gtka11y.vcxproj.filters
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <ItemGroup>
+    <Filter Include="Sources">
+      <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
+      <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
+    </Filter>
+    <Filter Include="Headers">
+      <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
+      <Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
+    </Filter>
+    <Filter Include="Resource Files">
+      <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
+      <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav</Extensions>
+    </Filter>
+  </ItemGroup>
+  <ItemGroup>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibility.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibilitymisc.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkaccessibilityutil.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkarrowaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkbooleancellaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkbuttonaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcellaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcellaccessibleparent.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcheckmenuitemaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcolorswatchaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcomboboxaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcontaineraccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkcontainercellaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkentryaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkexpanderaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkframeaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkiconviewaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkimageaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkimagecellaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklabelaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklevelbaraccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklinkbuttonaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklistboxaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklistboxrowaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtklockbuttonaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenuaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenushellaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkmenuitemaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtknotebookaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtknotebookpageaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkpanedaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkprogressbaraccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkradiobuttonaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkradiomenuitemaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkrangeaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkrenderercellaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscaleaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscalebuttonaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkscrolledwindowaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkspinbuttonaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkspinneraccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkstatusbaraccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkswitchaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtktextcellaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtktextviewaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtktogglebuttonaccessible.c"><Filter>Source 
Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtktoplevelaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtktreeviewaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkwidgetaccessible.c"><Filter>Source Files</Filter></ClCompile>
+   <ClCompile Include="..\..\..\gtk\a11y\gtkwindowaccessible.c"><Filter>Source Files</Filter></ClCompile>
+  </ItemGroup>
+</Project>
diff --git a/build/win32/vs9/gdk.vcproj b/build/win32/vs9/gdk.vcproj
new file mode 100644
index 0000000..1c00869
--- /dev/null
+++ b/build/win32/vs9/gdk.vcproj
@@ -0,0 +1,334 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="gdk"
+ ProjectGUID="{FC5AADB5-95CD-4BF0-BA8B-0C16FE7073F7}"
+ RootNamespace="gdk"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="0"
+ >
+ <Platforms>
+  <Platform
+   Name="Win32"
+  />
+  <Platform
+   Name="x64"
+  />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+  <Configuration
+   Name="Debug|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-ignore-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GdkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="4"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug_Broadway|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-copy-gdk-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GdkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="4"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib ws2_32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-ignore-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32"
+    PreprocessorDefinitions="$(GdkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release_Broadway|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-copy-gdk-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway"
+    PreprocessorDefinitions="$(GdkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib ws2_32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-ignore-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GdkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug_Broadway|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-copy-gdk-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GdkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib ws2_32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtk-ignore-broadway.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32"
+    PreprocessorDefinitions="$(GdkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release_Broadway|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gdk\broadway"
+    PreprocessorDefinitions="$(GdkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="imm32.lib winmm.lib ws2_32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+  <Filter
+   Name="Header Files"
+   Filter="h;hpp;hxx;hm;inl;inc;xsd"
+   UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+   >
+  </Filter>
+  <Filter
+   Name="Resource Files"
+   Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
+   UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+   >
+   <File RelativePath="..\..\..\gdk\win32\rc\gdk.rc" />
+  </Filter>
+  <Filter
+   Name="Source Files"
+   Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+   UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+   >
+   <File RelativePath="..\..\..\gdk\gdk.c" />
+   <File RelativePath="..\..\..\gdk\gdkapplaunchcontext.c" />
+   <File RelativePath="..\..\..\gdk\gdkcairo.c" />
+   <File RelativePath="..\..\..\gdk\gdkcolor.c" />
+   <File RelativePath="..\..\..\gdk\gdkcursor.c" />
+   <File RelativePath="..\..\..\gdk\gdkdeprecated.c" />
+   <File RelativePath="..\..\..\gdk\gdkdevice.c" />
+   <File RelativePath="..\..\..\gdk\gdkdevicemanager.c" />
+   <File RelativePath="..\..\..\gdk\gdkdisplay.c" />
+   <File RelativePath="..\..\..\gdk\gdkdisplaymanager.c" />
+   <File RelativePath="..\..\..\gdk\gdkdnd.c" />
+   <File RelativePath="..\..\..\gdk\gdkevents.c" />
+   <File RelativePath="..\..\..\gdk\gdkframetimings.c" />
+   <File RelativePath="..\..\..\gdk\gdkglobals.c" />
+   <File RelativePath="..\..\..\gdk\gdkkeys.c" />
+   <File RelativePath="..\..\..\gdk\gdkkeyuni.c" />
+   <File RelativePath="..\..\..\gdk\gdkoffscreenwindow.c" />
+   <File RelativePath="..\..\..\gdk\gdkframeclock.c" />
+   <File RelativePath="..\..\..\gdk\gdkframeclockidle.c" />
+   <File RelativePath="..\..\..\gdk\gdkpango.c" />
+   <File RelativePath="..\..\..\gdk\gdkpixbuf-drawable.c" />
+   <File RelativePath="..\..\..\gdk\gdkproperty.c" />
+   <File RelativePath="..\..\..\gdk\gdkrectangle.c" />
+   <File RelativePath="..\..\..\gdk\gdkrgba.c" />
+   <File RelativePath="..\..\..\gdk\gdkscreen.c" />
+   <File RelativePath="..\..\..\gdk\gdkselection.c" />
+   <File RelativePath="..\..\..\gdk\gdkvisual.c" />
+   <File RelativePath="..\..\..\gdk\gdkwindow.c" />
+   <File RelativePath="..\..\..\gdk\gdkwindowimpl.c" />
+   <File RelativePath="..\..\..\gdk\gdkenumtypes.c" />
+   <File RelativePath="..\..\..\gdk\gdkmarshalers.c" />
+   <File RelativePath="..\..\..\gdk\gdkkeynames.c" />
+  </Filter>
+ </Files>
+</VisualStudioProject>
diff --git a/build/win32/vs9/gtk.vcproj b/build/win32/vs9/gtk.vcproj
new file mode 100644
index 0000000..8e3d46e
--- /dev/null
+++ b/build/win32/vs9/gtk.vcproj
@@ -0,0 +1,533 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="gtk"
+ ProjectGUID="{FC5AADB5-95CD-4BF0-BA8B-0C16FE7073F5}"
+ RootNamespace="gtk"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="0"
+ >
+ <Platforms>
+  <Platform
+   Name="Win32"
+  />
+  <Platform
+   Name="x64"
+  />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+  <Configuration
+   Name="Debug|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="4"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="atk-1.0.lib pangowin32-1.0.lib imm32.lib winspool.lib comctl32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk"
+    PreprocessorDefinitions="$(GtkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="atk-1.0.lib pangowin32-1.0.lib imm32.lib winspool.lib comctl32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="1"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="atk-1.0.lib pangowin32-1.0.lib imm32.lib winspool.lib comctl32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="2"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    AdditionalIncludeDirectories="..\..\..\gdk;..\..\..\gdk\win32;..\..\..\gtk"
+    PreprocessorDefinitions="$(GtkDefines)"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+   <Tool
+    Name="VCLinkerTool"
+    AdditionalDependencies="atk-1.0.lib pangowin32-1.0.lib imm32.lib winspool.lib comctl32.lib"
+    OutputFile="$(OutDir)\$(GtkDllPrefix)$(ProjectName)$(GtkDllSuffix).dll"
+    LinkIncremental="1"
+    GenerateDebugInformation="true"
+    SubSystem="2"
+    OptimizeReferences="2"
+    EnableCOMDATFolding="2"
+    ImportLibrary="$(TargetDir)$(ProjectName)-$(ApiVersion).lib"
+    TargetMachine="17"
+   />
+  </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+  <Filter
+   Name="Header Files"
+   Filter="h;hpp;hxx;hm;inl;inc;xsd"
+   UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+   >
+  </Filter>
+  <Filter
+   Name="Resource Files"
+   Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
+   UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+   >
+   <File RelativePath="..\..\..\gtk\gtk-win32.rc" />
+  </Filter>
+  <Filter
+   Name="Source Files"
+   Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+   UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+   >
+   <File RelativePath="..\..\..\gtk\deprecated\gtkactivatable.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkaction.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkactiongroup.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkcolorsel.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkcolorseldialog.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkfontsel.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkgradient.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhandlebox.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhbbox.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhbox.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhpaned.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhscale.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhscrollbar.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhseparator.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkhsv.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkiconfactory.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkimagemenuitem.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkradioaction.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkrc.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkrecentaction.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkstock.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkstyle.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtksymboliccolor.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtktable.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtktearoffmenuitem.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtktoggleaction.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkuimanager.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvbbox.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvbox.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvscale.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvscrollbar.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvseparator.c" />
+   <File RelativePath="..\..\..\gtk\deprecated\gtkvpaned.c" />
+   <File RelativePath="..\..\..\gtk\gtkactionmuxer.c" />
+   <File RelativePath="..\..\..\gtk\gtkactionobserver.c" />
+   <File RelativePath="..\..\..\gtk\gtkactionobservable.c" />
+   <File RelativePath="..\..\..\gtk\gtkactionable.c" />
+   <File RelativePath="..\..\..\gtk\gtkquery.c" />
+   <File RelativePath="..\..\..\gtk\gtksearchbar.c" />
+   <File RelativePath="..\..\..\gtk\gtksearchentry.c" />
+   <File RelativePath="..\..\..\gtk\gtksearchengine.c" />
+   <File RelativePath="..\..\..\gtk\gtksearchenginesimple.c" />
+   <File RelativePath="..\..\..\gtk\fnmatch.c" />
+   <File RelativePath="..\..\..\gtk\gtkaboutdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkaccelgroup.c" />
+   <File RelativePath="..\..\..\gtk\gtkaccellabel.c" />
+   <File RelativePath="..\..\..\gtk\gtkaccelmap.c" />
+   <File RelativePath="..\..\..\gtk\gtkaccessible.c" />
+   <File RelativePath="..\..\..\gtk\gtkactionhelper.c" />
+   <File RelativePath="..\..\..\gtk\gtkadjustment.c" />
+   <File RelativePath="..\..\..\gtk\gtkalignment.c" />
+   <File RelativePath="..\..\..\gtk\gtkallocatedbitmask.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooser.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooserwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooserbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooserdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchoosermodule.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooseronline.c" />
+   <File RelativePath="..\..\..\gtk\gtkapplication.c" />
+   <File RelativePath="..\..\..\gtk\gtkapplicationwindow.c" />
+   <File RelativePath="..\..\..\gtk\gtkarrow.c" />
+   <File RelativePath="..\..\..\gtk\gtkaspectframe.c" />
+   <File RelativePath="..\..\..\gtk\gtkassistant.c" />
+   <File RelativePath="..\..\..\gtk\gtkbbox.c" />
+   <File RelativePath="..\..\..\gtk\gtkbin.c" />
+   <File RelativePath="..\..\..\gtk\gtkbindings.c" />
+   <File RelativePath="..\..\..\gtk\gtkbookmarksmanager.c" />
+   <File RelativePath="..\..\..\gtk\gtkborder.c" />
+   <File RelativePath="..\..\..\gtk\gtkborderimage.c" />
+   <File RelativePath="..\..\..\gtk\gtkbox.c" />
+   <File RelativePath="..\..\..\gtk\gtkbubblewindow.c" />
+   <File RelativePath="..\..\..\gtk\gtkbuildable.c" />
+   <File RelativePath="..\..\..\gtk\gtkbuilder.c" />
+   <File RelativePath="..\..\..\gtk\gtkbuilderparser.c" />
+   <File RelativePath="..\..\..\gtk\gtkbuilder-menus.c" />
+   <File RelativePath="..\..\..\gtk\gtkbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkcairoblur.c" />
+   <File RelativePath="..\..\..\gtk\gtkcalendar.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellarea.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellareabox.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellareaboxcontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellareacontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkcelleditable.c" />
+   <File RelativePath="..\..\..\gtk\gtkcelllayout.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrenderer.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrendereraccel.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrenderercombo.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrendererpixbuf.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrendererprogress.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrendererspin.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrendererspinner.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrenderertext.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellrenderertoggle.c" />
+   <File RelativePath="..\..\..\gtk\gtkcellview.c" />
+   <File RelativePath="..\..\..\gtk\gtkcheckbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkcheckmenuitem.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorchooser.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorchooserwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorchooserdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkcoloreditor.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorplane.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorscale.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorswatch.c" />
+   <File RelativePath="..\..\..\gtk\gtkcolorutils.c" />
+   <File RelativePath="..\..\..\gtk\gtkcombobox.c" />
+   <File RelativePath="..\..\..\gtk\gtkcomboboxtext.c" />
+   <File RelativePath="..\..\..\gtk\gtkcontainer.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssanimation.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssarrayvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssbgsizevalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssbordervalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsscolorvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsscomputedvalues.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsscornervalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsscustomproperty.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsseasevalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssenumvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssenginevalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimage.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagecrossfade.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagegradient.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagelinear.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagesurface.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimageurl.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagescaled.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagevalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssimagewin32.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssinheritvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssinitialvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsskeyframes.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsslookup.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssmatcher.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssnumbervalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssparser.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsspositionvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssprovider.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssrepeatvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssrgbavalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsssection.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssselector.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssstringvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssshadowsvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssshadowvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssshorthandproperty.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssshorthandpropertyimpl.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssstylefuncs.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssstyleproperty.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssstylepropertyimpl.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsstransition.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsstypedvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcssvalue.c" />
+   <File RelativePath="..\..\..\gtk\gtkcsstypes.c" />
+   <File RelativePath="..\..\..\gtk\gtkdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkdrawingarea.c" />
+   <File RelativePath="..\..\..\gtk\gtkeditable.c" />
+   <File RelativePath="..\..\..\gtk\gtkentry.c" />
+   <File RelativePath="..\..\..\gtk\gtkentrybuffer.c" />
+   <File RelativePath="..\..\..\gtk\gtkentrycompletion.c" />
+   <File RelativePath="..\..\..\gtk\gtkeventbox.c" />
+   <File RelativePath="..\..\..\gtk\gtkexpander.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooser.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserdefault.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserembed.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserentry.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserutils.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilechooserwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilefilter.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilesystem.c" />
+   <File RelativePath="..\..\..\gtk\gtkfilesystemmodel.c" />
+   <File RelativePath="..\..\..\gtk\gtkfixed.c" />
+   <File RelativePath="..\..\..\gtk\gtkfontbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkfontchooser.c" />
+   <File RelativePath="..\..\..\gtk\gtkfontchooserdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkfontchooserutils.c" />
+   <File RelativePath="..\..\..\gtk\gtkfontchooserwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkframe.c" />
+   <File RelativePath="..\..\..\gtk\gtkgladecatalog.c" />
+   <File RelativePath="..\..\..\gtk\gtkgrid.c" />
+   <File RelativePath="..\..\..\gtk\gtkheaderbar.c" />
+   <File RelativePath="..\..\..\gtk\gtkhsla.c" />
+   <File RelativePath="..\..\..\gtk\gtkiconcache.c" />
+   <File RelativePath="..\..\..\gtk\gtkiconcachevalidator.c" />
+   <File RelativePath="..\..\..\gtk\gtkiconhelper.c" />
+   <File RelativePath="..\..\..\gtk\gtkicontheme.c" />
+   <File RelativePath="..\..\..\gtk\gtkiconview.c" />
+   <File RelativePath="..\..\..\gtk\gtkimage.c" />
+   <File RelativePath="..\..\..\gtk\gtkimcontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkimcontextsimple.c" />
+   <File RelativePath="..\..\..\gtk\gtkimmodule.c" />
+   <File RelativePath="..\..\..\gtk\gtkimmulticontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkinfobar.c" />
+   <File RelativePath="..\..\..\gtk\gtkinvisible.c" />
+   <File RelativePath="..\..\..\gtk\gtkkeyhash.c" />
+   <File RelativePath="..\..\..\gtk\gtklabel.c" />
+   <File RelativePath="..\..\..\gtk\gtklayout.c" />
+   <File RelativePath="..\..\..\gtk\gtklevelbar.c" />
+   <File RelativePath="..\..\..\gtk\gtklinkbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtklistbox.c" />
+   <File RelativePath="..\..\..\gtk\gtkliststore.c" />
+   <File RelativePath="..\..\..\gtk\gtklockbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkmain.c" />
+   <File RelativePath="..\..\..\gtk\gtkmarshalers.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenu.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenubar.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenubutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenuitem.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenushell.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenutracker.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenutrackeritem.c" />
+   <File RelativePath="..\..\..\gtk\gtkmenutoolbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkmessagedialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkmisc.c" />
+   <File RelativePath="..\..\..\gtk\gtkmnemonichash.c" />
+   <File RelativePath="..\..\..\gtk\gtkmodelmenuitem.c" />
+   <File RelativePath="..\..\..\gtk\gtkmodifierstyle.c" />
+   <File RelativePath="..\..\..\gtk\gtkmodules.c" />
+   <File RelativePath="..\..\..\gtk\gtkmountoperation.c" />
+   <File RelativePath="..\..\..\gtk\gtknotebook.c" />
+   <File RelativePath="..\..\..\gtk\gtknumerableicon.c" />
+   <File RelativePath="..\..\..\gtk\gtkoffscreenwindow.c" />
+   <File RelativePath="..\..\..\gtk\gtkorientable.c" />
+   <File RelativePath="..\..\..\gtk\gtkoverlay.c" />
+   <File RelativePath="..\..\..\gtk\gtkpagesetup.c" />
+   <File RelativePath="..\..\..\gtk\gtkpaned.c" />
+   <File RelativePath="..\..\..\gtk\gtkpango.c" />
+   <File RelativePath="..\..\..\gtk\gtkpapersize.c" />
+   <File RelativePath="..\..\..\gtk\gtkpathbar.c" />
+   <File RelativePath="..\..\..\gtk\gtkplacessidebar.c" />
+   <File RelativePath="..\..\..\gtk\gtkpressandhold.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintcontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintoperation.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintoperationpreview.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintsettings.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintutils.c" />
+   <File RelativePath="..\..\..\gtk\gtkprivate.c" />
+   <File RelativePath="..\..\..\gtk\gtkprivatetypebuiltins.c" />
+   <File RelativePath="..\..\..\gtk\gtkprogressbar.c" />
+   <File RelativePath="..\..\..\gtk\gtkpixelcache.c" />
+   <File RelativePath="..\..\..\gtk\gtkradiobutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkradiomenuitem.c" />
+   <File RelativePath="..\..\..\gtk\gtkradiotoolbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkrange.c" />
+   <File RelativePath="..\..\..\gtk\gtkrbtree.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchooserdefault.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchooserdialog.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchoosermenu.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchooserwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchooserutils.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentchooser.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentfilter.c" />
+   <File RelativePath="..\..\..\gtk\gtkrecentmanager.c" />
+   <File RelativePath="..\..\..\gtk\gtkresources.c" />
+   <File RelativePath="..\..\..\gtk\gtkrevealer.c" />
+   <File RelativePath="..\..\..\gtk\gtkroundedbox.c" />
+   <File RelativePath="..\..\..\gtk\gtkscale.c" />
+   <File RelativePath="..\..\..\gtk\gtkscalebutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkscrollable.c" />
+   <File RelativePath="..\..\..\gtk\gtkscrollbar.c" />
+   <File RelativePath="..\..\..\gtk\gtkscrolledwindow.c" />
+   <File RelativePath="..\..\..\gtk\gtkselection.c" />
+   <File RelativePath="..\..\..\gtk\gtkseparator.c" />
+   <File RelativePath="..\..\..\gtk\gtkseparatormenuitem.c" />
+   <File RelativePath="..\..\..\gtk\gtkseparatortoolitem.c" />
+   <File RelativePath="..\..\..\gtk\gtksettings.c" />
+   <File RelativePath="..\..\..\gtk\gtksizegroup.c" />
+   <File RelativePath="..\..\..\gtk\gtksizerequest.c" />
+   <File RelativePath="..\..\..\gtk\gtksizerequestcache.c" />
+   <File RelativePath="..\..\..\gtk\gtkshow.c" />
+   <File RelativePath="..\..\..\gtk\gtkspinbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkspinner.c" />
+   <File RelativePath="..\..\..\gtk\gtkstack.c" />
+   <File RelativePath="..\..\..\gtk\gtkstackswitcher.c" />
+   <File RelativePath="..\..\..\gtk\gtkstatusbar.c" />
+   <File RelativePath="..\..\..\gtk\gtkstatusicon.c" />
+   <File RelativePath="..\..\..\gtk\gtkstyleanimation.c" />
+   <File RelativePath="..\..\..\gtk\gtkstylecascade.c" />
+   <File RelativePath="..\..\..\gtk\gtkstylecontext.c" />
+   <File RelativePath="..\..\..\gtk\gtkstyleproperties.c" />
+   <File RelativePath="..\..\..\gtk\gtkstyleproperty.c" />
+   <File RelativePath="..\..\..\gtk\gtkstyleprovider.c" />
+   <File RelativePath="..\..\..\gtk\gtkstyleproviderprivate.c" />
+   <File RelativePath="..\..\..\gtk\gtkswitch.c" />
+   <File RelativePath="..\..\..\gtk\gtktestutils.c" />
+   <File RelativePath="..\..\..\gtk\gtktextattributes.c" />
+   <File RelativePath="..\..\..\gtk\gtktextbtree.c" />
+   <File RelativePath="..\..\..\gtk\gtktextbuffer.c" />
+   <File RelativePath="..\..\..\gtk\gtktextbufferrichtext.c" />
+   <File RelativePath="..\..\..\gtk\gtktextbufferserialize.c" />
+   <File RelativePath="..\..\..\gtk\gtktextchild.c" />
+   <File RelativePath="..\..\..\gtk\gtktextdisplay.c" />
+   <File RelativePath="..\..\..\gtk\gtktexthandle.c" />
+   <File RelativePath="..\..\..\gtk\gtktextiter.c" />
+   <File RelativePath="..\..\..\gtk\gtktextlayout.c" />
+   <File RelativePath="..\..\..\gtk\gtktextmark.c" />
+   <File RelativePath="..\..\..\gtk\gtktextsegment.c" />
+   <File RelativePath="..\..\..\gtk\gtktexttag.c" />
+   <File RelativePath="..\..\..\gtk\gtktexttagtable.c" />
+   <File RelativePath="..\..\..\gtk\gtktexttypes.c" />
+   <File RelativePath="..\..\..\gtk\gtktextutil.c" />
+   <File RelativePath="..\..\..\gtk\gtktextview.c" />
+   <File RelativePath="..\..\..\gtk\gtkthemingbackground.c" />
+   <File RelativePath="..\..\..\gtk\gtkthemingengine.c" />
+   <File RelativePath="..\..\..\gtk\gtktogglebutton.c" />
+   <File RelativePath="..\..\..\gtk\gtktoggletoolbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolbar.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolbutton.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolitem.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolitemgroup.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolpalette.c" />
+   <File RelativePath="..\..\..\gtk\gtktoolshell.c" />
+   <File RelativePath="..\..\..\gtk\gtktooltip.c" />
+   <File RelativePath="..\..\..\gtk\gtktrashmonitor.c" />
+   <File RelativePath="..\..\..\gtk\gtktreedatalist.c" />
+   <File RelativePath="..\..\..\gtk\gtktreednd.c" />
+   <File RelativePath="..\..\..\gtk\gtktreemenu.c" />
+   <File RelativePath="..\..\..\gtk\gtktreemodel.c" />
+   <File RelativePath="..\..\..\gtk\gtktreemodelfilter.c" />
+   <File RelativePath="..\..\..\gtk\gtktreemodelsort.c" />
+   <File RelativePath="..\..\..\gtk\gtktreeselection.c" />
+   <File RelativePath="..\..\..\gtk\gtktreesortable.c" />
+   <File RelativePath="..\..\..\gtk\gtktreestore.c" />
+   <File RelativePath="..\..\..\gtk\gtktreeview.c" />
+   <File RelativePath="..\..\..\gtk\gtktreeviewcolumn.c" />
+   <File RelativePath="..\..\..\gtk\gtktypebuiltins.c" />
+   <File RelativePath="..\..\..\gtk\gtkvolumebutton.c" />
+   <File RelativePath="..\..\..\gtk\gtkviewport.c" />
+   <File RelativePath="..\..\..\gtk\gtkwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkwidgetpath.c" />
+   <File RelativePath="..\..\..\gtk\gtkwindow.c" />
+   <File RelativePath="..\..\..\gtk\gtkwin32theme.c" />
+   <File RelativePath="..\..\..\gtk\gtkclipboard.c" />
+   <File RelativePath="..\..\..\gtk\gtkclipboard-wayland.c" />
+   <File RelativePath="..\..\..\gtk\gtkdnd.c" />
+   <File RelativePath="..\..\..\gtk\gtkappchooseronlinepk.c" />
+   <File RelativePath="..\..\..\gtk\gtkprint-win32.c" />
+   <File RelativePath="..\..\..\gtk\gtkprintoperation-win32.c" />
+   <File RelativePath="..\..\..\gtk\gtkwin32.c" />
+   <File RelativePath="..\..\..\gtk\gtkwin32embed.c" />
+   <File RelativePath="..\..\..\gtk\gtkwin32embedwidget.c" />
+   <File RelativePath="..\..\..\gtk\gtkmountoperation-stub.c" />
+   <File RelativePath="..\..\..\gtk\gtkdbusgenerated.c" />
+   <File RelativePath="..\..\..\modules\input\gtkimcontextime.c" />
+   <File RelativePath="..\..\..\modules\input\gtkimcontextmultipress.c" />
+   <File RelativePath="..\..\..\modules\input\gtkimcontextthai.c" />
+   <File RelativePath="..\..\..\modules\input\imam-et.c" />
+   <File RelativePath="..\..\..\modules\input\imcedilla.c" />
+   <File RelativePath="..\..\..\modules\input\imcyrillic-translit.c" />
+   <File RelativePath="..\..\..\modules\input\imime.c" />
+   <File RelativePath="..\..\..\modules\input\iminuktitut.c" />
+   <File RelativePath="..\..\..\modules\input\imipa.c" />
+   <File RelativePath="..\..\..\modules\input\immultipress.c" />
+   <File RelativePath="..\..\..\modules\input\imthai.c" />
+   <File RelativePath="..\..\..\modules\input\imti-er.c" />
+   <File RelativePath="..\..\..\modules\input\imti-et.c" />
+   <File RelativePath="..\..\..\modules\input\imviqr.c" />
+   <File RelativePath="..\..\..\modules\input\thai-charprop.c" />
+  </Filter>
+ </Files>
+</VisualStudioProject>
diff --git a/build/win32/vs9/gtka11y.vcproj b/build/win32/vs9/gtka11y.vcproj
new file mode 100644
index 0000000..5ddd7cd
--- /dev/null
+++ b/build/win32/vs9/gtka11y.vcproj
@@ -0,0 +1,271 @@
+<?xml version="1.0" encoding="big5"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="gtka11y"
+ ProjectGUID="{F756B0DB-40A1-4E9F-BE1F-8F02CB86EA46}"
+ RootNamespace="gtka11y"
+ Keyword="Win32Proj"
+ TargetFrameworkVersion="196613"
+ >
+ <Platforms>
+  <Platform
+   Name="Win32"
+  />
+  <Platform
+   Name="x64"
+  />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+  <Configuration
+   Name="Debug|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtkprebuild.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="4"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug_Broadway|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="4"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtkprebuild.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+  <Configuration
+   Name="Debug_Broadway|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="0"
+    PreprocessorDefinitions="_DEBUG;G_ENABLE_DEBUG;$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    MinimalRebuild="true"
+    BasicRuntimeChecks="3"
+    RuntimeLibrary="3"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtkprebuild.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="2"
+    EnableIntrinsicFunctions="true"
+    PreprocessorDefinitions="$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    RuntimeLibrary="2"
+    EnableFunctionLevelLinking="true"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release_Broadway|Win32"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    Optimization="2"
+    EnableIntrinsicFunctions="true"
+    PreprocessorDefinitions="$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    RuntimeLibrary="2"
+    EnableFunctionLevelLinking="true"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops;.\gtkprebuild.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    PreprocessorDefinitions="$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+  <Configuration
+   Name="Release_Broadway|x64"
+   InheritedPropertySheets=".\gtk-build-defines.vsprops"
+   ConfigurationType="4"
+   CharacterSet="2"
+   WholeProgramOptimization="1"
+   >
+   <Tool
+    Name="VCPreBuildEventTool"
+   />
+   <Tool
+    Name="VCCLCompilerTool"
+    PreprocessorDefinitions="$(GtkDefines)"
+    AdditionalIncludeDirectories="..\..\..\gtk;..\..\..\gdk;..\..\..\gdk\win32"
+    RuntimeLibrary="2"
+    UsePrecompiledHeader="0"
+    WarningLevel="3"
+    DebugInformationFormat="3"
+   />
+  </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+  <Filter
+   Name="Sources"
+   Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+   UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+   >
+   <File RelativePath="..\..\..\gtk\a11y\gtkaccessibility.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkaccessibilitymisc.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkaccessibilityutil.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkarrowaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkbooleancellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkbuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcellaccessibleparent.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcheckmenuitemaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcolorswatchaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcomboboxaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcontaineraccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkcontainercellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkentryaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkexpanderaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkframeaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkiconviewaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkimageaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkimagecellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklabelaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklevelbaraccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklinkbuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklistboxaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklistboxrowaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtklockbuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkmenuaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkmenushellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkmenuitemaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtknotebookaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtknotebookpageaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkpanedaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkprogressbaraccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkradiobuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkradiomenuitemaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkrangeaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkrenderercellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkscaleaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkscalebuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkscrolledwindowaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkspinbuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkspinneraccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkstatusbaraccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkswitchaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtktextcellaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtktextviewaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtktogglebuttonaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtktoplevelaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtktreeviewaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkwidgetaccessible.c" />
+   <File RelativePath="..\..\..\gtk\a11y\gtkwindowaccessible.c" />
+  </Filter>
+  <Filter
+   Name="Headers"
+   Filter="h;hpp;hxx;hm;inl;inc;xsd"
+   UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+   >
+  </Filter>
+  <Filter
+   Name="Resource Files"
+   Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+   UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+   >
+  </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
diff --git a/configure.ac b/configure.ac
index d10fb43..75e2b5a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,8 +10,8 @@
 
 m4_define([gtk_major_version], [3])
 m4_define([gtk_minor_version], [10])
-m4_define([gtk_micro_version], [3])
-m4_define([gtk_interface_age], [3])
+m4_define([gtk_micro_version], [4])
+m4_define([gtk_interface_age], [4])
 m4_define([gtk_binary_age],
           [m4_eval(100 * gtk_minor_version + gtk_micro_version)])
 m4_define([gtk_version],
diff --git a/docs/reference/gdk/.libs/gdk3-scan b/docs/reference/gdk/.libs/gdk3-scan
new file mode 100755
index 0000000..b240939
Binary files /dev/null and b/docs/reference/gdk/.libs/gdk3-scan differ
diff --git a/docs/reference/gdk/.libs/gdk3-scan.o b/docs/reference/gdk/.libs/gdk3-scan.o
new file mode 100644
index 0000000..ab499c1
Binary files /dev/null and b/docs/reference/gdk/.libs/gdk3-scan.o differ
diff --git a/docs/reference/gdk/.libs/lt-gdk3-scan b/docs/reference/gdk/.libs/lt-gdk3-scan
new file mode 100755
index 0000000..707d0aa
Binary files /dev/null and b/docs/reference/gdk/.libs/lt-gdk3-scan differ
diff --git a/docs/reference/gtk/.libs/gtk3-scan b/docs/reference/gtk/.libs/gtk3-scan
new file mode 100755
index 0000000..de9f6bc
Binary files /dev/null and b/docs/reference/gtk/.libs/gtk3-scan differ
diff --git a/docs/reference/gtk/.libs/gtk3-scan.o b/docs/reference/gtk/.libs/gtk3-scan.o
new file mode 100644
index 0000000..ce7b2a1
Binary files /dev/null and b/docs/reference/gtk/.libs/gtk3-scan.o differ
diff --git a/docs/reference/gtk/.libs/lt-gtk3-scan b/docs/reference/gtk/.libs/lt-gtk3-scan
new file mode 100755
index 0000000..3b22f2d
Binary files /dev/null and b/docs/reference/gtk/.libs/lt-gtk3-scan differ
diff --git a/docs/reference/gtk/gtk3-overrides.txt b/docs/reference/gtk/gtk3-overrides.txt
new file mode 100644
index 0000000..e69de29
diff --git a/docs/reference/libgail-util/gail-libgail-util3-overrides.txt 
b/docs/reference/libgail-util/gail-libgail-util3-overrides.txt
new file mode 100644
index 0000000..e69de29
diff --git a/gtk+-3.10.3.tar.xz b/gtk+-3.10.3.tar.xz
new file mode 100644
index 0000000..9631f2d
Binary files /dev/null and b/gtk+-3.10.3.tar.xz differ
diff --git a/m4/gtk-doc.m4 b/m4/gtk-doc.m4
new file mode 120000
index 0000000..5e47957
--- /dev/null
+++ b/m4/gtk-doc.m4
@@ -0,0 +1 @@
+/home/mclasen/gnome/share/aclocal/gtk-doc.m4
\ No newline at end of file
diff --git a/po-properties/gtk30-properties.pot b/po-properties/gtk30-properties.pot
new file mode 100644
index 0000000..4e7d0b5
--- /dev/null
+++ b/po-properties/gtk30-properties.pot
@@ -0,0 +1,8233 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-11-11 09:41-0500\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL ADDRESS>\n"
+"Language-Team: LANGUAGE <LL li org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: gdk/gdkapplaunchcontext.c:129 gdk/gdkcursor.c:139
+#: gdk/gdkdevicemanager.c:170
+msgid "Display"
+msgstr ""
+
+#: gdk/gdkcursor.c:131
+msgid "Cursor type"
+msgstr ""
+
+#: gdk/gdkcursor.c:132
+msgid "Standard cursor type"
+msgstr ""
+
+#: gdk/gdkcursor.c:140
+msgid "Display of this cursor"
+msgstr ""
+
+#: gdk/gdkdevice.c:112
+msgid "Device Display"
+msgstr ""
+
+#: gdk/gdkdevice.c:113
+msgid "Display which the device belongs to"
+msgstr ""
+
+#: gdk/gdkdevice.c:127
+msgid "Device manager"
+msgstr ""
+
+#: gdk/gdkdevice.c:128
+msgid "Device manager which the device belongs to"
+msgstr ""
+
+#: gdk/gdkdevice.c:142 gdk/gdkdevice.c:143
+msgid "Device name"
+msgstr ""
+
+#: gdk/gdkdevice.c:157
+msgid "Device type"
+msgstr ""
+
+#: gdk/gdkdevice.c:158
+msgid "Device role in the device manager"
+msgstr ""
+
+#: gdk/gdkdevice.c:174
+msgid "Associated device"
+msgstr ""
+
+#: gdk/gdkdevice.c:175
+msgid "Associated pointer or keyboard with this device"
+msgstr ""
+
+#: gdk/gdkdevice.c:188
+msgid "Input source"
+msgstr ""
+
+#: gdk/gdkdevice.c:189
+msgid "Source type for the device"
+msgstr ""
+
+#: gdk/gdkdevice.c:204 gdk/gdkdevice.c:205
+msgid "Input mode for the device"
+msgstr ""
+
+#: gdk/gdkdevice.c:220
+msgid "Whether the device has a cursor"
+msgstr ""
+
+#: gdk/gdkdevice.c:221
+msgid "Whether there is a visible cursor following device motion"
+msgstr ""
+
+#: gdk/gdkdevice.c:235 gdk/gdkdevice.c:236
+msgid "Number of axes in the device"
+msgstr ""
+
+#: gdk/gdkdevicemanager.c:171
+msgid "Display for the device manager"
+msgstr ""
+
+#: gdk/gdkdisplaymanager.c:166
+msgid "Default Display"
+msgstr ""
+
+#: gdk/gdkdisplaymanager.c:167
+msgid "The default display for GDK"
+msgstr ""
+
+#: gdk/gdkscreen.c:91
+msgid "Font options"
+msgstr ""
+
+#: gdk/gdkscreen.c:92
+msgid "The default font options for the screen"
+msgstr ""
+
+#: gdk/gdkscreen.c:99
+msgid "Font resolution"
+msgstr ""
+
+#: gdk/gdkscreen.c:100
+msgid "The resolution for fonts on the screen"
+msgstr ""
+
+#: gdk/gdkwindow.c:322 gdk/gdkwindow.c:323
+msgid "Cursor"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:112
+msgid "Opcode"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:113
+msgid "Opcode for XInput2 requests"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:119
+msgid "Major"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:120
+msgid "Major version number"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:126
+msgid "Minor"
+msgstr ""
+
+#: gdk/x11/gdkdevicemanager-xi2.c:127
+msgid "Minor version number"
+msgstr ""
+
+#: gdk/x11/gdkdevice-xi2.c:142
+msgid "Device ID"
+msgstr ""
+
+#: gdk/x11/gdkdevice-xi2.c:143
+msgid "Device identifier"
+msgstr ""
+
+#: gtk/a11y/gtkrenderercellaccessible.c:97
+msgid "Cell renderer"
+msgstr ""
+
+#: gtk/a11y/gtkrenderercellaccessible.c:98
+msgid "The cell renderer represented by this accessible"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:238 gtk/deprecated/gtkactiongroup.c:203
+#: gtk/gtkprinter.c:121 gtk/gtkstack.c:389 gtk/gtktextmark.c:126
+#: gtk/gtkthemingengine.c:262
+msgid "Name"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:239
+msgid "A unique name for the action."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:259 gtk/gtkbutton.c:252 gtk/gtkexpander.c:288
+#: gtk/gtkframe.c:171 gtk/gtklabel.c:729 gtk/gtkmenuitem.c:448
+#: gtk/gtktoolbutton.c:239 gtk/gtktoolitemgroup.c:1593
+msgid "Label"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:260
+msgid "The label used for menu items and buttons that activate this action."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:279
+msgid "Short label"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:280
+msgid "A shorter label that may be used on toolbar buttons."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:295
+msgid "Tooltip"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:296
+msgid "A tooltip for this action."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:314
+msgid "Stock Icon"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:315
+msgid "The stock icon displayed in widgets representing this action."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:337 gtk/gtkstatusicon.c:267
+msgid "GIcon"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:338 gtk/gtkcellrendererpixbuf.c:257
+#: gtk/gtkimage.c:344 gtk/gtkstatusicon.c:268
+msgid "The GIcon being displayed"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:360 gtk/gtkcellrendererpixbuf.c:222
+#: gtk/gtkimage.c:326 gtk/gtkprinter.c:170 gtk/gtkstatusicon.c:251
+#: gtk/gtkwindow.c:847
+msgid "Icon Name"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:361 gtk/gtkcellrendererpixbuf.c:223
+#: gtk/gtkimage.c:327 gtk/gtkstatusicon.c:252
+msgid "The name of the icon from the icon theme"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:376 gtk/gtktoolitem.c:194
+msgid "Visible when horizontal"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:377 gtk/gtktoolitem.c:195
+msgid ""
+"Whether the toolbar item is visible when the toolbar is in a horizontal "
+"orientation."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:395
+msgid "Visible when overflown"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:396
+msgid ""
+"When TRUE, toolitem proxies for this action are represented in the toolbar "
+"overflow menu."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:412 gtk/gtktoolitem.c:201
+msgid "Visible when vertical"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:413 gtk/gtktoolitem.c:202
+msgid ""
+"Whether the toolbar item is visible when the toolbar is in a vertical "
+"orientation."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:429 gtk/gtktoolitem.c:208
+msgid "Is important"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:430
+msgid ""
+"Whether the action is considered important. When TRUE, toolitem proxies for "
+"this action show text in GTK_TOOLBAR_BOTH_HORIZ mode."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:446
+msgid "Hide if empty"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:447
+msgid "When TRUE, empty menu proxies for this action are hidden."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:461 gtk/deprecated/gtkactiongroup.c:217
+#: gtk/gtkcellrenderer.c:301 gtk/gtkwidget.c:1191
+msgid "Sensitive"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:462
+msgid "Whether the action is enabled."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:476 gtk/deprecated/gtkactiongroup.c:231
+#: gtk/gtkstatusicon.c:302 gtk/gtktreeviewcolumn.c:246 gtk/gtkwidget.c:1184
+msgid "Visible"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:477
+msgid "Whether the action is visible."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:492
+msgid "Action Group"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:493
+msgid ""
+"The GtkActionGroup this GtkAction is associated with, or NULL (for internal "
+"use)."
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:514 gtk/deprecated/gtkimagemenuitem.c:205
+#: gtk/gtkbutton.c:378
+msgid "Always show image"
+msgstr ""
+
+#: gtk/deprecated/gtkaction.c:515 gtk/deprecated/gtkimagemenuitem.c:206
+#: gtk/gtkbutton.c:379
+msgid "Whether the image will always be shown"
+msgstr ""
+
+#: gtk/deprecated/gtkactiongroup.c:204
+msgid "A name for the action group."
+msgstr ""
+
+#: gtk/deprecated/gtkactiongroup.c:218
+msgid "Whether the action group is enabled."
+msgstr ""
+
+#: gtk/deprecated/gtkactiongroup.c:232
+msgid "Whether the action group is visible."
+msgstr ""
+
+#: gtk/deprecated/gtkactiongroup.c:245
+msgid "Accelerator Group"
+msgstr ""
+
+#: gtk/deprecated/gtkactiongroup.c:246
+msgid "The accelerator group the actions of this group should use."
+msgstr ""
+
+#: gtk/deprecated/gtkactivatable.c:292
+msgid "Related Action"
+msgstr ""
+
+#: gtk/deprecated/gtkactivatable.c:293
+msgid "The action this activatable will activate and receive updates from"
+msgstr ""
+
+#: gtk/deprecated/gtkactivatable.c:317
+msgid "Use Action Appearance"
+msgstr ""
+
+#: gtk/deprecated/gtkactivatable.c:318
+msgid "Whether to use the related actions appearance properties"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:323
+msgid "Has Opacity Control"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:324
+msgid "Whether the color selector should allow setting opacity"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:330
+msgid "Has palette"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:331
+msgid "Whether a palette should be used"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:345 gtk/gtkcolorbutton.c:204
+msgid "Current Color"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:346
+msgid "The current color"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:352 gtk/gtkcolorbutton.c:219
+msgid "Current Alpha"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:353
+msgid "The current opacity value (0 fully transparent, 65535 fully opaque)"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:367
+msgid "Current RGBA"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorsel.c:368
+msgid "The current RGBA color"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:137
+msgid "Color Selection"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:138
+msgid "The color selection embedded in the dialog."
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:144
+msgid "OK Button"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:145
+msgid "The OK button of the dialog."
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:151
+msgid "Cancel Button"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:152
+msgid "The cancel button of the dialog."
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:158
+msgid "Help Button"
+msgstr ""
+
+#: gtk/deprecated/gtkcolorseldialog.c:159
+msgid "The help button of the dialog."
+msgstr ""
+
+#: gtk/deprecated/gtkfontsel.c:240 gtk/gtkfontbutton.c:452
+msgid "Font name"
+msgstr ""
+
+#: gtk/deprecated/gtkfontsel.c:241
+msgid "The string that represents this font"
+msgstr ""
+
+#: gtk/deprecated/gtkfontsel.c:247 gtk/gtkfontchooser.c:91
+msgid "Preview text"
+msgstr ""
+
+#: gtk/deprecated/gtkfontsel.c:248 gtk/gtkfontchooser.c:92
+msgid "The text to display in order to demonstrate the selected font"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:224 gtk/gtkcombobox.c:1072 gtk/gtkentry.c:909
+#: gtk/gtkmenubar.c:216 gtk/gtkstatusbar.c:174 gtk/gtktoolbar.c:631
+#: gtk/gtkviewport.c:163
+msgid "Shadow type"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:225
+msgid "Appearance of the shadow that surrounds the container"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:233
+msgid "Handle position"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:234
+msgid "Position of the handle relative to the child widget"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:242
+msgid "Snap edge"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:243
+msgid ""
+"Side of the handlebox that's lined up with the docking point to dock the "
+"handlebox"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:251
+msgid "Snap edge set"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:252
+msgid ""
+"Whether to use the value from the snap_edge property or a value derived from "
+"handle_position"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:259
+msgid "Child Detached"
+msgstr ""
+
+#: gtk/deprecated/gtkhandlebox.c:260
+msgid ""
+"A boolean value indicating whether the handlebox's child is attached or "
+"detached."
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:168 gtk/gtkbutton.c:343
+msgid "Image widget"
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:169
+msgid "Child widget to appear next to the menu text"
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:185 gtk/gtkbutton.c:273
+msgid "Use stock"
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:186
+msgid "Whether to use the label text to create a stock menu item"
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:222 gtk/gtkmenu.c:572
+msgid "Accel Group"
+msgstr ""
+
+#: gtk/deprecated/gtkimagemenuitem.c:223
+msgid "The Accel Group to use for stock accelerator keys"
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:120
+msgid "The value"
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:121
+msgid ""
+"The value returned by gtk_radio_action_get_current_value() when this action "
+"is the current action of its group."
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:139 gtk/gtkradiobutton.c:163
+#: gtk/gtkradiomenuitem.c:408 gtk/gtkradiotoolbutton.c:80
+msgid "Group"
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:140
+msgid "The radio action whose group this action belongs to."
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:157
+msgid "The current value"
+msgstr ""
+
+#: gtk/deprecated/gtkradioaction.c:158
+msgid ""
+"The value property of the currently active member of the group to which this "
+"action belongs."
+msgstr ""
+
+#: gtk/deprecated/gtkrecentaction.c:645 gtk/gtkrecentchoosermenu.c:244
+msgid "Show Numbers"
+msgstr ""
+
+#: gtk/deprecated/gtkrecentaction.c:646 gtk/gtkrecentchoosermenu.c:245
+msgid "Whether the items should be displayed with a number"
+msgstr ""
+
+#: gtk/deprecated/gtkstyle.c:470
+msgid "Style context"
+msgstr ""
+
+#: gtk/deprecated/gtkstyle.c:471
+msgid "GtkStyleContext to get style from"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:191
+msgid "Rows"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:192
+msgid "The number of rows in the table"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:200
+msgid "Columns"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:201
+msgid "The number of columns in the table"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:209 gtk/gtkgrid.c:1715
+msgid "Row spacing"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:210 gtk/gtkgrid.c:1716
+msgid "The amount of space between two consecutive rows"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:218 gtk/gtkgrid.c:1722
+msgid "Column spacing"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:219 gtk/gtkgrid.c:1723
+msgid "The amount of space between two consecutive columns"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:227 gtk/gtkbox.c:258 gtk/gtkstack.c:358
+#: gtk/gtktoolbar.c:563 gtk/gtktoolitemgroup.c:1646
+msgid "Homogeneous"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:228
+msgid "If TRUE, the table cells are all the same width/height"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:235 gtk/gtkgrid.c:1750
+msgid "Left attachment"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:236 gtk/gtkgrid.c:1751 gtk/gtkmenu.c:760
+msgid "The column number to attach the left side of the child to"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:242
+msgid "Right attachment"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:243
+msgid "The column number to attach the right side of a child widget to"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:249 gtk/gtkgrid.c:1757
+msgid "Top attachment"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:250
+msgid "The row number to attach the top of a child widget to"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:256
+msgid "Bottom attachment"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:257 gtk/gtkmenu.c:784
+msgid "The row number to attach the bottom of the child to"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:263
+msgid "Horizontal options"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:264
+msgid "Options specifying the horizontal behaviour of the child"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:270
+msgid "Vertical options"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:271
+msgid "Options specifying the vertical behaviour of the child"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:277
+msgid "Horizontal padding"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:278
+msgid ""
+"Extra space to put between the child and its left and right neighbors, in "
+"pixels"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:284
+msgid "Vertical padding"
+msgstr ""
+
+#: gtk/deprecated/gtktable.c:285
+msgid ""
+"Extra space to put between the child and its upper and lower neighbors, in "
+"pixels"
+msgstr ""
+
+#: gtk/deprecated/gtktoggleaction.c:120
+msgid "Create the same proxies as a radio action"
+msgstr ""
+
+#: gtk/deprecated/gtktoggleaction.c:121
+msgid "Whether the proxies for this action look like radio action proxies"
+msgstr ""
+
+#: gtk/deprecated/gtktoggleaction.c:137 gtk/gtkcellrendererspinner.c:125
+#: gtk/gtkcheckmenuitem.c:122 gtk/gtkmenu.c:557 gtk/gtkspinner.c:113
+#: gtk/gtkswitch.c:834 gtk/gtktogglebutton.c:176 gtk/gtktoggletoolbutton.c:127
+msgid "Active"
+msgstr ""
+
+#: gtk/deprecated/gtktoggleaction.c:138
+msgid "Whether the toggle action should be active"
+msgstr ""
+
+#: gtk/deprecated/gtkuimanager.c:485 gtk/gtkcombobox.c:836
+msgid "Add tearoffs to menus"
+msgstr ""
+
+#: gtk/deprecated/gtkuimanager.c:486
+msgid "Whether tearoff menu items should be added to menus"
+msgstr ""
+
+#: gtk/deprecated/gtkuimanager.c:493
+msgid "Merged UI definition"
+msgstr ""
+
+#: gtk/deprecated/gtkuimanager.c:494
+msgid "An XML string describing the merged UI"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:305
+msgid "Program name"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:306
+msgid ""
+"The name of the program. If this is not set, it defaults to "
+"g_get_application_name()"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:320
+msgid "Program version"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:321
+msgid "The version of the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:335
+msgid "Copyright string"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:336
+msgid "Copyright information for the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:353
+msgid "Comments string"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:354
+msgid "Comments about the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:404
+msgid "License Type"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:405
+msgid "The license type of the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:421
+msgid "Website URL"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:422
+msgid "The URL for the link to the website of the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:436
+msgid "Website label"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:437
+msgid "The label for the link to the website of the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:453
+msgid "Authors"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:454
+msgid "List of authors of the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:470
+msgid "Documenters"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:471
+msgid "List of people documenting the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:487
+msgid "Artists"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:488
+msgid "List of people who have contributed artwork to the program"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:505
+msgid "Translator credits"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:506
+msgid ""
+"Credits to the translators. This string should be marked as translatable"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:521
+msgid "Logo"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:522
+msgid ""
+"A logo for the about box. If this is not set, it defaults to "
+"gtk_window_get_default_icon_list()"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:537
+msgid "Logo Icon Name"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:538
+msgid "A named icon to use as the logo for the about box."
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:551
+msgid "Wrap license"
+msgstr ""
+
+#: gtk/gtkaboutdialog.c:552
+msgid "Whether to wrap the license text."
+msgstr ""
+
+#: gtk/gtkaccellabel.c:188
+msgid "Accelerator Closure"
+msgstr ""
+
+#: gtk/gtkaccellabel.c:189
+msgid "The closure to be monitored for accelerator changes"
+msgstr ""
+
+#: gtk/gtkaccellabel.c:195
+msgid "Accelerator Widget"
+msgstr ""
+
+#: gtk/gtkaccellabel.c:196
+msgid "The widget to be monitored for accelerator changes"
+msgstr ""
+
+#: gtk/gtkaccessible.c:156 gtk/gtktreeviewcolumn.c:354
+msgid "Widget"
+msgstr ""
+
+#: gtk/gtkaccessible.c:157
+msgid "The widget referenced by this accessible."
+msgstr ""
+
+#: gtk/gtkactionable.c:70
+msgid "action name"
+msgstr ""
+
+#: gtk/gtkactionable.c:71
+msgid "The name of the associated action, like 'app.quit'"
+msgstr ""
+
+#: gtk/gtkactionable.c:75
+msgid "action target value"
+msgstr ""
+
+#: gtk/gtkactionable.c:76
+msgid "The parameter for action invocations"
+msgstr ""
+
+#: gtk/gtkadjustment.c:121 gtk/gtkcellrendererprogress.c:137
+#: gtk/gtkscalebutton.c:228 gtk/gtkspinbutton.c:410
+msgid "Value"
+msgstr ""
+
+#: gtk/gtkadjustment.c:122
+msgid "The value of the adjustment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:138
+msgid "Minimum Value"
+msgstr ""
+
+#: gtk/gtkadjustment.c:139
+msgid "The minimum value of the adjustment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:158
+msgid "Maximum Value"
+msgstr ""
+
+#: gtk/gtkadjustment.c:159
+msgid "The maximum value of the adjustment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:175
+msgid "Step Increment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:176
+msgid "The step increment of the adjustment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:192
+msgid "Page Increment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:193
+msgid "The page increment of the adjustment"
+msgstr ""
+
+#: gtk/gtkadjustment.c:212
+msgid "Page Size"
+msgstr ""
+
+#: gtk/gtkadjustment.c:213
+msgid "The page size of the adjustment"
+msgstr ""
+
+#: gtk/gtkalignment.c:142
+msgid "Horizontal alignment"
+msgstr ""
+
+#: gtk/gtkalignment.c:143 gtk/gtkbutton.c:308
+msgid ""
+"Horizontal position of child in available space. 0.0 is left aligned, 1.0 is "
+"right aligned"
+msgstr ""
+
+#: gtk/gtkalignment.c:152
+msgid "Vertical alignment"
+msgstr ""
+
+#: gtk/gtkalignment.c:153 gtk/gtkbutton.c:327
+msgid ""
+"Vertical position of child in available space. 0.0 is top aligned, 1.0 is "
+"bottom aligned"
+msgstr ""
+
+#: gtk/gtkalignment.c:161
+msgid "Horizontal scale"
+msgstr ""
+
+#: gtk/gtkalignment.c:162
+msgid ""
+"If available horizontal space is bigger than needed for the child, how much "
+"of it to use for the child. 0.0 means none, 1.0 means all"
+msgstr ""
+
+#: gtk/gtkalignment.c:170
+msgid "Vertical scale"
+msgstr ""
+
+#: gtk/gtkalignment.c:171
+msgid ""
+"If available vertical space is bigger than needed for the child, how much of "
+"it to use for the child. 0.0 means none, 1.0 means all"
+msgstr ""
+
+#: gtk/gtkalignment.c:188
+msgid "Top Padding"
+msgstr ""
+
+#: gtk/gtkalignment.c:189
+msgid "The padding to insert at the top of the widget."
+msgstr ""
+
+#: gtk/gtkalignment.c:205
+msgid "Bottom Padding"
+msgstr ""
+
+#: gtk/gtkalignment.c:206
+msgid "The padding to insert at the bottom of the widget."
+msgstr ""
+
+#: gtk/gtkalignment.c:222
+msgid "Left Padding"
+msgstr ""
+
+#: gtk/gtkalignment.c:223
+msgid "The padding to insert at the left of the widget."
+msgstr ""
+
+#: gtk/gtkalignment.c:239
+msgid "Right Padding"
+msgstr ""
+
+#: gtk/gtkalignment.c:240
+msgid "The padding to insert at the right of the widget."
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:615
+msgid "Include an 'Other…' item"
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:616
+msgid ""
+"Whether the combobox should include an item that triggers a "
+"GtkAppChooserDialog"
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:632
+msgid "Show default item"
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:633
+msgid "Whether the combobox should show the default application on top"
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:646 gtk/gtkappchooserdialog.c:652
+msgid "Heading"
+msgstr ""
+
+#: gtk/gtkappchooserbutton.c:647 gtk/gtkappchooserdialog.c:653
+msgid "The text to show at the top of the dialog"
+msgstr ""
+
+#: gtk/gtkappchooser.c:73
+msgid "Content type"
+msgstr ""
+
+#: gtk/gtkappchooser.c:74
+msgid "The content type used by the open with object"
+msgstr ""
+
+#: gtk/gtkappchooserdialog.c:638
+msgid "GFile"
+msgstr ""
+
+#: gtk/gtkappchooserdialog.c:639
+msgid "The GFile used by the app chooser dialog"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:944
+msgid "Show default app"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:945
+msgid "Whether the widget should show the default application"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:959
+msgid "Show recommended apps"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:960
+msgid "Whether the widget should show recommended applications"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:974
+msgid "Show fallback apps"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:975
+msgid "Whether the widget should show fallback applications"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:987
+msgid "Show other apps"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:988
+msgid "Whether the widget should show other applications"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:1001
+msgid "Show all apps"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:1002
+msgid "Whether the widget should show all applications"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:1016
+msgid "Widget's default text"
+msgstr ""
+
+#: gtk/gtkappchooserwidget.c:1017
+msgid "The default text appearing when there are no applications"
+msgstr ""
+
+#: gtk/gtkapplication.c:730
+msgid "Register session"
+msgstr ""
+
+#: gtk/gtkapplication.c:731
+msgid "Register with the session manager"
+msgstr ""
+
+#: gtk/gtkapplication.c:736
+msgid "Application menu"
+msgstr ""
+
+#: gtk/gtkapplication.c:737
+msgid "The GMenuModel for the application menu"
+msgstr ""
+
+#: gtk/gtkapplication.c:743
+msgid "Menubar"
+msgstr ""
+
+#: gtk/gtkapplication.c:744
+msgid "The GMenuModel for the menubar"
+msgstr ""
+
+#: gtk/gtkapplication.c:750
+msgid "Active window"
+msgstr ""
+
+#: gtk/gtkapplication.c:751
+msgid "The window which most recently had focus"
+msgstr ""
+
+#: gtk/gtkapplicationwindow.c:1029
+msgid "Show a menubar"
+msgstr ""
+
+#: gtk/gtkapplicationwindow.c:1030
+msgid "TRUE if the window should show a menubar at the top of the window"
+msgstr ""
+
+#: gtk/gtkarrow.c:109
+msgid "Arrow direction"
+msgstr ""
+
+#: gtk/gtkarrow.c:110
+msgid "The direction the arrow should point"
+msgstr ""
+
+#: gtk/gtkarrow.c:118
+msgid "Arrow shadow"
+msgstr ""
+
+#: gtk/gtkarrow.c:119
+msgid "Appearance of the shadow surrounding the arrow"
+msgstr ""
+
+#: gtk/gtkarrow.c:126 gtk/gtkcombobox.c:1056 gtk/gtkmenu.c:797
+#: gtk/gtkmenuitem.c:524
+msgid "Arrow Scaling"
+msgstr ""
+
+#: gtk/gtkarrow.c:127
+msgid "Amount of space used up by arrow"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:107 gtk/gtkwidget.c:1385
+msgid "Horizontal Alignment"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:108
+msgid "X alignment of the child"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:114 gtk/gtkwidget.c:1401
+msgid "Vertical Alignment"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:115
+msgid "Y alignment of the child"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:121
+msgid "Ratio"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:122
+msgid "Aspect ratio if obey_child is FALSE"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:128
+msgid "Obey child"
+msgstr ""
+
+#: gtk/gtkaspectframe.c:129
+msgid "Force aspect ratio to match that of the frame's child"
+msgstr ""
+
+#: gtk/gtkassistant.c:332
+msgid "Header Padding"
+msgstr ""
+
+#: gtk/gtkassistant.c:333
+msgid "Number of pixels around the header."
+msgstr ""
+
+#: gtk/gtkassistant.c:340
+msgid "Content Padding"
+msgstr ""
+
+#: gtk/gtkassistant.c:341
+msgid "Number of pixels around the content pages."
+msgstr ""
+
+#: gtk/gtkassistant.c:357
+msgid "Page type"
+msgstr ""
+
+#: gtk/gtkassistant.c:358
+msgid "The type of the assistant page"
+msgstr ""
+
+#: gtk/gtkassistant.c:373
+msgid "Page title"
+msgstr ""
+
+#: gtk/gtkassistant.c:374
+msgid "The title of the assistant page"
+msgstr ""
+
+#: gtk/gtkassistant.c:391
+msgid "Header image"
+msgstr ""
+
+#: gtk/gtkassistant.c:392
+msgid "Header image for the assistant page"
+msgstr ""
+
+#: gtk/gtkassistant.c:408
+msgid "Sidebar image"
+msgstr ""
+
+#: gtk/gtkassistant.c:409
+msgid "Sidebar image for the assistant page"
+msgstr ""
+
+#: gtk/gtkassistant.c:425
+msgid "Page complete"
+msgstr ""
+
+#: gtk/gtkassistant.c:426
+msgid "Whether all required fields on the page have been filled out"
+msgstr ""
+
+#: gtk/gtkbbox.c:166
+msgid "Minimum child width"
+msgstr ""
+
+#: gtk/gtkbbox.c:167
+msgid "Minimum width of buttons inside the box"
+msgstr ""
+
+#: gtk/gtkbbox.c:175
+msgid "Minimum child height"
+msgstr ""
+
+#: gtk/gtkbbox.c:176
+msgid "Minimum height of buttons inside the box"
+msgstr ""
+
+#: gtk/gtkbbox.c:184
+msgid "Child internal width padding"
+msgstr ""
+
+#: gtk/gtkbbox.c:185
+msgid "Amount to increase child's size on either side"
+msgstr ""
+
+#: gtk/gtkbbox.c:193
+msgid "Child internal height padding"
+msgstr ""
+
+#: gtk/gtkbbox.c:194
+msgid "Amount to increase child's size on the top and bottom"
+msgstr ""
+
+#: gtk/gtkbbox.c:202
+msgid "Layout style"
+msgstr ""
+
+#: gtk/gtkbbox.c:203
+msgid ""
+"How to lay out the buttons in the box. Possible values are: spread, edge, "
+"start and end"
+msgstr ""
+
+#: gtk/gtkbbox.c:211
+msgid "Secondary"
+msgstr ""
+
+#: gtk/gtkbbox.c:212
+msgid ""
+"If TRUE, the child appears in a secondary group of children, suitable for, e."
+"g., help buttons"
+msgstr ""
+
+#: gtk/gtkbbox.c:219
+msgid "Non-Homogeneous"
+msgstr ""
+
+#: gtk/gtkbbox.c:220
+msgid "If TRUE, the child will not be subject to homogeneous sizing"
+msgstr ""
+
+#: gtk/gtkbox.c:248 gtk/gtkcellareabox.c:310 gtk/gtkexpander.c:312
+#: gtk/gtkheaderbar.c:1489 gtk/gtkiconview.c:515 gtk/gtktreeviewcolumn.c:281
+msgid "Spacing"
+msgstr ""
+
+#: gtk/gtkbox.c:249 gtk/gtkheaderbar.c:1490
+msgid "The amount of space between children"
+msgstr ""
+
+#: gtk/gtkbox.c:259
+msgid "Whether the children should all be the same size"
+msgstr ""
+
+#: gtk/gtkbox.c:266
+msgid "Baseline position"
+msgstr ""
+
+#: gtk/gtkbox.c:267
+msgid ""
+"The position of the baseline aligned widgets if extra space is available"
+msgstr ""
+
+#: gtk/gtkbox.c:291 gtk/gtkcellareabox.c:330 gtk/gtktoolbar.c:555
+#: gtk/gtktoolitemgroup.c:1653 gtk/gtktoolpalette.c:1004
+#: gtk/gtktreeviewcolumn.c:337
+msgid "Expand"
+msgstr ""
+
+#: gtk/gtkbox.c:292
+msgid "Whether the child should receive extra space when the parent grows"
+msgstr ""
+
+#: gtk/gtkbox.c:308 gtk/gtktoolitemgroup.c:1660
+msgid "Fill"
+msgstr ""
+
+#: gtk/gtkbox.c:309
+msgid ""
+"Whether extra space given to the child should be allocated to the child or "
+"used as padding"
+msgstr ""
+
+#: gtk/gtkbox.c:316 gtk/gtktrayicon-x11.c:167
+msgid "Padding"
+msgstr ""
+
+#: gtk/gtkbox.c:317
+msgid "Extra space to put between the child and its neighbors, in pixels"
+msgstr ""
+
+#: gtk/gtkbox.c:323 gtk/gtkheaderbar.c:1448
+msgid "Pack type"
+msgstr ""
+
+#: gtk/gtkbox.c:324 gtk/gtkheaderbar.c:1449
+msgid ""
+"A GtkPackType indicating whether the child is packed with reference to the "
+"start or end of the parent"
+msgstr ""
+
+#: gtk/gtkbox.c:330 gtk/gtkbubblewindow.c:864 gtk/gtkheaderbar.c:1455
+#: gtk/gtknotebook.c:773 gtk/gtkpaned.c:350 gtk/gtkstack.c:410
+#: gtk/gtktoolitemgroup.c:1674
+msgid "Position"
+msgstr ""
+
+#: gtk/gtkbox.c:331 gtk/gtkheaderbar.c:1456 gtk/gtknotebook.c:774
+#: gtk/gtkstack.c:411
+msgid "The index of the child in the parent"
+msgstr ""
+
+#: gtk/gtkbubblewindow.c:850
+msgid "Relative to"
+msgstr ""
+
+#: gtk/gtkbubblewindow.c:851
+msgid "Window the bubble window points to"
+msgstr ""
+
+#: gtk/gtkbubblewindow.c:857
+msgid "Pointing to"
+msgstr ""
+
+#: gtk/gtkbubblewindow.c:858
+msgid "Rectangle the bubble window points to"
+msgstr ""
+
+#: gtk/gtkbubblewindow.c:865
+msgid "Position to place the bubble window"
+msgstr ""
+
+#: gtk/gtkbuilder.c:320
+msgid "Translation Domain"
+msgstr ""
+
+#: gtk/gtkbuilder.c:321
+msgid "The translation domain used by gettext"
+msgstr ""
+
+#: gtk/gtkbutton.c:253
+msgid ""
+"Text of the label widget inside the button, if the button contains a label "
+"widget"
+msgstr ""
+
+#: gtk/gtkbutton.c:260 gtk/gtkexpander.c:296 gtk/gtklabel.c:750
+#: gtk/gtkmenuitem.c:463 gtk/gtktoolbutton.c:246
+msgid "Use underline"
+msgstr ""
+
+#: gtk/gtkbutton.c:261 gtk/gtkexpander.c:297 gtk/gtklabel.c:751
+#: gtk/gtkmenuitem.c:464
+msgid ""
+"If set, an underline in the text indicates the next character should be used "
+"for the mnemonic accelerator key"
+msgstr ""
+
+#: gtk/gtkbutton.c:274
+msgid ""
+"If set, the label is used to pick a stock item instead of being displayed"
+msgstr ""
+
+#: gtk/gtkbutton.c:281 gtk/gtkcombobox.c:860 gtk/gtkfilechooserbutton.c:435
+msgid "Focus on click"
+msgstr ""
+
+#: gtk/gtkbutton.c:282 gtk/gtkfilechooserbutton.c:436
+msgid "Whether the button grabs focus when it is clicked with the mouse"
+msgstr ""
+
+#: gtk/gtkbutton.c:289
+msgid "Border relief"
+msgstr ""
+
+#: gtk/gtkbutton.c:290
+msgid "The border relief style"
+msgstr ""
+
+#: gtk/gtkbutton.c:307
+msgid "Horizontal alignment for child"
+msgstr ""
+
+#: gtk/gtkbutton.c:326
+msgid "Vertical alignment for child"
+msgstr ""
+
+#: gtk/gtkbutton.c:344
+msgid "Child widget to appear next to the button text"
+msgstr ""
+
+#: gtk/gtkbutton.c:358
+msgid "Image position"
+msgstr ""
+
+#: gtk/gtkbutton.c:359
+msgid "The position of the image relative to the text"
+msgstr ""
+
+#: gtk/gtkbutton.c:503
+msgid "Default Spacing"
+msgstr ""
+
+#: gtk/gtkbutton.c:504
+msgid "Extra space to add for GTK_CAN_DEFAULT buttons"
+msgstr ""
+
+#: gtk/gtkbutton.c:518
+msgid "Default Outside Spacing"
+msgstr ""
+
+#: gtk/gtkbutton.c:519
+msgid ""
+"Extra space to add for GTK_CAN_DEFAULT buttons that is always drawn outside "
+"the border"
+msgstr ""
+
+#: gtk/gtkbutton.c:524
+msgid "Child X Displacement"
+msgstr ""
+
+#: gtk/gtkbutton.c:525
+msgid ""
+"How far in the x direction to move the child when the button is depressed"
+msgstr ""
+
+#: gtk/gtkbutton.c:532
+msgid "Child Y Displacement"
+msgstr ""
+
+#: gtk/gtkbutton.c:533
+msgid ""
+"How far in the y direction to move the child when the button is depressed"
+msgstr ""
+
+#: gtk/gtkbutton.c:549
+msgid "Displace focus"
+msgstr ""
+
+#: gtk/gtkbutton.c:550
+msgid ""
+"Whether the child_displacement_x/_y properties should also affect the focus "
+"rectangle"
+msgstr ""
+
+#: gtk/gtkbutton.c:566 gtk/gtkentry.c:816 gtk/gtkentry.c:2001
+msgid "Inner Border"
+msgstr ""
+
+#: gtk/gtkbutton.c:567
+msgid "Border between button edges and child."
+msgstr ""
+
+#: gtk/gtkbutton.c:580
+msgid "Image spacing"
+msgstr ""
+
+#: gtk/gtkbutton.c:581
+msgid "Spacing in pixels between the image and label"
+msgstr ""
+
+#: gtk/gtkcalendar.c:470
+msgid "Year"
+msgstr ""
+
+#: gtk/gtkcalendar.c:471
+msgid "The selected year"
+msgstr ""
+
+#: gtk/gtkcalendar.c:484
+msgid "Month"
+msgstr ""
+
+#: gtk/gtkcalendar.c:485
+msgid "The selected month (as a number between 0 and 11)"
+msgstr ""
+
+#: gtk/gtkcalendar.c:499
+msgid "Day"
+msgstr ""
+
+#: gtk/gtkcalendar.c:500
+msgid ""
+"The selected day (as a number between 1 and 31, or 0 to unselect the "
+"currently selected day)"
+msgstr ""
+
+#: gtk/gtkcalendar.c:514
+msgid "Show Heading"
+msgstr ""
+
+#: gtk/gtkcalendar.c:515
+msgid "If TRUE, a heading is displayed"
+msgstr ""
+
+#: gtk/gtkcalendar.c:529
+msgid "Show Day Names"
+msgstr ""
+
+#: gtk/gtkcalendar.c:530
+msgid "If TRUE, day names are displayed"
+msgstr ""
+
+#: gtk/gtkcalendar.c:543
+msgid "No Month Change"
+msgstr ""
+
+#: gtk/gtkcalendar.c:544
+msgid "If TRUE, the selected month cannot be changed"
+msgstr ""
+
+#: gtk/gtkcalendar.c:558
+msgid "Show Week Numbers"
+msgstr ""
+
+#: gtk/gtkcalendar.c:559
+msgid "If TRUE, week numbers are displayed"
+msgstr ""
+
+#: gtk/gtkcalendar.c:574
+msgid "Details Width"
+msgstr ""
+
+#: gtk/gtkcalendar.c:575
+msgid "Details width in characters"
+msgstr ""
+
+#: gtk/gtkcalendar.c:590
+msgid "Details Height"
+msgstr ""
+
+#: gtk/gtkcalendar.c:591
+msgid "Details height in rows"
+msgstr ""
+
+#: gtk/gtkcalendar.c:607
+msgid "Show Details"
+msgstr ""
+
+#: gtk/gtkcalendar.c:608
+msgid "If TRUE, details are shown"
+msgstr ""
+
+#: gtk/gtkcalendar.c:620
+msgid "Inner border"
+msgstr ""
+
+#: gtk/gtkcalendar.c:621
+msgid "Inner border space"
+msgstr ""
+
+#: gtk/gtkcalendar.c:632
+msgid "Vertical separation"
+msgstr ""
+
+#: gtk/gtkcalendar.c:633
+msgid "Space between day headers and main area"
+msgstr ""
+
+#: gtk/gtkcalendar.c:644
+msgid "Horizontal separation"
+msgstr ""
+
+#: gtk/gtkcalendar.c:645
+msgid "Space between week headers and main area"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:311 gtk/gtktreeviewcolumn.c:282
+msgid "Space which is inserted between cells"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:331
+msgid "Whether the cell expands"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:346
+msgid "Align"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:347
+msgid "Whether cell should align with adjacent rows"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:363
+msgid "Fixed Size"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:364
+msgid "Whether cells should be the same size in all rows"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:380
+msgid "Pack Type"
+msgstr ""
+
+#: gtk/gtkcellareabox.c:381
+msgid ""
+"A GtkPackType indicating whether the cell is packed with reference to the "
+"start or end of the cell area"
+msgstr ""
+
+#: gtk/gtkcellarea.c:802
+msgid "Focus Cell"
+msgstr ""
+
+#: gtk/gtkcellarea.c:803
+msgid "The cell which currently has focus"
+msgstr ""
+
+#: gtk/gtkcellarea.c:821
+msgid "Edited Cell"
+msgstr ""
+
+#: gtk/gtkcellarea.c:822
+msgid "The cell which is currently being edited"
+msgstr ""
+
+#: gtk/gtkcellarea.c:840
+msgid "Edit Widget"
+msgstr ""
+
+#: gtk/gtkcellarea.c:841
+msgid "The widget currently editing the edited cell"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:115
+msgid "Area"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:116
+msgid "The Cell Area this context was created for"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:132 gtk/gtkcellareacontext.c:151
+#: gtk/gtktreeviewcolumn.c:309
+msgid "Minimum Width"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:133 gtk/gtkcellareacontext.c:152
+msgid "Minimum cached width"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:170 gtk/gtkcellareacontext.c:189
+msgid "Minimum Height"
+msgstr ""
+
+#: gtk/gtkcellareacontext.c:171 gtk/gtkcellareacontext.c:190
+msgid "Minimum cached height"
+msgstr ""
+
+#: gtk/gtkcelleditable.c:51
+msgid "Editing Canceled"
+msgstr ""
+
+#: gtk/gtkcelleditable.c:52
+msgid "Indicates that editing has been canceled"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:146
+msgid "Accelerator key"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:147
+msgid "The keyval of the accelerator"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:163
+msgid "Accelerator modifiers"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:164
+msgid "The modifier mask of the accelerator"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:181
+msgid "Accelerator keycode"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:182
+msgid "The hardware keycode of the accelerator"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:201
+msgid "Accelerator Mode"
+msgstr ""
+
+#: gtk/gtkcellrendereraccel.c:202
+msgid "The type of accelerators"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:285
+msgid "mode"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:286
+msgid "Editable mode of the CellRenderer"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:294
+msgid "visible"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:295
+msgid "Display the cell"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:302
+msgid "Display the cell sensitive"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:309
+msgid "xalign"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:310
+msgid "The x-align"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:319
+msgid "yalign"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:320
+msgid "The y-align"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:329
+msgid "xpad"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:330
+msgid "The xpad"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:339
+msgid "ypad"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:340
+msgid "The ypad"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:349
+msgid "width"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:350
+msgid "The fixed width"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:359
+msgid "height"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:360
+msgid "The fixed height"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:369
+msgid "Is Expander"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:370
+msgid "Row has children"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:378
+msgid "Is Expanded"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:379
+msgid "Row is an expander row, and is expanded"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:386
+msgid "Cell background color name"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:387
+msgid "Cell background color as a string"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:401
+msgid "Cell background color"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:402
+msgid "Cell background color as a GdkColor"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:415
+msgid "Cell background RGBA color"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:416
+msgid "Cell background color as a GdkRGBA"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:423
+msgid "Editing"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:424
+msgid "Whether the cell renderer is currently in editing mode"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:432
+msgid "Cell background set"
+msgstr ""
+
+#: gtk/gtkcellrenderer.c:433
+msgid "Whether the cell background color is set"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:128
+msgid "Model"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:129
+msgid "The model containing the possible values for the combo box"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:151
+msgid "Text Column"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:152
+msgid "A column in the data source model to get the strings from"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:169 gtk/gtkcombobox.c:929
+msgid "Has Entry"
+msgstr ""
+
+#: gtk/gtkcellrenderercombo.c:170
+msgid "If FALSE, don't allow to enter strings other than the chosen ones"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:150
+msgid "Pixbuf Object"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:151
+msgid "The pixbuf to render"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:158
+msgid "Pixbuf Expander Open"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:159
+msgid "Pixbuf for open expander"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:166
+msgid "Pixbuf Expander Closed"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:167
+msgid "Pixbuf for closed expander"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:173
+msgid "surface"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:174
+msgid "The surface to render"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:186 gtk/gtkimage.c:261 gtk/gtkstatusicon.c:243
+msgid "Stock ID"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:187
+msgid "The stock ID of the stock icon to render"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:194 gtk/gtkcellrendererspinner.c:157
+#: gtk/gtkrecentmanager.c:308 gtk/gtkstatusicon.c:284
+msgid "Size"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:195
+msgid "The GtkIconSize value that specifies the size of the rendered icon"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:204
+msgid "Detail"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:205
+msgid "Render detail to pass to the theme engine"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:238
+msgid "Follow State"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:239
+msgid "Whether the rendered pixbuf should be colorized according to the state"
+msgstr ""
+
+#: gtk/gtkcellrendererpixbuf.c:256 gtk/gtkimage.c:343 gtk/gtkwindow.c:795
+msgid "Icon"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:138
+msgid "Value of the progress bar"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:155 gtk/gtkcellrenderertext.c:253
+#: gtk/gtkentrybuffer.c:348 gtk/gtkentry.c:860 gtk/gtkmessagedialog.c:212
+#: gtk/gtkprogressbar.c:174 gtk/gtktextbuffer.c:219
+msgid "Text"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:156
+msgid "Text on the progress bar"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:179 gtk/gtkcellrendererspinner.c:143
+msgid "Pulse"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:180
+msgid ""
+"Set this to positive values to indicate that some progress is made, but you "
+"don't know how much."
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:196
+msgid "Text x alignment"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:197
+msgid ""
+"The horizontal text alignment, from 0 (left) to 1 (right). Reversed for RTL "
+"layouts."
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:213
+msgid "Text y alignment"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:214
+msgid "The vertical text alignment, from 0 (top) to 1 (bottom)."
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:225 gtk/gtklevelbar.c:994
+#: gtk/gtkprogressbar.c:150 gtk/gtkrange.c:443
+msgid "Inverted"
+msgstr ""
+
+#: gtk/gtkcellrendererprogress.c:226 gtk/gtkprogressbar.c:151
+msgid "Invert the direction in which the progress bar grows"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:113 gtk/gtkrange.c:435 gtk/gtkscalebutton.c:247
+#: gtk/gtkspinbutton.c:349
+msgid "Adjustment"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:114 gtk/gtkspinbutton.c:350
+msgid "The adjustment that holds the value of the spin button"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:129
+msgid "Climb rate"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:130 gtk/gtkspinbutton.c:358
+msgid "The acceleration rate when you hold down a button"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:143 gtk/gtkscale.c:309 gtk/gtkspinbutton.c:367
+msgid "Digits"
+msgstr ""
+
+#: gtk/gtkcellrendererspin.c:144 gtk/gtkspinbutton.c:368
+msgid "The number of decimal places to display"
+msgstr ""
+
+#: gtk/gtkcellrendererspinner.c:126
+msgid "Whether the spinner is active (ie. shown) in the cell"
+msgstr ""
+
+#: gtk/gtkcellrendererspinner.c:144
+msgid "Pulse of the spinner"
+msgstr ""
+
+#: gtk/gtkcellrendererspinner.c:158
+msgid "The GtkIconSize value that specifies the size of the rendered spinner"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:254
+msgid "Text to render"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:261
+msgid "Markup"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:262
+msgid "Marked up text to render"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:269 gtk/gtkentry.c:1433 gtk/gtklabel.c:736
+msgid "Attributes"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:270
+msgid "A list of style attributes to apply to the text of the renderer"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:277
+msgid "Single Paragraph Mode"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:278
+msgid "Whether to keep all text in a single paragraph"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:286 gtk/gtkcellview.c:190 gtk/gtktexttag.c:203
+msgid "Background color name"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:287 gtk/gtkcellview.c:191 gtk/gtktexttag.c:204
+msgid "Background color as a string"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:301 gtk/gtkcellview.c:205 gtk/gtktexttag.c:218
+msgid "Background color"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:302 gtk/gtkcellview.c:206 gtk/gtktexttag.c:219
+msgid "Background color as a GdkColor"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:316
+msgid "Background color as RGBA"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:317 gtk/gtkcellview.c:220 gtk/gtktexttag.c:234
+msgid "Background color as a GdkRGBA"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:323 gtk/gtktexttag.c:249
+msgid "Foreground color name"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:324 gtk/gtktexttag.c:250
+msgid "Foreground color as a string"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:338 gtk/gtktexttag.c:264
+#: gtk/gtktrayicon-x11.c:135
+msgid "Foreground color"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:339 gtk/gtktexttag.c:265
+msgid "Foreground color as a GdkColor"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:353
+msgid "Foreground color as RGBA"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:354 gtk/gtktexttag.c:280
+msgid "Foreground color as a GdkRGBA"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:362 gtk/gtkentry.c:774 gtk/gtktexttag.c:296
+#: gtk/gtktextview.c:729
+msgid "Editable"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:363 gtk/gtktexttag.c:297 gtk/gtktextview.c:730
+msgid "Whether the text can be modified by the user"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:370 gtk/gtkcellrenderertext.c:378
+#: gtk/gtkfontchooser.c:65 gtk/gtktexttag.c:312 gtk/gtktexttag.c:320
+msgid "Font"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:371 gtk/gtkfontchooser.c:66 gtk/gtktexttag.c:313
+msgid "Font description as a string, e.g. \"Sans Italic 12\""
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:379 gtk/gtkfontchooser.c:79 gtk/gtktexttag.c:321
+msgid "Font description as a PangoFontDescription struct"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:387 gtk/gtktexttag.c:328
+msgid "Font family"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:388 gtk/gtktexttag.c:329
+msgid "Name of the font family, e.g. Sans, Helvetica, Times, Monospace"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:395 gtk/gtkcellrenderertext.c:396
+#: gtk/gtktexttag.c:336
+msgid "Font style"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:404 gtk/gtkcellrenderertext.c:405
+#: gtk/gtktexttag.c:345
+msgid "Font variant"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:413 gtk/gtkcellrenderertext.c:414
+#: gtk/gtktexttag.c:354
+msgid "Font weight"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:423 gtk/gtkcellrenderertext.c:424
+#: gtk/gtktexttag.c:365
+msgid "Font stretch"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:432 gtk/gtkcellrenderertext.c:433
+#: gtk/gtktexttag.c:374
+msgid "Font size"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:442 gtk/gtktexttag.c:394
+msgid "Font points"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:443 gtk/gtktexttag.c:395
+msgid "Font size in points"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:452 gtk/gtktexttag.c:384
+msgid "Font scale"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:453
+msgid "Font scaling factor"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:462 gtk/gtktexttag.c:463
+msgid "Rise"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:463
+msgid ""
+"Offset of text above the baseline (below the baseline if rise is negative)"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:474 gtk/gtktexttag.c:503
+msgid "Strikethrough"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:475 gtk/gtktexttag.c:504
+msgid "Whether to strike through the text"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:482 gtk/gtktexttag.c:511
+msgid "Underline"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:483 gtk/gtktexttag.c:512
+msgid "Style of underline for this text"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:491 gtk/gtktexttag.c:423
+msgid "Language"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:492
+msgid ""
+"The language this text is in, as an ISO code. Pango can use this as a hint "
+"when rendering the text. If you don't understand this parameter, you "
+"probably don't need it"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:512 gtk/gtklabel.c:861 gtk/gtkprogressbar.c:218
+msgid "Ellipsize"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:513
+msgid ""
+"The preferred place to ellipsize the string, if the cell renderer does not "
+"have enough room to display the entire string"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:532 gtk/gtkfilechooserbutton.c:463
+#: gtk/gtklabel.c:882
+msgid "Width In Characters"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:533 gtk/gtklabel.c:883
+msgid "The desired width of the label, in characters"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:557 gtk/gtklabel.c:943
+msgid "Maximum Width In Characters"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:558
+msgid "The maximum width of the cell, in characters"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:576 gtk/gtktexttag.c:520
+msgid "Wrap mode"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:577
+msgid ""
+"How to break the string into multiple lines, if the cell renderer does not "
+"have enough room to display the entire string"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:596 gtk/gtkcombobox.c:747
+msgid "Wrap width"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:597
+msgid "The width at which the text is wrapped"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:617 gtk/gtktreeviewcolumn.c:362
+msgid "Alignment"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:618
+msgid "How to align the lines"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:634 gtk/gtkentry.c:1026
+msgid "Placeholder text"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:635
+msgid "Text rendered when an editable cell is empty"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:645 gtk/gtkcellview.c:324 gtk/gtktexttag.c:625
+msgid "Background set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:646 gtk/gtkcellview.c:325 gtk/gtktexttag.c:626
+msgid "Whether this tag affects the background color"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:649 gtk/gtktexttag.c:633
+msgid "Foreground set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:650 gtk/gtktexttag.c:634
+msgid "Whether this tag affects the foreground color"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:653 gtk/gtktexttag.c:637
+msgid "Editability set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:654 gtk/gtktexttag.c:638
+msgid "Whether this tag affects text editability"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:657 gtk/gtktexttag.c:641
+msgid "Font family set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:658 gtk/gtktexttag.c:642
+msgid "Whether this tag affects the font family"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:661 gtk/gtktexttag.c:645
+msgid "Font style set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:662 gtk/gtktexttag.c:646
+msgid "Whether this tag affects the font style"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:665 gtk/gtktexttag.c:649
+msgid "Font variant set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:666 gtk/gtktexttag.c:650
+msgid "Whether this tag affects the font variant"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:669 gtk/gtktexttag.c:653
+msgid "Font weight set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:670 gtk/gtktexttag.c:654
+msgid "Whether this tag affects the font weight"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:673 gtk/gtktexttag.c:657
+msgid "Font stretch set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:674 gtk/gtktexttag.c:658
+msgid "Whether this tag affects the font stretch"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:677 gtk/gtktexttag.c:661
+msgid "Font size set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:678 gtk/gtktexttag.c:662
+msgid "Whether this tag affects the font size"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:681 gtk/gtktexttag.c:665
+msgid "Font scale set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:682 gtk/gtktexttag.c:666
+msgid "Whether this tag scales the font size by a factor"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:685 gtk/gtktexttag.c:685
+msgid "Rise set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:686 gtk/gtktexttag.c:686
+msgid "Whether this tag affects the rise"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:689 gtk/gtktexttag.c:701
+msgid "Strikethrough set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:690 gtk/gtktexttag.c:702
+msgid "Whether this tag affects strikethrough"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:693 gtk/gtktexttag.c:709
+msgid "Underline set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:694 gtk/gtktexttag.c:710
+msgid "Whether this tag affects underlining"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:697 gtk/gtktexttag.c:673
+msgid "Language set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:698 gtk/gtktexttag.c:674
+msgid "Whether this tag affects the language the text is rendered as"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:701
+msgid "Ellipsize set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:702
+msgid "Whether this tag affects the ellipsize mode"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:705
+msgid "Align set"
+msgstr ""
+
+#: gtk/gtkcellrenderertext.c:706
+msgid "Whether this tag affects the alignment mode"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:137
+msgid "Toggle state"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:138
+msgid "The toggle state of the button"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:145
+msgid "Inconsistent state"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:146
+msgid "The inconsistent state of the button"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:153
+msgid "Activatable"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:154
+msgid "The toggle button can be activated"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:161
+msgid "Radio state"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:162
+msgid "Draw the toggle button as a radio button"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:169
+msgid "Indicator size"
+msgstr ""
+
+#: gtk/gtkcellrenderertoggle.c:170 gtk/gtkcheckbutton.c:111
+#: gtk/gtkcheckmenuitem.c:146
+msgid "Size of check or radio indicator"
+msgstr ""
+
+#: gtk/gtkcellview.c:219
+msgid "Background RGBA color"
+msgstr ""
+
+#: gtk/gtkcellview.c:234
+msgid "CellView model"
+msgstr ""
+
+#: gtk/gtkcellview.c:235
+msgid "The model for cell view"
+msgstr ""
+
+#: gtk/gtkcellview.c:253 gtk/gtkcombobox.c:1015 gtk/gtkentrycompletion.c:452
+#: gtk/gtkiconview.c:640 gtk/gtktreemenu.c:304 gtk/gtktreeviewcolumn.c:425
+msgid "Cell Area"
+msgstr ""
+
+#: gtk/gtkcellview.c:254 gtk/gtkcombobox.c:1016 gtk/gtkentrycompletion.c:453
+#: gtk/gtkiconview.c:641 gtk/gtktreemenu.c:305 gtk/gtktreeviewcolumn.c:426
+msgid "The GtkCellArea used to layout cells"
+msgstr ""
+
+#: gtk/gtkcellview.c:277
+msgid "Cell Area Context"
+msgstr ""
+
+#: gtk/gtkcellview.c:278
+msgid "The GtkCellAreaContext used to compute the geometry of the cell view"
+msgstr ""
+
+#: gtk/gtkcellview.c:295
+msgid "Draw Sensitive"
+msgstr ""
+
+#: gtk/gtkcellview.c:296
+msgid "Whether to force cells to be drawn in a sensitive state"
+msgstr ""
+
+#: gtk/gtkcellview.c:314
+msgid "Fit Model"
+msgstr ""
+
+#: gtk/gtkcellview.c:315
+msgid "Whether to request enough space for every row in the model"
+msgstr ""
+
+#: gtk/gtkcheckbutton.c:110 gtk/gtkcheckmenuitem.c:145
+msgid "Indicator Size"
+msgstr ""
+
+#: gtk/gtkcheckbutton.c:118 gtk/gtkexpander.c:362
+msgid "Indicator Spacing"
+msgstr ""
+
+#: gtk/gtkcheckbutton.c:119
+msgid "Spacing around check or radio indicator"
+msgstr ""
+
+#: gtk/gtkcheckmenuitem.c:123
+msgid "Whether the menu item is checked"
+msgstr ""
+
+#: gtk/gtkcheckmenuitem.c:130 gtk/gtktogglebutton.c:184
+msgid "Inconsistent"
+msgstr ""
+
+#: gtk/gtkcheckmenuitem.c:131
+msgid "Whether to display an \"inconsistent\" state"
+msgstr ""
+
+#: gtk/gtkcheckmenuitem.c:138
+msgid "Draw as radio menu item"
+msgstr ""
+
+#: gtk/gtkcheckmenuitem.c:139
+msgid "Whether the menu item looks like a radio menu item"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:172 gtk/gtkcolorchooser.c:87
+msgid "Use alpha"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:173
+msgid "Whether to give the color an alpha value"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:187 gtk/gtkfilechooserbutton.c:449
+#: gtk/gtkfontbutton.c:436 gtk/gtkheaderbar.c:1463 gtk/gtkprintjob.c:134
+#: gtk/gtkstack.c:396 gtk/gtkstatusicon.c:430 gtk/gtktreeviewcolumn.c:329
+msgid "Title"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:188
+msgid "The title of the color selection dialog"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:205
+msgid "The selected color"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:220
+msgid "The selected opacity value (0 fully transparent, 65535 fully opaque)"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:234
+msgid "Current RGBA Color"
+msgstr ""
+
+#: gtk/gtkcolorbutton.c:235
+msgid "The selected RGBA color"
+msgstr ""
+
+#: gtk/gtkcolorchooser.c:67
+msgid "Color"
+msgstr ""
+
+#: gtk/gtkcolorchooser.c:68
+msgid "Current color, as a GdkRGBA"
+msgstr ""
+
+#: gtk/gtkcolorchooser.c:88
+msgid "Whether alpha should be shown"
+msgstr ""
+
+#: gtk/gtkcolorchooserdialog.c:198 gtk/gtkcolorchooserwidget.c:679
+msgid "Show editor"
+msgstr ""
+
+#: gtk/gtkcolorscale.c:382
+msgid "Scale type"
+msgstr ""
+
+#: gtk/gtkcolorswatch.c:779
+msgid "RGBA Color"
+msgstr ""
+
+#: gtk/gtkcolorswatch.c:779
+msgid "Color as RGBA"
+msgstr ""
+
+#: gtk/gtkcolorswatch.c:782 gtk/gtklabel.c:799
+msgid "Selectable"
+msgstr ""
+
+#: gtk/gtkcolorswatch.c:782
+msgid "Whether the swatch is selectable"
+msgstr ""
+
+#: gtk/gtkcombobox.c:730
+msgid "ComboBox model"
+msgstr ""
+
+#: gtk/gtkcombobox.c:731
+msgid "The model for the combo box"
+msgstr ""
+
+#: gtk/gtkcombobox.c:748
+msgid "Wrap width for laying out the items in a grid"
+msgstr ""
+
+#: gtk/gtkcombobox.c:770 gtk/gtktreemenu.c:358
+msgid "Row span column"
+msgstr ""
+
+#: gtk/gtkcombobox.c:771 gtk/gtktreemenu.c:359
+msgid "TreeModel column containing the row span values"
+msgstr ""
+
+#: gtk/gtkcombobox.c:792 gtk/gtktreemenu.c:379
+msgid "Column span column"
+msgstr ""
+
+#: gtk/gtkcombobox.c:793 gtk/gtktreemenu.c:380
+msgid "TreeModel column containing the column span values"
+msgstr ""
+
+#: gtk/gtkcombobox.c:814
+msgid "Active item"
+msgstr ""
+
+#: gtk/gtkcombobox.c:815
+msgid "The item which is currently active"
+msgstr ""
+
+#: gtk/gtkcombobox.c:837
+msgid "Whether dropdowns should have a tearoff menu item"
+msgstr ""
+
+#: gtk/gtkcombobox.c:852 gtk/gtkentry.c:799
+msgid "Has Frame"
+msgstr ""
+
+#: gtk/gtkcombobox.c:853
+msgid "Whether the combo box draws a frame around the child"
+msgstr ""
+
+#: gtk/gtkcombobox.c:861
+msgid "Whether the combo box grabs focus when it is clicked with the mouse"
+msgstr ""
+
+#: gtk/gtkcombobox.c:878 gtk/gtkmenu.c:620
+msgid "Tearoff Title"
+msgstr ""
+
+#: gtk/gtkcombobox.c:879
+msgid ""
+"A title that may be displayed by the window manager when the popup is torn-"
+"off"
+msgstr ""
+
+#: gtk/gtkcombobox.c:896
+msgid "Popup shown"
+msgstr ""
+
+#: gtk/gtkcombobox.c:897
+msgid "Whether the combo's dropdown is shown"
+msgstr ""
+
+#: gtk/gtkcombobox.c:913
+msgid "Button Sensitivity"
+msgstr ""
+
+#: gtk/gtkcombobox.c:914
+msgid "Whether the dropdown button is sensitive when the model is empty"
+msgstr ""
+
+#: gtk/gtkcombobox.c:930
+msgid "Whether combo box has an entry"
+msgstr ""
+
+#: gtk/gtkcombobox.c:945
+msgid "Entry Text Column"
+msgstr ""
+
+#: gtk/gtkcombobox.c:946
+msgid ""
+"The column in the combo box's model to associate with strings from the entry "
+"if the combo was created with #GtkComboBox:has-entry = %TRUE"
+msgstr ""
+
+#: gtk/gtkcombobox.c:963
+msgid "ID Column"
+msgstr ""
+
+#: gtk/gtkcombobox.c:964
+msgid ""
+"The column in the combo box's model that provides string IDs for the values "
+"in the model"
+msgstr ""
+
+#: gtk/gtkcombobox.c:979
+msgid "Active id"
+msgstr ""
+
+#: gtk/gtkcombobox.c:980
+msgid "The value of the id column for the active row"
+msgstr ""
+
+#: gtk/gtkcombobox.c:995
+msgid "Popup Fixed Width"
+msgstr ""
+
+#: gtk/gtkcombobox.c:996
+msgid ""
+"Whether the popup's width should be a fixed width matching the allocated "
+"width of the combo box"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1022
+msgid "Appears as list"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1023
+msgid "Whether dropdowns should look like lists rather than menus"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1039
+msgid "Arrow Size"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1040
+msgid "The minimum size of the arrow in the combo box"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1057
+msgid "The amount of space used by the arrow"
+msgstr ""
+
+#: gtk/gtkcombobox.c:1073
+msgid "Which kind of shadow to draw around the combo box"
+msgstr ""
+
+#: gtk/gtkcontainer.c:482
+msgid "Resize mode"
+msgstr ""
+
+#: gtk/gtkcontainer.c:483
+msgid "Specify how resize events are handled"
+msgstr ""
+
+#: gtk/gtkcontainer.c:490
+msgid "Border width"
+msgstr ""
+
+#: gtk/gtkcontainer.c:491
+msgid "The width of the empty border outside the containers children"
+msgstr ""
+
+#: gtk/gtkcontainer.c:499
+msgid "Child"
+msgstr ""
+
+#: gtk/gtkcontainer.c:500
+msgid "Can be used to add a new child to the container"
+msgstr ""
+
+#: gtk/gtkcssshorthandproperty.c:158
+msgid "Subproperties"
+msgstr ""
+
+#: gtk/gtkcssshorthandproperty.c:159
+msgid "The list of subproperties"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:275
+msgid "Animated"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:276
+msgid "Set if the value can be animated"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:282
+msgid "Affects size"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:283
+msgid "Set if the value affects the sizing of elements"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:289
+msgid "Affects font"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:290
+msgid "Set if the value affects the font"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:296
+msgid "ID"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:297
+msgid "The numeric id for quick access"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:303
+msgid "Inherit"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:304
+msgid "Set if the value is inherited by default"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:310
+msgid "Initial value"
+msgstr ""
+
+#: gtk/gtkcssstyleproperty.c:311
+msgid "The initial specified value used for this property"
+msgstr ""
+
+#: gtk/gtkdialog.c:286 gtk/gtkinfobar.c:517
+msgid "Content area border"
+msgstr ""
+
+#: gtk/gtkdialog.c:287
+msgid "Width of border around the main dialog area"
+msgstr ""
+
+#: gtk/gtkdialog.c:304 gtk/gtkinfobar.c:535
+msgid "Content area spacing"
+msgstr ""
+
+#: gtk/gtkdialog.c:305
+msgid "Spacing between elements of the main dialog area"
+msgstr ""
+
+#: gtk/gtkdialog.c:312 gtk/gtkinfobar.c:552
+msgid "Button spacing"
+msgstr ""
+
+#: gtk/gtkdialog.c:313 gtk/gtkinfobar.c:553
+msgid "Spacing between buttons"
+msgstr ""
+
+#: gtk/gtkdialog.c:321 gtk/gtkinfobar.c:569
+msgid "Action area border"
+msgstr ""
+
+#: gtk/gtkdialog.c:322
+msgid "Width of border around the button area at the bottom of the dialog"
+msgstr ""
+
+#: gtk/gtkentrybuffer.c:349
+msgid "The contents of the buffer"
+msgstr ""
+
+#: gtk/gtkentrybuffer.c:363 gtk/gtkentry.c:940
+msgid "Text length"
+msgstr ""
+
+#: gtk/gtkentrybuffer.c:364
+msgid "Length of the text currently in the buffer"
+msgstr ""
+
+#: gtk/gtkentrybuffer.c:378 gtk/gtkentry.c:782
+msgid "Maximum length"
+msgstr ""
+
+#: gtk/gtkentrybuffer.c:379 gtk/gtkentry.c:783
+msgid "Maximum number of characters for this entry. Zero if no maximum"
+msgstr ""
+
+#: gtk/gtkentry.c:746
+msgid "Text Buffer"
+msgstr ""
+
+#: gtk/gtkentry.c:747
+msgid "Text buffer object which actually stores entry text"
+msgstr ""
+
+#: gtk/gtkentry.c:754 gtk/gtklabel.c:824
+msgid "Cursor Position"
+msgstr ""
+
+#: gtk/gtkentry.c:755 gtk/gtklabel.c:825
+msgid "The current position of the insertion cursor in chars"
+msgstr ""
+
+#: gtk/gtkentry.c:764 gtk/gtklabel.c:834
+msgid "Selection Bound"
+msgstr ""
+
+#: gtk/gtkentry.c:765 gtk/gtklabel.c:835
+msgid ""
+"The position of the opposite end of the selection from the cursor in chars"
+msgstr ""
+
+#: gtk/gtkentry.c:775
+msgid "Whether the entry contents can be edited"
+msgstr ""
+
+#: gtk/gtkentry.c:791
+msgid "Visibility"
+msgstr ""
+
+#: gtk/gtkentry.c:792
+msgid ""
+"FALSE displays the \"invisible char\" instead of the actual text (password "
+"mode)"
+msgstr ""
+
+#: gtk/gtkentry.c:800
+msgid "FALSE removes outside bevel from entry"
+msgstr ""
+
+#: gtk/gtkentry.c:817
+msgid ""
+"Border between text and frame. Overrides the inner-border style property"
+msgstr ""
+
+#: gtk/gtkentry.c:825 gtk/gtkentry.c:1518
+msgid "Invisible character"
+msgstr ""
+
+#: gtk/gtkentry.c:826 gtk/gtkentry.c:1519
+msgid "The character to use when masking entry contents (in \"password mode\")"
+msgstr ""
+
+#: gtk/gtkentry.c:833
+msgid "Activates default"
+msgstr ""
+
+#: gtk/gtkentry.c:834
+msgid ""
+"Whether to activate the default widget (such as the default button in a "
+"dialog) when Enter is pressed"
+msgstr ""
+
+#: gtk/gtkentry.c:840
+msgid "Width in chars"
+msgstr ""
+
+#: gtk/gtkentry.c:841
+msgid "Number of characters to leave space for in the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:850
+msgid "Scroll offset"
+msgstr ""
+
+#: gtk/gtkentry.c:851
+msgid "Number of pixels of the entry scrolled off the screen to the left"
+msgstr ""
+
+#: gtk/gtkentry.c:861
+msgid "The contents of the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:876 gtk/gtkmisc.c:103
+msgid "X align"
+msgstr ""
+
+#: gtk/gtkentry.c:877 gtk/gtkmisc.c:104
+msgid ""
+"The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL "
+"layouts."
+msgstr ""
+
+#: gtk/gtkentry.c:893
+msgid "Truncate multiline"
+msgstr ""
+
+#: gtk/gtkentry.c:894
+msgid "Whether to truncate multiline pastes to one line."
+msgstr ""
+
+#: gtk/gtkentry.c:910
+msgid "Which kind of shadow to draw around the entry when has-frame is set"
+msgstr ""
+
+#: gtk/gtkentry.c:925 gtk/gtktextview.c:809
+msgid "Overwrite mode"
+msgstr ""
+
+#: gtk/gtkentry.c:926
+msgid "Whether new text overwrites existing text"
+msgstr ""
+
+#: gtk/gtkentry.c:941
+msgid "Length of the text currently in the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:956
+msgid "Invisible character set"
+msgstr ""
+
+#: gtk/gtkentry.c:957
+msgid "Whether the invisible character has been set"
+msgstr ""
+
+#: gtk/gtkentry.c:975
+msgid "Caps Lock warning"
+msgstr ""
+
+#: gtk/gtkentry.c:976
+msgid "Whether password entries will show a warning when Caps Lock is on"
+msgstr ""
+
+#: gtk/gtkentry.c:990
+msgid "Progress Fraction"
+msgstr ""
+
+#: gtk/gtkentry.c:991
+msgid "The current fraction of the task that's been completed"
+msgstr ""
+
+#: gtk/gtkentry.c:1008
+msgid "Progress Pulse Step"
+msgstr ""
+
+#: gtk/gtkentry.c:1009
+msgid ""
+"The fraction of total entry width to move the progress bouncing block for "
+"each call to gtk_entry_progress_pulse()"
+msgstr ""
+
+#: gtk/gtkentry.c:1027
+msgid "Show text in the entry when it's empty and unfocused"
+msgstr ""
+
+#: gtk/gtkentry.c:1041
+msgid "Primary pixbuf"
+msgstr ""
+
+#: gtk/gtkentry.c:1042
+msgid "Primary pixbuf for the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:1056
+msgid "Secondary pixbuf"
+msgstr ""
+
+#: gtk/gtkentry.c:1057
+msgid "Secondary pixbuf for the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:1073
+msgid "Primary stock ID"
+msgstr ""
+
+#: gtk/gtkentry.c:1074
+msgid "Stock ID for primary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1090
+msgid "Secondary stock ID"
+msgstr ""
+
+#: gtk/gtkentry.c:1091
+msgid "Stock ID for secondary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1105
+msgid "Primary icon name"
+msgstr ""
+
+#: gtk/gtkentry.c:1106
+msgid "Icon name for primary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1120
+msgid "Secondary icon name"
+msgstr ""
+
+#: gtk/gtkentry.c:1121
+msgid "Icon name for secondary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1135
+msgid "Primary GIcon"
+msgstr ""
+
+#: gtk/gtkentry.c:1136
+msgid "GIcon for primary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1150
+msgid "Secondary GIcon"
+msgstr ""
+
+#: gtk/gtkentry.c:1151
+msgid "GIcon for secondary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1165
+msgid "Primary storage type"
+msgstr ""
+
+#: gtk/gtkentry.c:1166
+msgid "The representation being used for primary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1181
+msgid "Secondary storage type"
+msgstr ""
+
+#: gtk/gtkentry.c:1182
+msgid "The representation being used for secondary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1203
+msgid "Primary icon activatable"
+msgstr ""
+
+#: gtk/gtkentry.c:1204
+msgid "Whether the primary icon is activatable"
+msgstr ""
+
+#: gtk/gtkentry.c:1224
+msgid "Secondary icon activatable"
+msgstr ""
+
+#: gtk/gtkentry.c:1225
+msgid "Whether the secondary icon is activatable"
+msgstr ""
+
+#: gtk/gtkentry.c:1247
+msgid "Primary icon sensitive"
+msgstr ""
+
+#: gtk/gtkentry.c:1248
+msgid "Whether the primary icon is sensitive"
+msgstr ""
+
+#: gtk/gtkentry.c:1269
+msgid "Secondary icon sensitive"
+msgstr ""
+
+#: gtk/gtkentry.c:1270
+msgid "Whether the secondary icon is sensitive"
+msgstr ""
+
+#: gtk/gtkentry.c:1286
+msgid "Primary icon tooltip text"
+msgstr ""
+
+#: gtk/gtkentry.c:1287 gtk/gtkentry.c:1323
+msgid "The contents of the tooltip on the primary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1303
+msgid "Secondary icon tooltip text"
+msgstr ""
+
+#: gtk/gtkentry.c:1304 gtk/gtkentry.c:1342
+msgid "The contents of the tooltip on the secondary icon"
+msgstr ""
+
+#: gtk/gtkentry.c:1322
+msgid "Primary icon tooltip markup"
+msgstr ""
+
+#: gtk/gtkentry.c:1341
+msgid "Secondary icon tooltip markup"
+msgstr ""
+
+#: gtk/gtkentry.c:1361 gtk/gtktextview.c:837
+msgid "IM module"
+msgstr ""
+
+#: gtk/gtkentry.c:1362 gtk/gtktextview.c:838
+msgid "Which IM module should be used"
+msgstr ""
+
+#: gtk/gtkentry.c:1376
+msgid "Completion"
+msgstr ""
+
+#: gtk/gtkentry.c:1377
+msgid "The auxiliary completion object"
+msgstr ""
+
+#: gtk/gtkentry.c:1398 gtk/gtkimcontext.c:330 gtk/gtktextview.c:855
+msgid "Purpose"
+msgstr ""
+
+#: gtk/gtkentry.c:1399 gtk/gtkimcontext.c:331 gtk/gtktextview.c:856
+msgid "Purpose of the text field"
+msgstr ""
+
+#: gtk/gtkentry.c:1415 gtk/gtkimcontext.c:338 gtk/gtktextview.c:872
+msgid "hints"
+msgstr ""
+
+#: gtk/gtkentry.c:1416 gtk/gtkimcontext.c:339 gtk/gtktextview.c:873
+msgid "Hints for the text field behaviour"
+msgstr ""
+
+#: gtk/gtkentry.c:1434 gtk/gtklabel.c:737
+msgid "A list of style attributes to apply to the text of the label"
+msgstr ""
+
+#: gtk/gtkentry.c:1449 gtk/gtktextview.c:889
+msgid "Populate all"
+msgstr ""
+
+#: gtk/gtkentry.c:1450 gtk/gtktextview.c:890
+msgid "Whether to emit ::populate-popup for touch popups"
+msgstr ""
+
+#: gtk/gtkentry.c:1463 gtk/gtktexttag.c:530 gtk/gtktextview.c:785
+msgid "Tabs"
+msgstr ""
+
+#: gtk/gtkentry.c:1464
+msgid "A list of tabstop locations to apply to the text of the entry"
+msgstr ""
+
+#: gtk/gtkentry.c:1478
+msgid "Icon Prelight"
+msgstr ""
+
+#: gtk/gtkentry.c:1479
+msgid "Whether activatable icons should prelight when hovered"
+msgstr ""
+
+#: gtk/gtkentry.c:1496
+msgid "Progress Border"
+msgstr ""
+
+#: gtk/gtkentry.c:1497
+msgid "Border around the progress bar"
+msgstr ""
+
+#: gtk/gtkentry.c:2002
+msgid "Border between text and frame."
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:324
+msgid "Completion Model"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:325
+msgid "The model to find matches in"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:331
+msgid "Minimum Key Length"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:332
+msgid "Minimum length of the search key in order to look up matches"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:348 gtk/gtkiconview.c:436
+msgid "Text column"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:349
+msgid "The column of the model containing the strings."
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:368
+msgid "Inline completion"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:369
+msgid "Whether the common prefix should be inserted automatically"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:383
+msgid "Popup completion"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:384
+msgid "Whether the completions should be shown in a popup window"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:399
+msgid "Popup set width"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:400
+msgid "If TRUE, the popup window will have the same size as the entry"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:418
+msgid "Popup single match"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:419
+msgid "If TRUE, the popup window will appear for a single match."
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:433
+msgid "Inline selection"
+msgstr ""
+
+#: gtk/gtkentrycompletion.c:434
+msgid "Your description here"
+msgstr ""
+
+#: gtk/gtkeventbox.c:114
+msgid "Visible Window"
+msgstr ""
+
+#: gtk/gtkeventbox.c:115
+msgid ""
+"Whether the event box is visible, as opposed to invisible and only used to "
+"trap events."
+msgstr ""
+
+#: gtk/gtkeventbox.c:121
+msgid "Above child"
+msgstr ""
+
+#: gtk/gtkeventbox.c:122
+msgid ""
+"Whether the event-trapping window of the eventbox is above the window of the "
+"child widget as opposed to below it."
+msgstr ""
+
+#: gtk/gtkexpander.c:280
+msgid "Expanded"
+msgstr ""
+
+#: gtk/gtkexpander.c:281
+msgid "Whether the expander has been opened to reveal the child widget"
+msgstr ""
+
+#: gtk/gtkexpander.c:289
+msgid "Text of the expander's label"
+msgstr ""
+
+#: gtk/gtkexpander.c:304 gtk/gtklabel.c:743
+msgid "Use markup"
+msgstr ""
+
+#: gtk/gtkexpander.c:305 gtk/gtklabel.c:744
+msgid "The text of the label includes XML markup. See pango_parse_markup()"
+msgstr ""
+
+#: gtk/gtkexpander.c:313
+msgid "Space to put between the label and the child"
+msgstr ""
+
+#: gtk/gtkexpander.c:322 gtk/gtkframe.c:206 gtk/gtktoolbutton.c:253
+#: gtk/gtktoolitemgroup.c:1600
+msgid "Label widget"
+msgstr ""
+
+#: gtk/gtkexpander.c:323
+msgid "A widget to display in place of the usual expander label"
+msgstr ""
+
+#: gtk/gtkexpander.c:330
+msgid "Label fill"
+msgstr ""
+
+#: gtk/gtkexpander.c:331
+msgid "Whether the label widget should fill all available horizontal space"
+msgstr ""
+
+#: gtk/gtkexpander.c:346
+msgid "Resize toplevel"
+msgstr ""
+
+#: gtk/gtkexpander.c:347
+msgid ""
+"Whether the expander will resize the toplevel window upon expanding and "
+"collapsing"
+msgstr ""
+
+#: gtk/gtkexpander.c:353 gtk/gtktoolitemgroup.c:1628 gtk/gtktreeview.c:1207
+msgid "Expander Size"
+msgstr ""
+
+#: gtk/gtkexpander.c:354 gtk/gtktoolitemgroup.c:1629 gtk/gtktreeview.c:1208
+msgid "Size of the expander arrow"
+msgstr ""
+
+#: gtk/gtkexpander.c:363
+msgid "Spacing around expander arrow"
+msgstr ""
+
+#: gtk/gtkfilechooserbutton.c:418
+msgid "Dialog"
+msgstr ""
+
+#: gtk/gtkfilechooserbutton.c:419
+msgid "The file chooser dialog to use."
+msgstr ""
+
+#: gtk/gtkfilechooserbutton.c:450
+msgid "The title of the file chooser dialog."
+msgstr ""
+
+#: gtk/gtkfilechooserbutton.c:464
+msgid "The desired width of the button widget, in characters."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:744
+msgid "Action"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:745
+msgid "The type of operation that the file selector is performing"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:751 gtk/gtkrecentchooser.c:259
+msgid "Filter"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:752
+msgid "The current filter for selecting which files are displayed"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:757
+msgid "Local Only"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:758
+msgid "Whether the selected file(s) should be limited to local file: URLs"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:763
+msgid "Preview widget"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:764
+msgid "Application supplied widget for custom previews."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:769
+msgid "Preview Widget Active"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:770
+msgid ""
+"Whether the application supplied widget for custom previews should be shown."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:775
+msgid "Use Preview Label"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:776
+msgid "Whether to display a stock label with the name of the previewed file."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:781
+msgid "Extra widget"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:782
+msgid "Application supplied widget for extra options."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:787 gtk/gtkrecentchooser.c:201
+msgid "Select Multiple"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:788
+msgid "Whether to allow multiple files to be selected"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:794
+msgid "Show Hidden"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:795
+msgid "Whether the hidden files and folders should be displayed"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:810
+msgid "Do overwrite confirmation"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:811
+msgid ""
+"Whether a file chooser in save mode will present an overwrite confirmation "
+"dialog if necessary."
+msgstr ""
+
+#: gtk/gtkfilechooser.c:827
+msgid "Allow folder creation"
+msgstr ""
+
+#: gtk/gtkfilechooser.c:828
+msgid ""
+"Whether a file chooser not in open mode will offer the user to create new "
+"folders."
+msgstr ""
+
+#: gtk/gtkfixed.c:150 gtk/gtklayout.c:647 gtk/gtktreeviewcolumn.c:262
+msgid "X position"
+msgstr ""
+
+#: gtk/gtkfixed.c:151 gtk/gtklayout.c:648
+msgid "X position of child widget"
+msgstr ""
+
+#: gtk/gtkfixed.c:158 gtk/gtklayout.c:657
+msgid "Y position"
+msgstr ""
+
+#: gtk/gtkfixed.c:159 gtk/gtklayout.c:658
+msgid "Y position of child widget"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:437
+msgid "The title of the font chooser dialog"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:453
+msgid "The name of the selected font"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:454
+msgid "Sans 12"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:469
+msgid "Use font in label"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:470
+msgid "Whether the label is drawn in the selected font"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:485
+msgid "Use size in label"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:486
+msgid "Whether the label is drawn with the selected font size"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:502
+msgid "Show style"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:503
+msgid "Whether the selected font style is shown in the label"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:518
+msgid "Show size"
+msgstr ""
+
+#: gtk/gtkfontbutton.c:519
+msgid "Whether selected font size is shown in the label"
+msgstr ""
+
+#: gtk/gtkfontchooser.c:78
+msgid "Font description"
+msgstr ""
+
+#: gtk/gtkfontchooser.c:104
+msgid "Show preview text entry"
+msgstr ""
+
+#: gtk/gtkfontchooser.c:105
+msgid "Whether the preview text entry is shown or not"
+msgstr ""
+
+#: gtk/gtkframe.c:172
+msgid "Text of the frame's label"
+msgstr ""
+
+#: gtk/gtkframe.c:179
+msgid "Label xalign"
+msgstr ""
+
+#: gtk/gtkframe.c:180
+msgid "The horizontal alignment of the label"
+msgstr ""
+
+#: gtk/gtkframe.c:188
+msgid "Label yalign"
+msgstr ""
+
+#: gtk/gtkframe.c:189
+msgid "The vertical alignment of the label"
+msgstr ""
+
+#: gtk/gtkframe.c:197
+msgid "Frame shadow"
+msgstr ""
+
+#: gtk/gtkframe.c:198
+msgid "Appearance of the frame border"
+msgstr ""
+
+#: gtk/gtkframe.c:207
+msgid "A widget to display in place of the usual frame label"
+msgstr ""
+
+#: gtk/gtkgrid.c:1729
+msgid "Row Homogeneous"
+msgstr ""
+
+#: gtk/gtkgrid.c:1730
+msgid "If TRUE, the rows are all the same height"
+msgstr ""
+
+#: gtk/gtkgrid.c:1736
+msgid "Column Homogeneous"
+msgstr ""
+
+#: gtk/gtkgrid.c:1737
+msgid "If TRUE, the columns are all the same width"
+msgstr ""
+
+#: gtk/gtkgrid.c:1743
+msgid "Baseline Row"
+msgstr ""
+
+#: gtk/gtkgrid.c:1744
+msgid "The row to align the to the baseline when valign is GTK_ALIGN_BASELINE"
+msgstr ""
+
+#: gtk/gtkgrid.c:1758
+msgid "The row number to attach the top side of a child widget to"
+msgstr ""
+
+#: gtk/gtkgrid.c:1764 gtk/gtklayout.c:673 gtk/gtktreeviewcolumn.c:272
+msgid "Width"
+msgstr ""
+
+#: gtk/gtkgrid.c:1765
+msgid "The number of columns that a child spans"
+msgstr ""
+
+#: gtk/gtkgrid.c:1771 gtk/gtklayout.c:682
+msgid "Height"
+msgstr ""
+
+#: gtk/gtkgrid.c:1772
+msgid "The number of rows that a child spans"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1464
+msgid "The title to display"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1471
+msgid "Subitle"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1472
+msgid "The subtitle to display"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1479
+msgid "Custom Title"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1480
+msgid "Custom title widget to display"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1498
+msgid "Show Close button"
+msgstr ""
+
+#: gtk/gtkheaderbar.c:1499
+msgid "Whether to show a window close button"
+msgstr ""
+
+#: gtk/gtkiconview.c:399 gtk/gtklistbox.c:358 gtk/gtktreeselection.c:130
+msgid "Selection mode"
+msgstr ""
+
+#: gtk/gtkiconview.c:400 gtk/gtklistbox.c:359
+msgid "The selection mode"
+msgstr ""
+
+#: gtk/gtkiconview.c:418
+msgid "Pixbuf column"
+msgstr ""
+
+#: gtk/gtkiconview.c:419
+msgid "Model column used to retrieve the icon pixbuf from"
+msgstr ""
+
+#: gtk/gtkiconview.c:437
+msgid "Model column used to retrieve the text from"
+msgstr ""
+
+#: gtk/gtkiconview.c:456
+msgid "Markup column"
+msgstr ""
+
+#: gtk/gtkiconview.c:457
+msgid "Model column used to retrieve the text if using Pango markup"
+msgstr ""
+
+#: gtk/gtkiconview.c:464
+msgid "Icon View Model"
+msgstr ""
+
+#: gtk/gtkiconview.c:465
+msgid "The model for the icon view"
+msgstr ""
+
+#: gtk/gtkiconview.c:481
+msgid "Number of columns"
+msgstr ""
+
+#: gtk/gtkiconview.c:482
+msgid "Number of columns to display"
+msgstr ""
+
+#: gtk/gtkiconview.c:499
+msgid "Width for each item"
+msgstr ""
+
+#: gtk/gtkiconview.c:500
+msgid "The width used for each item"
+msgstr ""
+
+#: gtk/gtkiconview.c:516
+msgid "Space which is inserted between cells of an item"
+msgstr ""
+
+#: gtk/gtkiconview.c:531
+msgid "Row Spacing"
+msgstr ""
+
+#: gtk/gtkiconview.c:532
+msgid "Space which is inserted between grid rows"
+msgstr ""
+
+#: gtk/gtkiconview.c:547
+msgid "Column Spacing"
+msgstr ""
+
+#: gtk/gtkiconview.c:548
+msgid "Space which is inserted between grid columns"
+msgstr ""
+
+#: gtk/gtkiconview.c:563
+msgid "Margin"
+msgstr ""
+
+#: gtk/gtkiconview.c:564
+msgid "Space which is inserted at the edges of the icon view"
+msgstr ""
+
+#: gtk/gtkiconview.c:579
+msgid "Item Orientation"
+msgstr ""
+
+#: gtk/gtkiconview.c:580
+msgid ""
+"How the text and icon of each item are positioned relative to each other"
+msgstr ""
+
+#: gtk/gtkiconview.c:596 gtk/gtktreeview.c:1026 gtk/gtktreeviewcolumn.c:372
+msgid "Reorderable"
+msgstr ""
+
+#: gtk/gtkiconview.c:597 gtk/gtktreeview.c:1027
+msgid "View is reorderable"
+msgstr ""
+
+#: gtk/gtkiconview.c:604 gtk/gtktreeview.c:1177
+msgid "Tooltip Column"
+msgstr ""
+
+#: gtk/gtkiconview.c:605
+msgid "The column in the model containing the tooltip texts for the items"
+msgstr ""
+
+#: gtk/gtkiconview.c:622
+msgid "Item Padding"
+msgstr ""
+
+#: gtk/gtkiconview.c:623
+msgid "Padding around icon view items"
+msgstr ""
+
+#: gtk/gtkiconview.c:656 gtk/gtklistbox.c:366 gtk/gtktreeview.c:1195
+msgid "Activate on Single Click"
+msgstr ""
+
+#: gtk/gtkiconview.c:657 gtk/gtklistbox.c:367 gtk/gtktreeview.c:1196
+msgid "Activate row on a single click"
+msgstr ""
+
+#: gtk/gtkiconview.c:670
+msgid "Selection Box Color"
+msgstr ""
+
+#: gtk/gtkiconview.c:671
+msgid "Color of the selection box"
+msgstr ""
+
+#: gtk/gtkiconview.c:677
+msgid "Selection Box Alpha"
+msgstr ""
+
+#: gtk/gtkiconview.c:678
+msgid "Opacity of the selection box"
+msgstr ""
+
+#: gtk/gtkimage.c:231 gtk/gtkstatusicon.c:222
+msgid "Pixbuf"
+msgstr ""
+
+#: gtk/gtkimage.c:232 gtk/gtkstatusicon.c:223
+msgid "A GdkPixbuf to display"
+msgstr ""
+
+#: gtk/gtkimage.c:239
+msgid "Surface"
+msgstr ""
+
+#: gtk/gtkimage.c:240
+msgid "A cairo_surface_t to display"
+msgstr ""
+
+#: gtk/gtkimage.c:247 gtk/gtkrecentmanager.c:293 gtk/gtkstatusicon.c:230
+msgid "Filename"
+msgstr ""
+
+#: gtk/gtkimage.c:248 gtk/gtkstatusicon.c:231
+msgid "Filename to load and display"
+msgstr ""
+
+#: gtk/gtkimage.c:262 gtk/gtkstatusicon.c:244
+msgid "Stock ID for a stock image to display"
+msgstr ""
+
+#: gtk/gtkimage.c:275
+msgid "Icon set"
+msgstr ""
+
+#: gtk/gtkimage.c:276
+msgid "Icon set to display"
+msgstr ""
+
+#: gtk/gtkimage.c:284 gtk/gtkscalebutton.c:238 gtk/gtktoolbar.c:530
+#: gtk/gtktoolpalette.c:942
+msgid "Icon size"
+msgstr ""
+
+#: gtk/gtkimage.c:285
+msgid "Symbolic size to use for stock icon, icon set or named icon"
+msgstr ""
+
+#: gtk/gtkimage.c:301
+msgid "Pixel size"
+msgstr ""
+
+#: gtk/gtkimage.c:302
+msgid "Pixel size to use for named icon"
+msgstr ""
+
+#: gtk/gtkimage.c:310
+msgid "Animation"
+msgstr ""
+
+#: gtk/gtkimage.c:311
+msgid "GdkPixbufAnimation to display"
+msgstr ""
+
+#: gtk/gtkimage.c:358
+msgid "Resource"
+msgstr ""
+
+#: gtk/gtkimage.c:359
+msgid "The resource path being displayed"
+msgstr ""
+
+#: gtk/gtkimage.c:366 gtk/gtkstatusicon.c:275
+msgid "Storage type"
+msgstr ""
+
+#: gtk/gtkimage.c:367 gtk/gtkstatusicon.c:276
+msgid "The representation being used for image data"
+msgstr ""
+
+#: gtk/gtkimage.c:385
+msgid "Use Fallback"
+msgstr ""
+
+#: gtk/gtkimage.c:386
+msgid "Whether to use icon names fallback"
+msgstr ""
+
+#: gtk/gtkinfobar.c:446 gtk/gtkmessagedialog.c:187
+msgid "Message Type"
+msgstr ""
+
+#: gtk/gtkinfobar.c:447 gtk/gtkmessagedialog.c:188
+msgid "The type of message"
+msgstr ""
+
+#: gtk/gtkinfobar.c:462 gtk/gtksearchbar.c:399
+msgid "Show Close Button"
+msgstr ""
+
+#: gtk/gtkinfobar.c:463
+msgid "Whether to include a standard close button"
+msgstr ""
+
+#: gtk/gtkinfobar.c:518
+msgid "Width of border around the content area"
+msgstr ""
+
+#: gtk/gtkinfobar.c:536
+msgid "Spacing between elements of the area"
+msgstr ""
+
+#: gtk/gtkinfobar.c:570
+msgid "Width of border around the action area"
+msgstr ""
+
+#: gtk/gtkinvisible.c:101 gtk/gtkmountoperation.c:176 gtk/gtkstatusicon.c:294
+#: gtk/gtkstylecontext.c:444 gtk/gtkwindow.c:855
+msgid "Screen"
+msgstr ""
+
+#: gtk/gtkinvisible.c:102 gtk/gtkwindow.c:856
+msgid "The screen where this window will be displayed"
+msgstr ""
+
+#: gtk/gtklabel.c:730
+msgid "The text of the label"
+msgstr ""
+
+#: gtk/gtklabel.c:758 gtk/gtktexttag.c:404 gtk/gtktextview.c:746
+msgid "Justification"
+msgstr ""
+
+#: gtk/gtklabel.c:759
+msgid ""
+"The alignment of the lines in the text of the label relative to each other. "
+"This does NOT affect the alignment of the label within its allocation. See "
+"GtkMisc::xalign for that"
+msgstr ""
+
+#: gtk/gtklabel.c:767
+msgid "Pattern"
+msgstr ""
+
+#: gtk/gtklabel.c:768
+msgid ""
+"A string with _ characters in positions correspond to characters in the text "
+"to underline"
+msgstr ""
+
+#: gtk/gtklabel.c:775
+msgid "Line wrap"
+msgstr ""
+
+#: gtk/gtklabel.c:776
+msgid "If set, wrap lines if the text becomes too wide"
+msgstr ""
+
+#: gtk/gtklabel.c:791
+msgid "Line wrap mode"
+msgstr ""
+
+#: gtk/gtklabel.c:792
+msgid "If wrap is set, controls how linewrapping is done"
+msgstr ""
+
+#: gtk/gtklabel.c:800
+msgid "Whether the label text can be selected with the mouse"
+msgstr ""
+
+#: gtk/gtklabel.c:806
+msgid "Mnemonic key"
+msgstr ""
+
+#: gtk/gtklabel.c:807
+msgid "The mnemonic accelerator key for this label"
+msgstr ""
+
+#: gtk/gtklabel.c:815
+msgid "Mnemonic widget"
+msgstr ""
+
+#: gtk/gtklabel.c:816
+msgid "The widget to be activated when the label's mnemonic key is pressed"
+msgstr ""
+
+#: gtk/gtklabel.c:862
+msgid ""
+"The preferred place to ellipsize the string, if the label does not have "
+"enough room to display the entire string"
+msgstr ""
+
+#: gtk/gtklabel.c:903
+msgid "Single Line Mode"
+msgstr ""
+
+#: gtk/gtklabel.c:904
+msgid "Whether the label is in single line mode"
+msgstr ""
+
+#: gtk/gtklabel.c:921
+msgid "Angle"
+msgstr ""
+
+#: gtk/gtklabel.c:922
+msgid "Angle at which the label is rotated"
+msgstr ""
+
+#: gtk/gtklabel.c:944
+msgid "The desired maximum width of the label, in characters"
+msgstr ""
+
+#: gtk/gtklabel.c:962
+msgid "Track visited links"
+msgstr ""
+
+#: gtk/gtklabel.c:963
+msgid "Whether visited links should be tracked"
+msgstr ""
+
+#: gtk/gtklabel.c:980
+msgid "Number of lines"
+msgstr ""
+
+#: gtk/gtklabel.c:981
+msgid "The desired number of lines, when ellipsizing a wrapping label"
+msgstr ""
+
+#: gtk/gtklayout.c:674
+msgid "The width of the layout"
+msgstr ""
+
+#: gtk/gtklayout.c:683
+msgid "The height of the layout"
+msgstr ""
+
+#: gtk/gtklevelbar.c:930
+msgid "Currently filled value level"
+msgstr ""
+
+#: gtk/gtklevelbar.c:931
+msgid "Currently filled value level of the level bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:944
+msgid "Minimum value level for the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:945
+msgid "Minimum value level that can be displayed by the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:958
+msgid "Maximum value level for the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:959
+msgid "Maximum value level that can be displayed by the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:978
+msgid "The mode of the value indicator"
+msgstr ""
+
+#: gtk/gtklevelbar.c:979
+msgid "The mode of the value indicator displayed by the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:995
+msgid "Invert the direction in which the level bar grows"
+msgstr ""
+
+#: gtk/gtklevelbar.c:1009
+msgid "Minimum height for filling blocks"
+msgstr ""
+
+#: gtk/gtklevelbar.c:1010
+msgid "Minimum height for blocks that fill the bar"
+msgstr ""
+
+#: gtk/gtklevelbar.c:1023
+msgid "Minimum width for filling blocks"
+msgstr ""
+
+#: gtk/gtklevelbar.c:1024
+msgid "Minimum width for blocks that fill the bar"
+msgstr ""
+
+#: gtk/gtklinkbutton.c:173
+msgid "URI"
+msgstr ""
+
+#: gtk/gtklinkbutton.c:174
+msgid "The URI bound to this button"
+msgstr ""
+
+#: gtk/gtklinkbutton.c:188
+msgid "Visited"
+msgstr ""
+
+#: gtk/gtklinkbutton.c:189
+msgid "Whether this link has been visited."
+msgstr ""
+
+#: gtk/gtklockbutton.c:256
+msgid "Permission"
+msgstr ""
+
+#: gtk/gtklockbutton.c:257
+msgid "The GPermission object controlling this button"
+msgstr ""
+
+#: gtk/gtklockbutton.c:264
+msgid "Lock Text"
+msgstr ""
+
+#: gtk/gtklockbutton.c:265
+msgid "The text to display when prompting the user to lock"
+msgstr ""
+
+#: gtk/gtklockbutton.c:273
+msgid "Unlock Text"
+msgstr ""
+
+#: gtk/gtklockbutton.c:274
+msgid "The text to display when prompting the user to unlock"
+msgstr ""
+
+#: gtk/gtklockbutton.c:282
+msgid "Lock Tooltip"
+msgstr ""
+
+#: gtk/gtklockbutton.c:283
+msgid "The tooltip to display when prompting the user to lock"
+msgstr ""
+
+#: gtk/gtklockbutton.c:291
+msgid "Unlock Tooltip"
+msgstr ""
+
+#: gtk/gtklockbutton.c:292
+msgid "The tooltip to display when prompting the user to unlock"
+msgstr ""
+
+#: gtk/gtklockbutton.c:300
+msgid "Not Authorized Tooltip"
+msgstr ""
+
+#: gtk/gtklockbutton.c:301
+msgid ""
+"The tooltip to display when prompting the user cannot obtain authorization"
+msgstr ""
+
+#: gtk/gtkmenubar.c:190
+msgid "Pack direction"
+msgstr ""
+
+#: gtk/gtkmenubar.c:191
+msgid "The pack direction of the menubar"
+msgstr ""
+
+#: gtk/gtkmenubar.c:207
+msgid "Child Pack direction"
+msgstr ""
+
+#: gtk/gtkmenubar.c:208
+msgid "The child pack direction of the menubar"
+msgstr ""
+
+#: gtk/gtkmenubar.c:217
+msgid "Style of bevel around the menubar"
+msgstr ""
+
+#: gtk/gtkmenubar.c:233 gtk/gtktoolbar.c:589
+msgid "Internal padding"
+msgstr ""
+
+#: gtk/gtkmenubar.c:234
+msgid "Amount of border space between the menubar shadow and the menu items"
+msgstr ""
+
+#: gtk/gtkmenubutton.c:513
+msgid "popup"
+msgstr ""
+
+#: gtk/gtkmenubutton.c:514
+msgid "The dropdown menu."
+msgstr ""
+
+#: gtk/gtkmenubutton.c:530
+msgid "menu-model"
+msgstr ""
+
+#: gtk/gtkmenubutton.c:531
+msgid "The dropdown menu's model."
+msgstr ""
+
+#: gtk/gtkmenubutton.c:544
+msgid "align-widget"
+msgstr ""
+
+#: gtk/gtkmenubutton.c:545
+msgid "The parent widget which the menu should align with."
+msgstr ""
+
+#: gtk/gtkmenubutton.c:559
+msgid "direction"
+msgstr ""
+
+#: gtk/gtkmenubutton.c:560
+msgid "The direction the arrow should point."
+msgstr ""
+
+#: gtk/gtkmenu.c:558
+msgid "The currently selected menu item"
+msgstr ""
+
+#: gtk/gtkmenu.c:573
+msgid "The accel group holding accelerators for the menu"
+msgstr ""
+
+#: gtk/gtkmenu.c:587 gtk/gtkmenuitem.c:433
+msgid "Accel Path"
+msgstr ""
+
+#: gtk/gtkmenu.c:588
+msgid "An accel path used to conveniently construct accel paths of child items"
+msgstr ""
+
+#: gtk/gtkmenu.c:604
+msgid "Attach Widget"
+msgstr ""
+
+#: gtk/gtkmenu.c:605
+msgid "The widget the menu is attached to"
+msgstr ""
+
+#: gtk/gtkmenu.c:621
+msgid ""
+"A title that may be displayed by the window manager when this menu is torn-"
+"off"
+msgstr ""
+
+#: gtk/gtkmenu.c:637
+msgid "Tearoff State"
+msgstr ""
+
+#: gtk/gtkmenu.c:638
+msgid "A boolean that indicates whether the menu is torn-off"
+msgstr ""
+
+#: gtk/gtkmenu.c:652
+msgid "Monitor"
+msgstr ""
+
+#: gtk/gtkmenu.c:653
+msgid "The monitor the menu will be popped up on"
+msgstr ""
+
+#: gtk/gtkmenu.c:673
+msgid "Reserve Toggle Size"
+msgstr ""
+
+#: gtk/gtkmenu.c:674
+msgid ""
+"A boolean that indicates whether the menu reserves space for toggles and "
+"icons"
+msgstr ""
+
+#: gtk/gtkmenu.c:689
+msgid "Horizontal Padding"
+msgstr ""
+
+#: gtk/gtkmenu.c:690
+msgid "Extra space at the left and right edges of the menu"
+msgstr ""
+
+#: gtk/gtkmenu.c:708
+msgid "Vertical Padding"
+msgstr ""
+
+#: gtk/gtkmenu.c:709
+msgid "Extra space at the top and bottom of the menu"
+msgstr ""
+
+#: gtk/gtkmenu.c:718
+msgid "Vertical Offset"
+msgstr ""
+
+#: gtk/gtkmenu.c:719
+msgid ""
+"When the menu is a submenu, position it this number of pixels offset "
+"vertically"
+msgstr ""
+
+#: gtk/gtkmenu.c:727
+msgid "Horizontal Offset"
+msgstr ""
+
+#: gtk/gtkmenu.c:728
+msgid ""
+"When the menu is a submenu, position it this number of pixels offset "
+"horizontally"
+msgstr ""
+
+#: gtk/gtkmenu.c:736
+msgid "Double Arrows"
+msgstr ""
+
+#: gtk/gtkmenu.c:737
+msgid "When scrolling, always show both arrows."
+msgstr ""
+
+#: gtk/gtkmenu.c:750
+msgid "Arrow Placement"
+msgstr ""
+
+#: gtk/gtkmenu.c:751
+msgid "Indicates where scroll arrows should be placed"
+msgstr ""
+
+#: gtk/gtkmenu.c:759
+msgid "Left Attach"
+msgstr ""
+
+#: gtk/gtkmenu.c:767
+msgid "Right Attach"
+msgstr ""
+
+#: gtk/gtkmenu.c:768
+msgid "The column number to attach the right side of the child to"
+msgstr ""
+
+#: gtk/gtkmenu.c:775
+msgid "Top Attach"
+msgstr ""
+
+#: gtk/gtkmenu.c:776
+msgid "The row number to attach the top of the child to"
+msgstr ""
+
+#: gtk/gtkmenu.c:783
+msgid "Bottom Attach"
+msgstr ""
+
+#: gtk/gtkmenu.c:798
+msgid "Arbitrary constant to scale down the size of the scroll arrow"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:401
+msgid "Right Justified"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:402
+msgid ""
+"Sets whether the menu item appears justified at the right side of a menu bar"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:416
+msgid "Submenu"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:417
+msgid "The submenu attached to the menu item, or NULL if it has none"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:434
+msgid "Sets the accelerator path of the menu item"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:449
+msgid "The text for the child label"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:525
+msgid "Amount of space used up by arrow, relative to the menu item's font size"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:538
+msgid "Width in Characters"
+msgstr ""
+
+#: gtk/gtkmenuitem.c:539
+msgid "The minimum desired width of the menu item in characters"
+msgstr ""
+
+#: gtk/gtkmenushell.c:416
+msgid "Take Focus"
+msgstr ""
+
+#: gtk/gtkmenushell.c:417
+msgid "A boolean that determines whether the menu grabs the keyboard focus"
+msgstr ""
+
+#: gtk/gtkmenutoolbutton.c:272
+msgid "Menu"
+msgstr ""
+
+#: gtk/gtkmenutoolbutton.c:273
+msgid "The dropdown menu"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:170
+msgid "Image/label border"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:171
+msgid "Width of border around the label and image in the message dialog"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:195
+msgid "Message Buttons"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:196
+msgid "The buttons shown in the message dialog"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:213
+msgid "The primary text of the message dialog"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:228
+msgid "Use Markup"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:229
+msgid "The primary text of the title includes Pango markup."
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:243
+msgid "Secondary Text"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:244
+msgid "The secondary text of the message dialog"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:259
+msgid "Use Markup in secondary"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:260
+msgid "The secondary text includes Pango markup."
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:274
+msgid "Image"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:275
+msgid "The image"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:291
+msgid "Message area"
+msgstr ""
+
+#: gtk/gtkmessagedialog.c:292
+msgid "GtkVBox that holds the dialog's primary and secondary labels"
+msgstr ""
+
+#: gtk/gtkmisc.c:113
+msgid "Y align"
+msgstr ""
+
+#: gtk/gtkmisc.c:114
+msgid "The vertical alignment, from 0 (top) to 1 (bottom)"
+msgstr ""
+
+#: gtk/gtkmisc.c:123
+msgid "X pad"
+msgstr ""
+
+#: gtk/gtkmisc.c:124
+msgid ""
+"The amount of space to add on the left and right of the widget, in pixels"
+msgstr ""
+
+#: gtk/gtkmisc.c:133
+msgid "Y pad"
+msgstr ""
+
+#: gtk/gtkmisc.c:134
+msgid ""
+"The amount of space to add on the top and bottom of the widget, in pixels"
+msgstr ""
+
+#: gtk/gtkmountoperation.c:160 gtk/gtkstylecontext.c:474
+msgid "Parent"
+msgstr ""
+
+#: gtk/gtkmountoperation.c:161
+msgid "The parent window"
+msgstr ""
+
+#: gtk/gtkmountoperation.c:168
+msgid "Is Showing"
+msgstr ""
+
+#: gtk/gtkmountoperation.c:169
+msgid "Are we showing a dialog"
+msgstr ""
+
+#: gtk/gtkmountoperation.c:177
+msgid "The screen where this window will be displayed."
+msgstr ""
+
+#: gtk/gtknotebook.c:698
+msgid "Page"
+msgstr ""
+
+#: gtk/gtknotebook.c:699
+msgid "The index of the current page"
+msgstr ""
+
+#: gtk/gtknotebook.c:707
+msgid "Tab Position"
+msgstr ""
+
+#: gtk/gtknotebook.c:708
+msgid "Which side of the notebook holds the tabs"
+msgstr ""
+
+#: gtk/gtknotebook.c:715
+msgid "Show Tabs"
+msgstr ""
+
+#: gtk/gtknotebook.c:716
+msgid "Whether tabs should be shown"
+msgstr ""
+
+#: gtk/gtknotebook.c:722
+msgid "Show Border"
+msgstr ""
+
+#: gtk/gtknotebook.c:723
+msgid "Whether the border should be shown"
+msgstr ""
+
+#: gtk/gtknotebook.c:729
+msgid "Scrollable"
+msgstr ""
+
+#: gtk/gtknotebook.c:730
+msgid "If TRUE, scroll arrows are added if there are too many tabs to fit"
+msgstr ""
+
+#: gtk/gtknotebook.c:736
+msgid "Enable Popup"
+msgstr ""
+
+#: gtk/gtknotebook.c:737
+msgid ""
+"If TRUE, pressing the right mouse button on the notebook pops up a menu that "
+"you can use to go to a page"
+msgstr ""
+
+#: gtk/gtknotebook.c:751
+msgid "Group Name"
+msgstr ""
+
+#: gtk/gtknotebook.c:752
+msgid "Group name for tab drag and drop"
+msgstr ""
+
+#: gtk/gtknotebook.c:759
+msgid "Tab label"
+msgstr ""
+
+#: gtk/gtknotebook.c:760
+msgid "The string displayed on the child's tab label"
+msgstr ""
+
+#: gtk/gtknotebook.c:766
+msgid "Menu label"
+msgstr ""
+
+#: gtk/gtknotebook.c:767
+msgid "The string displayed in the child's menu entry"
+msgstr ""
+
+#: gtk/gtknotebook.c:780
+msgid "Tab expand"
+msgstr ""
+
+#: gtk/gtknotebook.c:781
+msgid "Whether to expand the child's tab"
+msgstr ""
+
+#: gtk/gtknotebook.c:787
+msgid "Tab fill"
+msgstr ""
+
+#: gtk/gtknotebook.c:788
+msgid "Whether the child's tab should fill the allocated area"
+msgstr ""
+
+#: gtk/gtknotebook.c:795
+msgid "Tab reorderable"
+msgstr ""
+
+#: gtk/gtknotebook.c:796
+msgid "Whether the tab is reorderable by user action"
+msgstr ""
+
+#: gtk/gtknotebook.c:802
+msgid "Tab detachable"
+msgstr ""
+
+#: gtk/gtknotebook.c:803
+msgid "Whether the tab is detachable"
+msgstr ""
+
+#: gtk/gtknotebook.c:818 gtk/gtkscrollbar.c:100
+msgid "Secondary backward stepper"
+msgstr ""
+
+#: gtk/gtknotebook.c:819
+msgid ""
+"Display a second backward arrow button on the opposite end of the tab area"
+msgstr ""
+
+#: gtk/gtknotebook.c:834 gtk/gtkscrollbar.c:107
+msgid "Secondary forward stepper"
+msgstr ""
+
+#: gtk/gtknotebook.c:835
+msgid ""
+"Display a second forward arrow button on the opposite end of the tab area"
+msgstr ""
+
+#: gtk/gtknotebook.c:849 gtk/gtkscrollbar.c:86
+msgid "Backward stepper"
+msgstr ""
+
+#: gtk/gtknotebook.c:850 gtk/gtkscrollbar.c:87
+msgid "Display the standard backward arrow button"
+msgstr ""
+
+#: gtk/gtknotebook.c:864 gtk/gtkscrollbar.c:93
+msgid "Forward stepper"
+msgstr ""
+
+#: gtk/gtknotebook.c:865 gtk/gtkscrollbar.c:94
+msgid "Display the standard forward arrow button"
+msgstr ""
+
+#: gtk/gtknotebook.c:879
+msgid "Tab overlap"
+msgstr ""
+
+#: gtk/gtknotebook.c:880
+msgid "Size of tab overlap area"
+msgstr ""
+
+#: gtk/gtknotebook.c:895
+msgid "Tab curvature"
+msgstr ""
+
+#: gtk/gtknotebook.c:896
+msgid "Size of tab curvature"
+msgstr ""
+
+#: gtk/gtknotebook.c:912
+msgid "Arrow spacing"
+msgstr ""
+
+#: gtk/gtknotebook.c:913
+msgid "Scroll arrow spacing"
+msgstr ""
+
+#: gtk/gtknotebook.c:929
+msgid "Initial gap"
+msgstr ""
+
+#: gtk/gtknotebook.c:930
+msgid "Initial gap before the first tab"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:641
+msgid "Icon's count"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:642
+msgid "The count of the emblem currently displayed"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:648
+msgid "Icon's label"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:649
+msgid "The label to be displayed over the icon"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:655
+msgid "Icon's style context"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:656
+msgid "The style context to theme the icon appearance"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:662
+msgid "Background icon"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:663
+msgid "The icon for the number emblem background"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:669
+msgid "Background icon name"
+msgstr ""
+
+#: gtk/gtknumerableicon.c:670
+msgid "The icon name for the number emblem background"
+msgstr ""
+
+#: gtk/gtkorientable.c:61 gtk/gtkstatusicon.c:334 gtk/gtktrayicon-x11.c:126
+msgid "Orientation"
+msgstr ""
+
+#: gtk/gtkorientable.c:62
+msgid "The orientation of the orientable"
+msgstr ""
+
+#: gtk/gtkpaned.c:351
+msgid ""
+"Position of paned separator in pixels (0 means all the way to the left/top)"
+msgstr ""
+
+#: gtk/gtkpaned.c:360
+msgid "Position Set"
+msgstr ""
+
+#: gtk/gtkpaned.c:361
+msgid "TRUE if the Position property should be used"
+msgstr ""
+
+#: gtk/gtkpaned.c:367
+msgid "Handle Size"
+msgstr ""
+
+#: gtk/gtkpaned.c:368
+msgid "Width of handle"
+msgstr ""
+
+#: gtk/gtkpaned.c:384
+msgid "Minimal Position"
+msgstr ""
+
+#: gtk/gtkpaned.c:385
+msgid "Smallest possible value for the \"position\" property"
+msgstr ""
+
+#: gtk/gtkpaned.c:402
+msgid "Maximal Position"
+msgstr ""
+
+#: gtk/gtkpaned.c:403
+msgid "Largest possible value for the \"position\" property"
+msgstr ""
+
+#: gtk/gtkpaned.c:420
+msgid "Resize"
+msgstr ""
+
+#: gtk/gtkpaned.c:421
+msgid "If TRUE, the child expands and shrinks along with the paned widget"
+msgstr ""
+
+#: gtk/gtkpaned.c:436
+msgid "Shrink"
+msgstr ""
+
+#: gtk/gtkpaned.c:437
+msgid "If TRUE, the child can be made smaller than its requisition"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4182
+msgid "Location to Select"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4183
+msgid "The location to highlight in the sidebar"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4188
+msgid "Open Flags"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4189
+msgid ""
+"Modes in which the calling application can open locations selected in the "
+"sidebar"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4195
+msgid "Show 'Desktop'"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4196
+msgid "Whether the sidebar includes a builtin shortcut to the Desktop folder"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4201
+msgid "Show 'Connect to Server'"
+msgstr ""
+
+#: gtk/gtkplacessidebar.c:4202
+msgid ""
+"Whether the sidebar includes a builtin shortcut to a 'Connect to server' "
+"dialog"
+msgstr ""
+
+#: gtk/gtkplug.c:202 gtk/gtkstatusicon.c:318
+msgid "Embedded"
+msgstr ""
+
+#: gtk/gtkplug.c:203
+msgid "Whether the plug is embedded"
+msgstr ""
+
+#: gtk/gtkplug.c:217
+msgid "Socket Window"
+msgstr ""
+
+#: gtk/gtkplug.c:218
+msgid "The window of the socket the plug is embedded in"
+msgstr ""
+
+#: gtk/gtkpressandhold.c:147
+msgid "Hold Time"
+msgstr ""
+
+#: gtk/gtkpressandhold.c:147
+msgid "Hold Time (in milliseconds)"
+msgstr ""
+
+#: gtk/gtkpressandhold.c:151
+msgid "Drag Threshold"
+msgstr ""
+
+#: gtk/gtkpressandhold.c:151
+msgid "Drag Threshold (in pixels)"
+msgstr ""
+
+#: gtk/gtkprinter.c:122
+msgid "Name of the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:128
+msgid "Backend"
+msgstr ""
+
+#: gtk/gtkprinter.c:129
+msgid "Backend for the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:135
+msgid "Is Virtual"
+msgstr ""
+
+#: gtk/gtkprinter.c:136
+msgid "FALSE if this represents a real hardware printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:142
+msgid "Accepts PDF"
+msgstr ""
+
+#: gtk/gtkprinter.c:143
+msgid "TRUE if this printer can accept PDF"
+msgstr ""
+
+#: gtk/gtkprinter.c:149
+msgid "Accepts PostScript"
+msgstr ""
+
+#: gtk/gtkprinter.c:150
+msgid "TRUE if this printer can accept PostScript"
+msgstr ""
+
+#: gtk/gtkprinter.c:156
+msgid "State Message"
+msgstr ""
+
+#: gtk/gtkprinter.c:157
+msgid "String giving the current state of the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:163
+msgid "Location"
+msgstr ""
+
+#: gtk/gtkprinter.c:164
+msgid "The location of the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:171
+msgid "The icon name to use for the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:177
+msgid "Job Count"
+msgstr ""
+
+#: gtk/gtkprinter.c:178
+msgid "Number of jobs queued in the printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:196
+msgid "Paused Printer"
+msgstr ""
+
+#: gtk/gtkprinter.c:197
+msgid "TRUE if this printer is paused"
+msgstr ""
+
+#: gtk/gtkprinter.c:210
+msgid "Accepting Jobs"
+msgstr ""
+
+#: gtk/gtkprinter.c:211
+msgid "TRUE if this printer is accepting new jobs"
+msgstr ""
+
+#: gtk/gtkprinteroption.c:103
+msgid "Option Value"
+msgstr ""
+
+#: gtk/gtkprinteroption.c:104
+msgid "Value of the option"
+msgstr ""
+
+#: gtk/gtkprinteroptionwidget.c:126
+msgid "Source option"
+msgstr ""
+
+#: gtk/gtkprinteroptionwidget.c:127
+msgid "The PrinterOption backing this widget"
+msgstr ""
+
+#: gtk/gtkprintjob.c:135
+msgid "Title of the print job"
+msgstr ""
+
+#: gtk/gtkprintjob.c:143
+msgid "Printer"
+msgstr ""
+
+#: gtk/gtkprintjob.c:144
+msgid "Printer to print the job to"
+msgstr ""
+
+#: gtk/gtkprintjob.c:152
+msgid "Settings"
+msgstr ""
+
+#: gtk/gtkprintjob.c:153
+msgid "Printer settings"
+msgstr ""
+
+#: gtk/gtkprintjob.c:161 gtk/gtkprintjob.c:162 gtk/gtkprintunixdialog.c:413
+msgid "Page Setup"
+msgstr ""
+
+#: gtk/gtkprintjob.c:170 gtk/gtkprintoperation.c:1212
+msgid "Track Print Status"
+msgstr ""
+
+#: gtk/gtkprintjob.c:171
+msgid ""
+"TRUE if the print job will continue to emit status-changed signals after the "
+"print data has been sent to the printer or print server."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1084
+msgid "Default Page Setup"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1085
+msgid "The GtkPageSetup used by default"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1103 gtk/gtkprintunixdialog.c:431
+msgid "Print Settings"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1104 gtk/gtkprintunixdialog.c:432
+msgid "The GtkPrintSettings used for initializing the dialog"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1122
+msgid "Job Name"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1123
+msgid "A string used for identifying the print job."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1147
+msgid "Number of Pages"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1148
+msgid "The number of pages in the document."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1169 gtk/gtkprintunixdialog.c:421
+msgid "Current Page"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1170 gtk/gtkprintunixdialog.c:422
+msgid "The current page in the document"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1191
+msgid "Use full page"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1192
+msgid ""
+"TRUE if the origin of the context should be at the corner of the page and "
+"not the corner of the imageable area"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1213
+msgid ""
+"TRUE if the print operation will continue to report on the print job status "
+"after the print data has been sent to the printer or print server."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1230
+msgid "Unit"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1231
+msgid "The unit in which distances can be measured in the context"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1248
+msgid "Show Dialog"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1249
+msgid "TRUE if a progress dialog is shown while printing."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1272
+msgid "Allow Async"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1273
+msgid "TRUE if print process may run asynchronous."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1295 gtk/gtkprintoperation.c:1296
+msgid "Export filename"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1310
+msgid "Status"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1311
+msgid "The status of the print operation"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1331
+msgid "Status String"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1332
+msgid "A human-readable description of the status"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1350
+msgid "Custom tab label"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1351
+msgid "Label for the tab containing custom widgets."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1366 gtk/gtkprintunixdialog.c:456
+msgid "Support Selection"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1367
+msgid "TRUE if the print operation will support print of selection."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1383 gtk/gtkprintunixdialog.c:464
+msgid "Has Selection"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1384
+msgid "TRUE if a selection exists."
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1399 gtk/gtkprintunixdialog.c:472
+msgid "Embed Page Setup"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1400 gtk/gtkprintunixdialog.c:473
+msgid "TRUE if page setup combos are embedded in GtkPrintUnixDialog"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1421
+msgid "Number of Pages To Print"
+msgstr ""
+
+#: gtk/gtkprintoperation.c:1422
+msgid "The number of pages that will be printed."
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:414
+msgid "The GtkPageSetup to use"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:439
+msgid "Selected Printer"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:440
+msgid "The GtkPrinter which is selected"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:447
+msgid "Manual Capabilities"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:448
+msgid "Capabilities the application can handle"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:457
+msgid "Whether the dialog supports selection"
+msgstr ""
+
+#: gtk/gtkprintunixdialog.c:465
+msgid "Whether the application has a selection"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:158
+msgid "Fraction"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:159
+msgid "The fraction of total work that has been completed"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:166
+msgid "Pulse Step"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:167
+msgid "The fraction of total progress to move the bouncing block when pulsed"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:175
+msgid "Text to be displayed in the progress bar"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:196
+msgid "Show text"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:197
+msgid "Whether the progress is shown as text."
+msgstr ""
+
+#: gtk/gtkprogressbar.c:219
+msgid ""
+"The preferred place to ellipsize the string, if the progress bar does not "
+"have enough room to display the entire string, if at all."
+msgstr ""
+
+#: gtk/gtkprogressbar.c:226
+msgid "X spacing"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:227
+msgid "Extra spacing applied to the width of a progress bar."
+msgstr ""
+
+#: gtk/gtkprogressbar.c:232
+msgid "Y spacing"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:233
+msgid "Extra spacing applied to the height of a progress bar."
+msgstr ""
+
+#: gtk/gtkprogressbar.c:246
+msgid "Minimum horizontal bar width"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:247
+msgid "The minimum horizontal width of the progress bar"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:259
+msgid "Minimum horizontal bar height"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:260
+msgid "Minimum horizontal height of the progress bar"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:272
+msgid "Minimum vertical bar width"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:273
+msgid "The minimum vertical width of the progress bar"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:285
+msgid "Minimum vertical bar height"
+msgstr ""
+
+#: gtk/gtkprogressbar.c:286
+msgid "The minimum vertical height of the progress bar"
+msgstr ""
+
+#: gtk/gtkradiobutton.c:164
+msgid "The radio button whose group this widget belongs to."
+msgstr ""
+
+#: gtk/gtkradiomenuitem.c:409
+msgid "The radio menu item whose group this widget belongs to."
+msgstr ""
+
+#: gtk/gtkradiotoolbutton.c:81
+msgid "The radio tool button whose group this button belongs to."
+msgstr ""
+
+#: gtk/gtkrange.c:436
+msgid "The GtkAdjustment that contains the current value of this range object"
+msgstr ""
+
+#: gtk/gtkrange.c:444
+msgid "Invert direction slider moves to increase range value"
+msgstr ""
+
+#: gtk/gtkrange.c:451
+msgid "Lower stepper sensitivity"
+msgstr ""
+
+#: gtk/gtkrange.c:452
+msgid ""
+"The sensitivity policy for the stepper that points to the adjustment's lower "
+"side"
+msgstr ""
+
+#: gtk/gtkrange.c:460
+msgid "Upper stepper sensitivity"
+msgstr ""
+
+#: gtk/gtkrange.c:461
+msgid ""
+"The sensitivity policy for the stepper that points to the adjustment's upper "
+"side"
+msgstr ""
+
+#: gtk/gtkrange.c:478
+msgid "Show Fill Level"
+msgstr ""
+
+#: gtk/gtkrange.c:479
+msgid "Whether to display a fill level indicator graphics on trough."
+msgstr ""
+
+#: gtk/gtkrange.c:495
+msgid "Restrict to Fill Level"
+msgstr ""
+
+#: gtk/gtkrange.c:496
+msgid "Whether to restrict the upper boundary to the fill level."
+msgstr ""
+
+#: gtk/gtkrange.c:511
+msgid "Fill Level"
+msgstr ""
+
+#: gtk/gtkrange.c:512
+msgid "The fill level."
+msgstr ""
+
+#: gtk/gtkrange.c:529
+msgid "Round Digits"
+msgstr ""
+
+#: gtk/gtkrange.c:530
+msgid "The number of digits to round the value to."
+msgstr ""
+
+#: gtk/gtkrange.c:538 gtk/gtkswitch.c:868
+msgid "Slider Width"
+msgstr ""
+
+#: gtk/gtkrange.c:539
+msgid "Width of scrollbar or scale thumb"
+msgstr ""
+
+#: gtk/gtkrange.c:546
+msgid "Trough Border"
+msgstr ""
+
+#: gtk/gtkrange.c:547
+msgid "Spacing between thumb/steppers and outer trough bevel"
+msgstr ""
+
+#: gtk/gtkrange.c:554
+msgid "Stepper Size"
+msgstr ""
+
+#: gtk/gtkrange.c:555
+msgid "Length of step buttons at ends"
+msgstr ""
+
+#: gtk/gtkrange.c:568
+msgid "Stepper Spacing"
+msgstr ""
+
+#: gtk/gtkrange.c:569
+msgid "Spacing between step buttons and thumb"
+msgstr ""
+
+#: gtk/gtkrange.c:576
+msgid "Arrow X Displacement"
+msgstr ""
+
+#: gtk/gtkrange.c:577
+msgid ""
+"How far in the x direction to move the arrow when the button is depressed"
+msgstr ""
+
+#: gtk/gtkrange.c:584
+msgid "Arrow Y Displacement"
+msgstr ""
+
+#: gtk/gtkrange.c:585
+msgid ""
+"How far in the y direction to move the arrow when the button is depressed"
+msgstr ""
+
+#: gtk/gtkrange.c:601
+msgid "Trough Under Steppers"
+msgstr ""
+
+#: gtk/gtkrange.c:602
+msgid ""
+"Whether to draw trough for full length of range or exclude the steppers and "
+"spacing"
+msgstr ""
+
+#: gtk/gtkrange.c:615
+msgid "Arrow scaling"
+msgstr ""
+
+#: gtk/gtkrange.c:616
+msgid "Arrow scaling with regard to scroll button size"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:130
+msgid "Recent Manager"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:131
+msgid "The RecentManager object to use"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:145
+msgid "Show Private"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:146
+msgid "Whether the private items should be displayed"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:159
+msgid "Show Tooltips"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:160
+msgid "Whether there should be a tooltip on the item"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:172
+msgid "Show Icons"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:173
+msgid "Whether there should be an icon near the item"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:188
+msgid "Show Not Found"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:189
+msgid "Whether the items pointing to unavailable resources should be displayed"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:202
+msgid "Whether to allow multiple items to be selected"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:215
+msgid "Local only"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:216
+msgid "Whether the selected resource(s) should be limited to local file: URIs"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:229
+msgid "Limit"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:230
+msgid "The maximum number of items to be displayed"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:244
+msgid "Sort Type"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:245
+msgid "The sorting order of the items displayed"
+msgstr ""
+
+#: gtk/gtkrecentchooser.c:260
+msgid "The current filter for selecting which resources are displayed"
+msgstr ""
+
+#: gtk/gtkrecentmanager.c:294
+msgid "The full path to the file to be used to store and read the list"
+msgstr ""
+
+#: gtk/gtkrecentmanager.c:309
+msgid "The size of the recently used resources list"
+msgstr ""
+
+#: gtk/gtkrevealer.c:221 gtk/gtkstack.c:379
+msgid "Transition type"
+msgstr ""
+
+#: gtk/gtkrevealer.c:222 gtk/gtkstack.c:380
+msgid "The type of animation used to transition"
+msgstr ""
+
+#: gtk/gtkrevealer.c:230 gtk/gtkstack.c:373
+msgid "Transition duration"
+msgstr ""
+
+#: gtk/gtkrevealer.c:231 gtk/gtkstack.c:374
+msgid "The animation duration, in milliseconds"
+msgstr ""
+
+#: gtk/gtkrevealer.c:238
+msgid "Reveal Child"
+msgstr ""
+
+#: gtk/gtkrevealer.c:239
+msgid "Whether the container should reveal the child"
+msgstr ""
+
+#: gtk/gtkrevealer.c:246
+msgid "Child Revealed"
+msgstr ""
+
+#: gtk/gtkrevealer.c:247
+msgid "Whether the child is revealed and the animation target reached"
+msgstr ""
+
+#: gtk/gtkscalebutton.c:229
+msgid "The value of the scale"
+msgstr ""
+
+#: gtk/gtkscalebutton.c:239
+msgid "The icon size"
+msgstr ""
+
+#: gtk/gtkscalebutton.c:248
+msgid ""
+"The GtkAdjustment that contains the current value of this scale button object"
+msgstr ""
+
+#: gtk/gtkscalebutton.c:276
+msgid "Icons"
+msgstr ""
+
+#: gtk/gtkscalebutton.c:277
+msgid "List of icon names"
+msgstr ""
+
+#: gtk/gtkscale.c:310
+msgid "The number of decimal places that are displayed in the value"
+msgstr ""
+
+#: gtk/gtkscale.c:319
+msgid "Draw Value"
+msgstr ""
+
+#: gtk/gtkscale.c:320
+msgid "Whether the current value is displayed as a string next to the slider"
+msgstr ""
+
+#: gtk/gtkscale.c:327
+msgid "Has Origin"
+msgstr ""
+
+#: gtk/gtkscale.c:328
+msgid "Whether the scale has an origin"
+msgstr ""
+
+#: gtk/gtkscale.c:335
+msgid "Value Position"
+msgstr ""
+
+#: gtk/gtkscale.c:336
+msgid "The position in which the current value is displayed"
+msgstr ""
+
+#: gtk/gtkscale.c:343
+msgid "Slider Length"
+msgstr ""
+
+#: gtk/gtkscale.c:344
+msgid "Length of scale's slider"
+msgstr ""
+
+#: gtk/gtkscale.c:352
+msgid "Value spacing"
+msgstr ""
+
+#: gtk/gtkscale.c:353
+msgid "Space between value text and the slider/trough area"
+msgstr ""
+
+#: gtk/gtkscrollable.c:94
+msgid "Horizontal adjustment"
+msgstr ""
+
+#: gtk/gtkscrollable.c:95
+msgid ""
+"Horizontal adjustment that is shared between the scrollable widget and its "
+"controller"
+msgstr ""
+
+#: gtk/gtkscrollable.c:111
+msgid "Vertical adjustment"
+msgstr ""
+
+#: gtk/gtkscrollable.c:112
+msgid ""
+"Vertical adjustment that is shared between the scrollable widget and its "
+"controller"
+msgstr ""
+
+#: gtk/gtkscrollable.c:128
+msgid "Horizontal Scrollable Policy"
+msgstr ""
+
+#: gtk/gtkscrollable.c:129 gtk/gtkscrollable.c:145
+msgid "How the size of the content should be determined"
+msgstr ""
+
+#: gtk/gtkscrollable.c:144
+msgid "Vertical Scrollable Policy"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:70
+msgid "Minimum Slider Length"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:71
+msgid "Minimum length of scrollbar slider"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:79
+msgid "Fixed slider size"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:80
+msgid "Don't change slider size, just lock it to the minimum length"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:101
+msgid ""
+"Display a second backward arrow button on the opposite end of the scrollbar"
+msgstr ""
+
+#: gtk/gtkscrollbar.c:108
+msgid ""
+"Display a second forward arrow button on the opposite end of the scrollbar"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:360
+msgid "Horizontal Adjustment"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:361
+msgid "The GtkAdjustment for the horizontal position"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:367
+msgid "Vertical Adjustment"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:368
+msgid "The GtkAdjustment for the vertical position"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:374
+msgid "Horizontal Scrollbar Policy"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:375
+msgid "When the horizontal scrollbar is displayed"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:382
+msgid "Vertical Scrollbar Policy"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:383
+msgid "When the vertical scrollbar is displayed"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:391
+msgid "Window Placement"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:392
+msgid "Where the contents are located with respect to the scrollbars."
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:411
+msgid "Window Placement Set"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:412
+msgid ""
+"Whether \"window-placement\" should be used to determine the location of the "
+"contents with respect to the scrollbars."
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:418
+msgid "Shadow Type"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:419
+msgid "Style of bevel around the contents"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:433
+msgid "Scrollbars within bevel"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:434
+msgid "Place scrollbars within the scrolled window's bevel"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:440
+msgid "Scrollbar spacing"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:441
+msgid "Number of pixels between the scrollbars and the scrolled window"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:457
+msgid "Minimum Content Width"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:458
+msgid "The minimum width that the scrolled window will allocate to its content"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:472
+msgid "Minimum Content Height"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:473
+msgid ""
+"The minimum height that the scrolled window will allocate to its content"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:488
+msgid "Kinetic Scrolling"
+msgstr ""
+
+#: gtk/gtkscrolledwindow.c:489
+msgid "Kinetic scrolling mode."
+msgstr ""
+
+#: gtk/gtksearchbar.c:388
+msgid "Search Mode Enabled"
+msgstr ""
+
+#: gtk/gtksearchbar.c:389
+msgid "Whether the search mode is on and the search bar shown"
+msgstr ""
+
+#: gtk/gtksearchbar.c:400
+msgid "Whether to show the close button in the toolbar"
+msgstr ""
+
+#: gtk/gtkseparatortoolitem.c:141
+msgid "Draw"
+msgstr ""
+
+#: gtk/gtkseparatortoolitem.c:142
+msgid "Whether the separator is drawn, or just blank"
+msgstr ""
+
+#: gtk/gtksettings.c:357
+msgid "Double Click Time"
+msgstr ""
+
+#: gtk/gtksettings.c:358
+msgid ""
+"Maximum time allowed between two clicks for them to be considered a double "
+"click (in milliseconds)"
+msgstr ""
+
+#: gtk/gtksettings.c:365
+msgid "Double Click Distance"
+msgstr ""
+
+#: gtk/gtksettings.c:366
+msgid ""
+"Maximum distance allowed between two clicks for them to be considered a "
+"double click (in pixels)"
+msgstr ""
+
+#: gtk/gtksettings.c:382
+msgid "Cursor Blink"
+msgstr ""
+
+#: gtk/gtksettings.c:383
+msgid "Whether the cursor should blink"
+msgstr ""
+
+#: gtk/gtksettings.c:390
+msgid "Cursor Blink Time"
+msgstr ""
+
+#: gtk/gtksettings.c:391
+msgid "Length of the cursor blink cycle, in milliseconds"
+msgstr ""
+
+#: gtk/gtksettings.c:410
+msgid "Cursor Blink Timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:411
+msgid "Time after which the cursor stops blinking, in seconds"
+msgstr ""
+
+#: gtk/gtksettings.c:418
+msgid "Split Cursor"
+msgstr ""
+
+#: gtk/gtksettings.c:419
+msgid ""
+"Whether two cursors should be displayed for mixed left-to-right and right-to-"
+"left text"
+msgstr ""
+
+#: gtk/gtksettings.c:426
+msgid "Theme Name"
+msgstr ""
+
+#: gtk/gtksettings.c:427
+msgid "Name of theme to load"
+msgstr ""
+
+#: gtk/gtksettings.c:439
+msgid "Icon Theme Name"
+msgstr ""
+
+#: gtk/gtksettings.c:440
+msgid "Name of icon theme to use"
+msgstr ""
+
+#: gtk/gtksettings.c:455
+msgid "Fallback Icon Theme Name"
+msgstr ""
+
+#: gtk/gtksettings.c:456
+msgid "Name of a icon theme to fall back to"
+msgstr ""
+
+#: gtk/gtksettings.c:464
+msgid "Key Theme Name"
+msgstr ""
+
+#: gtk/gtksettings.c:465
+msgid "Name of key theme to load"
+msgstr ""
+
+#: gtk/gtksettings.c:481
+msgid "Menu bar accelerator"
+msgstr ""
+
+#: gtk/gtksettings.c:482
+msgid "Keybinding to activate the menu bar"
+msgstr ""
+
+#: gtk/gtksettings.c:490
+msgid "Drag threshold"
+msgstr ""
+
+#: gtk/gtksettings.c:491
+msgid "Number of pixels the cursor can move before dragging"
+msgstr ""
+
+#: gtk/gtksettings.c:499
+msgid "Font Name"
+msgstr ""
+
+#: gtk/gtksettings.c:500
+msgid "Name of default font to use"
+msgstr ""
+
+#: gtk/gtksettings.c:524
+msgid "Icon Sizes"
+msgstr ""
+
+#: gtk/gtksettings.c:525
+msgid "List of icon sizes (gtk-menu=16,16:gtk-button=20,20..."
+msgstr ""
+
+#: gtk/gtksettings.c:533
+msgid "GTK Modules"
+msgstr ""
+
+#: gtk/gtksettings.c:534
+msgid "List of currently active GTK modules"
+msgstr ""
+
+#: gtk/gtksettings.c:542
+msgid "Xft Antialias"
+msgstr ""
+
+#: gtk/gtksettings.c:543
+msgid "Whether to antialias Xft fonts; 0=no, 1=yes, -1=default"
+msgstr ""
+
+#: gtk/gtksettings.c:552
+msgid "Xft Hinting"
+msgstr ""
+
+#: gtk/gtksettings.c:553
+msgid "Whether to hint Xft fonts; 0=no, 1=yes, -1=default"
+msgstr ""
+
+#: gtk/gtksettings.c:562
+msgid "Xft Hint Style"
+msgstr ""
+
+#: gtk/gtksettings.c:563
+msgid ""
+"What degree of hinting to use; hintnone, hintslight, hintmedium, or hintfull"
+msgstr ""
+
+#: gtk/gtksettings.c:572
+msgid "Xft RGBA"
+msgstr ""
+
+#: gtk/gtksettings.c:573
+msgid "Type of subpixel antialiasing; none, rgb, bgr, vrgb, vbgr"
+msgstr ""
+
+#: gtk/gtksettings.c:582
+msgid "Xft DPI"
+msgstr ""
+
+#: gtk/gtksettings.c:583
+msgid "Resolution for Xft, in 1024 * dots/inch. -1 to use default value"
+msgstr ""
+
+#: gtk/gtksettings.c:592
+msgid "Cursor theme name"
+msgstr ""
+
+#: gtk/gtksettings.c:593
+msgid "Name of the cursor theme to use, or NULL to use the default theme"
+msgstr ""
+
+#: gtk/gtksettings.c:601
+msgid "Cursor theme size"
+msgstr ""
+
+#: gtk/gtksettings.c:602
+msgid "Size to use for cursors, or 0 to use the default size"
+msgstr ""
+
+#: gtk/gtksettings.c:611
+msgid "Alternative button order"
+msgstr ""
+
+#: gtk/gtksettings.c:612
+msgid "Whether buttons in dialogs should use the alternative button order"
+msgstr ""
+
+#: gtk/gtksettings.c:629
+msgid "Alternative sort indicator direction"
+msgstr ""
+
+#: gtk/gtksettings.c:630
+msgid ""
+"Whether the direction of the sort indicators in list and tree views is "
+"inverted compared to the default (where down means ascending)"
+msgstr ""
+
+#: gtk/gtksettings.c:643
+msgid "Show the 'Input Methods' menu"
+msgstr ""
+
+#: gtk/gtksettings.c:644
+msgid ""
+"Whether the context menus of entries and text views should offer to change "
+"the input method"
+msgstr ""
+
+#: gtk/gtksettings.c:657
+msgid "Show the 'Insert Unicode Control Character' menu"
+msgstr ""
+
+#: gtk/gtksettings.c:658
+msgid ""
+"Whether the context menus of entries and text views should offer to insert "
+"control characters"
+msgstr ""
+
+#: gtk/gtksettings.c:671
+msgid "Start timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:672
+msgid "Starting value for timeouts, when button is pressed"
+msgstr ""
+
+#: gtk/gtksettings.c:686
+msgid "Repeat timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:687
+msgid "Repeat value for timeouts, when button is pressed"
+msgstr ""
+
+#: gtk/gtksettings.c:701
+msgid "Expand timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:702
+msgid "Expand value for timeouts, when a widget is expanding a new region"
+msgstr ""
+
+#: gtk/gtksettings.c:740
+msgid "Color scheme"
+msgstr ""
+
+#: gtk/gtksettings.c:741
+msgid "A palette of named colors for use in themes"
+msgstr ""
+
+#: gtk/gtksettings.c:750
+msgid "Enable Animations"
+msgstr ""
+
+#: gtk/gtksettings.c:751
+msgid "Whether to enable toolkit-wide animations."
+msgstr ""
+
+#: gtk/gtksettings.c:772
+msgid "Enable Touchscreen Mode"
+msgstr ""
+
+#: gtk/gtksettings.c:773
+msgid "When TRUE, there are no motion notify events delivered on this screen"
+msgstr ""
+
+#: gtk/gtksettings.c:792
+msgid "Tooltip timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:793
+msgid "Timeout before tooltip is shown"
+msgstr ""
+
+#: gtk/gtksettings.c:820
+msgid "Tooltip browse timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:821
+msgid "Timeout before tooltip is shown when browse mode is enabled"
+msgstr ""
+
+#: gtk/gtksettings.c:844
+msgid "Tooltip browse mode timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:845
+msgid "Timeout after which browse mode is disabled"
+msgstr ""
+
+#: gtk/gtksettings.c:867
+msgid "Keynav Cursor Only"
+msgstr ""
+
+#: gtk/gtksettings.c:868
+msgid "When TRUE, there are only cursor keys available to navigate widgets"
+msgstr ""
+
+#: gtk/gtksettings.c:887
+msgid "Keynav Wrap Around"
+msgstr ""
+
+#: gtk/gtksettings.c:888
+msgid "Whether to wrap around when keyboard-navigating widgets"
+msgstr ""
+
+#: gtk/gtksettings.c:908
+msgid "Error Bell"
+msgstr ""
+
+#: gtk/gtksettings.c:909
+msgid "When TRUE, keyboard navigation and other errors will cause a beep"
+msgstr ""
+
+#: gtk/gtksettings.c:928
+msgid "Color Hash"
+msgstr ""
+
+#: gtk/gtksettings.c:929
+msgid "A hash table representation of the color scheme."
+msgstr ""
+
+#: gtk/gtksettings.c:944
+msgid "Default file chooser backend"
+msgstr ""
+
+#: gtk/gtksettings.c:945
+msgid "Name of the GtkFileChooser backend to use by default"
+msgstr ""
+
+#: gtk/gtksettings.c:962
+msgid "Default print backend"
+msgstr ""
+
+#: gtk/gtksettings.c:963
+msgid "List of the GtkPrintBackend backends to use by default"
+msgstr ""
+
+#: gtk/gtksettings.c:986
+msgid "Default command to run when displaying a print preview"
+msgstr ""
+
+#: gtk/gtksettings.c:987
+msgid "Command to run when displaying a print preview"
+msgstr ""
+
+#: gtk/gtksettings.c:1006
+msgid "Enable Mnemonics"
+msgstr ""
+
+#: gtk/gtksettings.c:1007
+msgid "Whether labels should have mnemonics"
+msgstr ""
+
+#: gtk/gtksettings.c:1023
+msgid "Enable Accelerators"
+msgstr ""
+
+#: gtk/gtksettings.c:1024
+msgid "Whether menu items should have accelerators"
+msgstr ""
+
+#: gtk/gtksettings.c:1043
+msgid "Recent Files Limit"
+msgstr ""
+
+#: gtk/gtksettings.c:1044
+msgid "Number of recently used files"
+msgstr ""
+
+#: gtk/gtksettings.c:1064
+msgid "Default IM module"
+msgstr ""
+
+#: gtk/gtksettings.c:1065
+msgid "Which IM module should be used by default"
+msgstr ""
+
+#: gtk/gtksettings.c:1083
+msgid "Recent Files Max Age"
+msgstr ""
+
+#: gtk/gtksettings.c:1084
+msgid "Maximum age of recently used files, in days"
+msgstr ""
+
+#: gtk/gtksettings.c:1093
+msgid "Fontconfig configuration timestamp"
+msgstr ""
+
+#: gtk/gtksettings.c:1094
+msgid "Timestamp of current fontconfig configuration"
+msgstr ""
+
+#: gtk/gtksettings.c:1116
+msgid "Sound Theme Name"
+msgstr ""
+
+#: gtk/gtksettings.c:1117
+msgid "XDG sound theme name"
+msgstr ""
+
+#. Translators: this means sounds that are played as feedback to user input
+#: gtk/gtksettings.c:1139
+msgid "Audible Input Feedback"
+msgstr ""
+
+#: gtk/gtksettings.c:1140
+msgid "Whether to play event sounds as feedback to user input"
+msgstr ""
+
+#: gtk/gtksettings.c:1161
+msgid "Enable Event Sounds"
+msgstr ""
+
+#: gtk/gtksettings.c:1162
+msgid "Whether to play any event sounds at all"
+msgstr ""
+
+#: gtk/gtksettings.c:1179
+msgid "Enable Tooltips"
+msgstr ""
+
+#: gtk/gtksettings.c:1180
+msgid "Whether tooltips should be shown on widgets"
+msgstr ""
+
+#: gtk/gtksettings.c:1195
+msgid "Toolbar style"
+msgstr ""
+
+#: gtk/gtksettings.c:1196
+msgid ""
+"Whether default toolbars have text only, text and icons, icons only, etc."
+msgstr ""
+
+#: gtk/gtksettings.c:1212
+msgid "Toolbar Icon Size"
+msgstr ""
+
+#: gtk/gtksettings.c:1213
+msgid "The size of icons in default toolbars."
+msgstr ""
+
+#: gtk/gtksettings.c:1232
+msgid "Auto Mnemonics"
+msgstr ""
+
+#: gtk/gtksettings.c:1233
+msgid ""
+"Whether mnemonics should be automatically shown and hidden when the user "
+"presses the mnemonic activator."
+msgstr ""
+
+#: gtk/gtksettings.c:1249
+msgid "Primary button warps slider"
+msgstr ""
+
+#: gtk/gtksettings.c:1250
+msgid ""
+"Whether a primary click on the trough should warp the slider into position"
+msgstr ""
+
+#: gtk/gtksettings.c:1268
+msgid "Visible Focus"
+msgstr ""
+
+#: gtk/gtksettings.c:1269
+msgid ""
+"Whether 'focus rectangles' should be hidden until the user starts to use the "
+"keyboard."
+msgstr ""
+
+#: gtk/gtksettings.c:1295
+msgid "Application prefers a dark theme"
+msgstr ""
+
+#: gtk/gtksettings.c:1296
+msgid "Whether the application prefers to have a dark theme."
+msgstr ""
+
+#: gtk/gtksettings.c:1313
+msgid "Show button images"
+msgstr ""
+
+#: gtk/gtksettings.c:1314
+msgid "Whether images should be shown on buttons"
+msgstr ""
+
+#: gtk/gtksettings.c:1322 gtk/gtksettings.c:1453
+msgid "Select on focus"
+msgstr ""
+
+#: gtk/gtksettings.c:1323
+msgid "Whether to select the contents of an entry when it is focused"
+msgstr ""
+
+#: gtk/gtksettings.c:1340
+msgid "Password Hint Timeout"
+msgstr ""
+
+#: gtk/gtksettings.c:1341
+msgid "How long to show the last input character in hidden entries"
+msgstr ""
+
+#: gtk/gtksettings.c:1357
+msgid "Show menu images"
+msgstr ""
+
+#: gtk/gtksettings.c:1358
+msgid "Whether images should be shown in menus"
+msgstr ""
+
+#: gtk/gtksettings.c:1373
+msgid "Delay before drop down menus appear"
+msgstr ""
+
+#: gtk/gtksettings.c:1374
+msgid "Delay before the submenus of a menu bar appear"
+msgstr ""
+
+#: gtk/gtksettings.c:1393
+msgid "Scrolled Window Placement"
+msgstr ""
+
+#: gtk/gtksettings.c:1394
+msgid ""
+"Where the contents of scrolled windows are located with respect to the "
+"scrollbars, if not overridden by the scrolled window's own placement."
+msgstr ""
+
+#: gtk/gtksettings.c:1410
+msgid "Can change accelerators"
+msgstr ""
+
+#: gtk/gtksettings.c:1411
+msgid ""
+"Whether menu accelerators can be changed by pressing a key over the menu item"
+msgstr ""
+
+#: gtk/gtksettings.c:1426
+msgid "Delay before submenus appear"
+msgstr ""
+
+#: gtk/gtksettings.c:1427
+msgid ""
+"Minimum time the pointer must stay over a menu item before the submenu appear"
+msgstr ""
+
+#: gtk/gtksettings.c:1443
+msgid "Delay before hiding a submenu"
+msgstr ""
+
+#: gtk/gtksettings.c:1444
+msgid ""
+"The time before hiding a submenu when the pointer is moving towards the "
+"submenu"
+msgstr ""
+
+#: gtk/gtksettings.c:1454
+msgid "Whether to select the contents of a selectable label when it is focused"
+msgstr ""
+
+#: gtk/gtksettings.c:1469
+msgid "Custom palette"
+msgstr ""
+
+#: gtk/gtksettings.c:1470
+msgid "Palette to use in the color selector"
+msgstr ""
+
+#: gtk/gtksettings.c:1485
+msgid "IM Preedit style"
+msgstr ""
+
+#: gtk/gtksettings.c:1486
+msgid "How to draw the input method preedit string"
+msgstr ""
+
+#: gtk/gtksettings.c:1502
+msgid "IM Status style"
+msgstr ""
+
+#: gtk/gtksettings.c:1503
+msgid "How to draw the input method statusbar"
+msgstr ""
+
+#: gtk/gtksettings.c:1512
+msgid "Desktop shell shows app menu"
+msgstr ""
+
+#: gtk/gtksettings.c:1513
+msgid ""
+"Set to TRUE if the desktop environment is displaying the app menu, FALSE if "
+"the app should display it itself."
+msgstr ""
+
+#: gtk/gtksettings.c:1522
+msgid "Desktop shell shows the menubar"
+msgstr ""
+
+#: gtk/gtksettings.c:1523
+msgid ""
+"Set to TRUE if the desktop environment is displaying the menubar, FALSE if "
+"the app should display it itself."
+msgstr ""
+
+#: gtk/gtksettings.c:1540
+msgid "Enable primary paste"
+msgstr ""
+
+#: gtk/gtksettings.c:1541
+msgid ""
+"Whether a middle click on a mouse should paste the 'PRIMARY' clipboard "
+"content at the cursor location."
+msgstr ""
+
+#: gtk/gtksettings.c:1557
+msgid "Recent Files Enabled"
+msgstr ""
+
+#: gtk/gtksettings.c:1558
+msgid "Whether GTK+ remembers recent files"
+msgstr ""
+
+#: gtk/gtksizegroup.c:329 gtk/gtktreeselection.c:129
+msgid "Mode"
+msgstr ""
+
+#: gtk/gtksizegroup.c:330
+msgid ""
+"The directions in which the size group affects the requested sizes of its "
+"component widgets"
+msgstr ""
+
+#: gtk/gtksizegroup.c:346
+msgid "Ignore hidden"
+msgstr ""
+
+#: gtk/gtksizegroup.c:347
+msgid ""
+"If TRUE, unmapped widgets are ignored when determining the size of the group"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:357
+msgid "Climb Rate"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:377
+msgid "Snap to Ticks"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:378
+msgid ""
+"Whether erroneous values are automatically changed to a spin button's "
+"nearest step increment"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:385
+msgid "Numeric"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:386
+msgid "Whether non-numeric characters should be ignored"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:393
+msgid "Wrap"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:394
+msgid "Whether a spin button should wrap upon reaching its limits"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:401
+msgid "Update Policy"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:402
+msgid ""
+"Whether the spin button should update always, or only when the value is legal"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:411
+msgid "Reads the current value, or sets a new value"
+msgstr ""
+
+#: gtk/gtkspinbutton.c:424
+msgid "Style of bevel around the spin button"
+msgstr ""
+
+#: gtk/gtkspinner.c:114
+msgid "Whether the spinner is active"
+msgstr ""
+
+#: gtk/gtkstack.c:359
+msgid "Homogeneous sizing"
+msgstr ""
+
+#: gtk/gtkstack.c:363
+msgid "Visible child"
+msgstr ""
+
+#: gtk/gtkstack.c:364
+msgid "The widget currently visible in the stack"
+msgstr ""
+
+#: gtk/gtkstack.c:368
+msgid "Name of visible child"
+msgstr ""
+
+#: gtk/gtkstack.c:369
+msgid "The name of the widget currently visible in the stack"
+msgstr ""
+
+#: gtk/gtkstack.c:390
+msgid "The name of the child page"
+msgstr ""
+
+#: gtk/gtkstack.c:397
+msgid "The title of the child page"
+msgstr ""
+
+#: gtk/gtkstack.c:403 gtk/gtktoolbutton.c:282
+msgid "Icon name"
+msgstr ""
+
+#: gtk/gtkstack.c:404
+msgid "The icon name of the child page"
+msgstr ""
+
+#: gtk/gtkstackswitcher.c:453 gtk/gtkstackswitcher.c:454
+msgid "Stack"
+msgstr ""
+
+#: gtk/gtkstatusbar.c:175
+msgid "Style of bevel around the statusbar text"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:285
+msgid "The size of the icon"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:295
+msgid "The screen where this status icon will be displayed"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:303
+msgid "Whether the status icon is visible"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:319
+msgid "Whether the status icon is embedded"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:335 gtk/gtktrayicon-x11.c:127
+msgid "The orientation of the tray"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:362 gtk/gtkwidget.c:1298
+msgid "Has tooltip"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:363
+msgid "Whether this tray icon has a tooltip"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:388 gtk/gtkwidget.c:1319
+msgid "Tooltip Text"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:389 gtk/gtkwidget.c:1320 gtk/gtkwidget.c:1341
+msgid "The contents of the tooltip for this widget"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:412 gtk/gtkwidget.c:1340
+msgid "Tooltip markup"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:413
+msgid "The contents of the tooltip for this tray icon"
+msgstr ""
+
+#: gtk/gtkstatusicon.c:431
+msgid "The title of this tray icon"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:445
+msgid "The associated GdkScreen"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:451
+msgid "FrameClock"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:452
+msgid "The associated GdkFrameClock"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:458
+msgid "Direction"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:459 gtk/gtktexttag.c:287
+msgid "Text direction"
+msgstr ""
+
+#: gtk/gtkstylecontext.c:475
+msgid "The parent style context"
+msgstr ""
+
+#: gtk/gtkstyleproperty.c:110
+msgid "Property name"
+msgstr ""
+
+#: gtk/gtkstyleproperty.c:111
+msgid "The name of the property"
+msgstr ""
+
+#: gtk/gtkstyleproperty.c:117
+msgid "Value type"
+msgstr ""
+
+#: gtk/gtkstyleproperty.c:118
+msgid "The value type returned by GtkStyleContext"
+msgstr ""
+
+#: gtk/gtkswitch.c:835
+msgid "Whether the switch is on or off"
+msgstr ""
+
+#: gtk/gtkswitch.c:869
+msgid "The minimum width of the handle"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:201
+msgid "Tag Table"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:202
+msgid "Text Tag Table"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:220
+msgid "Current text of the buffer"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:234
+msgid "Has selection"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:235
+msgid "Whether the buffer has some text currently selected"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:251
+msgid "Cursor position"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:252
+msgid ""
+"The position of the insert mark (as offset from the beginning of the buffer)"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:267
+msgid "Copy target list"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:268
+msgid ""
+"The list of targets this buffer supports for clipboard copying and DND source"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:283
+msgid "Paste target list"
+msgstr ""
+
+#: gtk/gtktextbuffer.c:284
+msgid ""
+"The list of targets this buffer supports for clipboard pasting and DND "
+"destination"
+msgstr ""
+
+#: gtk/gtktexthandle.c:526 gtk/gtktexthandle.c:527 gtk/gtkwidget.c:1158
+msgid "Parent widget"
+msgstr ""
+
+#: gtk/gtktexthandle.c:534 gtk/gtkwidget.c:1355
+msgid "Window"
+msgstr ""
+
+#: gtk/gtktexthandle.c:535
+msgid "Window the coordinates are based upon"
+msgstr ""
+
+#: gtk/gtktextmark.c:127
+msgid "Mark name"
+msgstr ""
+
+#: gtk/gtktextmark.c:134
+msgid "Left gravity"
+msgstr ""
+
+#: gtk/gtktextmark.c:135
+msgid "Whether the mark has left gravity"
+msgstr ""
+
+#: gtk/gtktexttag.c:193
+msgid "Tag name"
+msgstr ""
+
+#: gtk/gtktexttag.c:194
+msgid "Name used to refer to the text tag. NULL for anonymous tags"
+msgstr ""
+
+#: gtk/gtktexttag.c:233
+msgid "Background RGBA"
+msgstr ""
+
+#: gtk/gtktexttag.c:241
+msgid "Background full height"
+msgstr ""
+
+#: gtk/gtktexttag.c:242
+msgid ""
+"Whether the background color fills the entire line height or only the height "
+"of the tagged characters"
+msgstr ""
+
+#: gtk/gtktexttag.c:279
+msgid "Foreground RGBA"
+msgstr ""
+
+#: gtk/gtktexttag.c:288
+msgid "Text direction, e.g. right-to-left or left-to-right"
+msgstr ""
+
+#: gtk/gtktexttag.c:337
+msgid "Font style as a PangoStyle, e.g. PANGO_STYLE_ITALIC"
+msgstr ""
+
+#: gtk/gtktexttag.c:346
+msgid "Font variant as a PangoVariant, e.g. PANGO_VARIANT_SMALL_CAPS"
+msgstr ""
+
+#: gtk/gtktexttag.c:355
+msgid ""
+"Font weight as an integer, see predefined values in PangoWeight; for "
+"example, PANGO_WEIGHT_BOLD"
+msgstr ""
+
+#: gtk/gtktexttag.c:366
+msgid "Font stretch as a PangoStretch, e.g. PANGO_STRETCH_CONDENSED"
+msgstr ""
+
+#: gtk/gtktexttag.c:375
+msgid "Font size in Pango units"
+msgstr ""
+
+#: gtk/gtktexttag.c:385
+msgid ""
+"Font size as a scale factor relative to the default font size. This properly "
+"adapts to theme changes etc. so is recommended. Pango predefines some scales "
+"such as PANGO_SCALE_X_LARGE"
+msgstr ""
+
+#: gtk/gtktexttag.c:405 gtk/gtktextview.c:747
+msgid "Left, right, or center justification"
+msgstr ""
+
+#: gtk/gtktexttag.c:424
+msgid ""
+"The language this text is in, as an ISO code. Pango can use this as a hint "
+"when rendering the text. If not set, an appropriate default will be used."
+msgstr ""
+
+#: gtk/gtktexttag.c:431
+msgid "Left margin"
+msgstr ""
+
+#: gtk/gtktexttag.c:432 gtk/gtktextview.c:756
+msgid "Width of the left margin in pixels"
+msgstr ""
+
+#: gtk/gtktexttag.c:441
+msgid "Right margin"
+msgstr ""
+
+#: gtk/gtktexttag.c:442 gtk/gtktextview.c:766
+msgid "Width of the right margin in pixels"
+msgstr ""
+
+#: gtk/gtktexttag.c:452 gtk/gtktextview.c:775
+msgid "Indent"
+msgstr ""
+
+#: gtk/gtktexttag.c:453 gtk/gtktextview.c:776
+msgid "Amount to indent the paragraph, in pixels"
+msgstr ""
+
+#: gtk/gtktexttag.c:464
+msgid ""
+"Offset of text above the baseline (below the baseline if rise is negative) "
+"in Pango units"
+msgstr ""
+
+#: gtk/gtktexttag.c:473
+msgid "Pixels above lines"
+msgstr ""
+
+#: gtk/gtktexttag.c:474 gtk/gtktextview.c:700
+msgid "Pixels of blank space above paragraphs"
+msgstr ""
+
+#: gtk/gtktexttag.c:483
+msgid "Pixels below lines"
+msgstr ""
+
+#: gtk/gtktexttag.c:484 gtk/gtktextview.c:710
+msgid "Pixels of blank space below paragraphs"
+msgstr ""
+
+#: gtk/gtktexttag.c:493
+msgid "Pixels inside wrap"
+msgstr ""
+
+#: gtk/gtktexttag.c:494 gtk/gtktextview.c:720
+msgid "Pixels of blank space between wrapped lines in a paragraph"
+msgstr ""
+
+#: gtk/gtktexttag.c:521 gtk/gtktextview.c:738
+msgid ""
+"Whether to wrap lines never, at word boundaries, or at character boundaries"
+msgstr ""
+
+#: gtk/gtktexttag.c:531 gtk/gtktextview.c:786
+msgid "Custom tabs for this text"
+msgstr ""
+
+#: gtk/gtktexttag.c:549
+msgid "Invisible"
+msgstr ""
+
+#: gtk/gtktexttag.c:550
+msgid "Whether this text is hidden."
+msgstr ""
+
+#: gtk/gtktexttag.c:564
+msgid "Paragraph background color name"
+msgstr ""
+
+#: gtk/gtktexttag.c:565
+msgid "Paragraph background color as a string"
+msgstr ""
+
+#: gtk/gtktexttag.c:581
+msgid "Paragraph background color"
+msgstr ""
+
+#: gtk/gtktexttag.c:582
+msgid "Paragraph background color as a GdkColor"
+msgstr ""
+
+#: gtk/gtktexttag.c:596
+msgid "Paragraph background RGBA"
+msgstr ""
+
+#: gtk/gtktexttag.c:597
+msgid "Paragraph background RGBA as a GdkRGBA"
+msgstr ""
+
+#: gtk/gtktexttag.c:615
+msgid "Margin Accumulates"
+msgstr ""
+
+#: gtk/gtktexttag.c:616
+msgid "Whether left and right margins accumulate."
+msgstr ""
+
+#: gtk/gtktexttag.c:629
+msgid "Background full height set"
+msgstr ""
+
+#: gtk/gtktexttag.c:630
+msgid "Whether this tag affects background height"
+msgstr ""
+
+#: gtk/gtktexttag.c:669
+msgid "Justification set"
+msgstr ""
+
+#: gtk/gtktexttag.c:670
+msgid "Whether this tag affects paragraph justification"
+msgstr ""
+
+#: gtk/gtktexttag.c:677
+msgid "Left margin set"
+msgstr ""
+
+#: gtk/gtktexttag.c:678
+msgid "Whether this tag affects the left margin"
+msgstr ""
+
+#: gtk/gtktexttag.c:681
+msgid "Indent set"
+msgstr ""
+
+#: gtk/gtktexttag.c:682
+msgid "Whether this tag affects indentation"
+msgstr ""
+
+#: gtk/gtktexttag.c:689
+msgid "Pixels above lines set"
+msgstr ""
+
+#: gtk/gtktexttag.c:690 gtk/gtktexttag.c:694
+msgid "Whether this tag affects the number of pixels above lines"
+msgstr ""
+
+#: gtk/gtktexttag.c:693
+msgid "Pixels below lines set"
+msgstr ""
+
+#: gtk/gtktexttag.c:697
+msgid "Pixels inside wrap set"
+msgstr ""
+
+#: gtk/gtktexttag.c:698
+msgid "Whether this tag affects the number of pixels between wrapped lines"
+msgstr ""
+
+#: gtk/gtktexttag.c:705
+msgid "Right margin set"
+msgstr ""
+
+#: gtk/gtktexttag.c:706
+msgid "Whether this tag affects the right margin"
+msgstr ""
+
+#: gtk/gtktexttag.c:713
+msgid "Wrap mode set"
+msgstr ""
+
+#: gtk/gtktexttag.c:714
+msgid "Whether this tag affects line wrap mode"
+msgstr ""
+
+#: gtk/gtktexttag.c:717
+msgid "Tabs set"
+msgstr ""
+
+#: gtk/gtktexttag.c:718
+msgid "Whether this tag affects tabs"
+msgstr ""
+
+#: gtk/gtktexttag.c:721
+msgid "Invisible set"
+msgstr ""
+
+#: gtk/gtktexttag.c:722
+msgid "Whether this tag affects text visibility"
+msgstr ""
+
+#: gtk/gtktexttag.c:725
+msgid "Paragraph background set"
+msgstr ""
+
+#: gtk/gtktexttag.c:726
+msgid "Whether this tag affects the paragraph background color"
+msgstr ""
+
+#: gtk/gtktextview.c:699
+msgid "Pixels Above Lines"
+msgstr ""
+
+#: gtk/gtktextview.c:709
+msgid "Pixels Below Lines"
+msgstr ""
+
+#: gtk/gtktextview.c:719
+msgid "Pixels Inside Wrap"
+msgstr ""
+
+#: gtk/gtktextview.c:737
+msgid "Wrap Mode"
+msgstr ""
+
+#: gtk/gtktextview.c:755
+msgid "Left Margin"
+msgstr ""
+
+#: gtk/gtktextview.c:765
+msgid "Right Margin"
+msgstr ""
+
+#: gtk/gtktextview.c:793
+msgid "Cursor Visible"
+msgstr ""
+
+#: gtk/gtktextview.c:794
+msgid "If the insertion cursor is shown"
+msgstr ""
+
+#: gtk/gtktextview.c:801
+msgid "Buffer"
+msgstr ""
+
+#: gtk/gtktextview.c:802
+msgid "The buffer which is displayed"
+msgstr ""
+
+#: gtk/gtktextview.c:810
+msgid "Whether entered text overwrites existing contents"
+msgstr ""
+
+#: gtk/gtktextview.c:817
+msgid "Accepts tab"
+msgstr ""
+
+#: gtk/gtktextview.c:818
+msgid "Whether Tab will result in a tab character being entered"
+msgstr ""
+
+#: gtk/gtktextview.c:906
+msgid "Error underline color"
+msgstr ""
+
+#: gtk/gtktextview.c:907
+msgid "Color with which to draw error-indication underlines"
+msgstr ""
+
+#: gtk/gtkthemingengine.c:263
+msgid "Theming engine name"
+msgstr ""
+
+#: gtk/gtktogglebutton.c:177 gtk/gtktoggletoolbutton.c:128
+msgid "If the toggle button should be pressed in"
+msgstr ""
+
+#: gtk/gtktogglebutton.c:185
+msgid "If the toggle button is in an \"in between\" state"
+msgstr ""
+
+#: gtk/gtktogglebutton.c:192
+msgid "Draw Indicator"
+msgstr ""
+
+#: gtk/gtktogglebutton.c:193
+msgid "If the toggle part of the button is displayed"
+msgstr ""
+
+#: gtk/gtktoolbar.c:501 gtk/gtktoolpalette.c:972
+msgid "Toolbar Style"
+msgstr ""
+
+#: gtk/gtktoolbar.c:502
+msgid "How to draw the toolbar"
+msgstr ""
+
+#: gtk/gtktoolbar.c:509
+msgid "Show Arrow"
+msgstr ""
+
+#: gtk/gtktoolbar.c:510
+msgid "If an arrow should be shown if the toolbar doesn't fit"
+msgstr ""
+
+#: gtk/gtktoolbar.c:531
+msgid "Size of icons in this toolbar"
+msgstr ""
+
+#: gtk/gtktoolbar.c:546 gtk/gtktoolpalette.c:958
+msgid "Icon size set"
+msgstr ""
+
+#: gtk/gtktoolbar.c:547 gtk/gtktoolpalette.c:959
+msgid "Whether the icon-size property has been set"
+msgstr ""
+
+#: gtk/gtktoolbar.c:556
+msgid "Whether the item should receive extra space when the toolbar grows"
+msgstr ""
+
+#: gtk/gtktoolbar.c:564 gtk/gtktoolitemgroup.c:1647
+msgid "Whether the item should be the same size as other homogeneous items"
+msgstr ""
+
+#: gtk/gtktoolbar.c:571
+msgid "Spacer size"
+msgstr ""
+
+#: gtk/gtktoolbar.c:572
+msgid "Size of spacers"
+msgstr ""
+
+#: gtk/gtktoolbar.c:590
+msgid "Amount of border space between the toolbar shadow and the buttons"
+msgstr ""
+
+#: gtk/gtktoolbar.c:598
+msgid "Maximum child expand"
+msgstr ""
+
+#: gtk/gtktoolbar.c:599
+msgid "Maximum amount of space an expandable item will be given"
+msgstr ""
+
+#: gtk/gtktoolbar.c:607
+msgid "Space style"
+msgstr ""
+
+#: gtk/gtktoolbar.c:608
+msgid "Whether spacers are vertical lines or just blank"
+msgstr ""
+
+#: gtk/gtktoolbar.c:615
+msgid "Button relief"
+msgstr ""
+
+#: gtk/gtktoolbar.c:616
+msgid "Type of bevel around toolbar buttons"
+msgstr ""
+
+#: gtk/gtktoolbar.c:632
+msgid "Style of bevel around the toolbar"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:240
+msgid "Text to show in the item."
+msgstr ""
+
+#: gtk/gtktoolbutton.c:247
+msgid ""
+"If set, an underline in the label property indicates that the next character "
+"should be used for the mnemonic accelerator key in the overflow menu"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:254
+msgid "Widget to use as the item label"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:265
+msgid "Stock Id"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:266
+msgid "The stock icon displayed on the item"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:283
+msgid "The name of the themed icon displayed on the item"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:289
+msgid "Icon widget"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:290
+msgid "Icon widget to display in the item"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:306
+msgid "Icon spacing"
+msgstr ""
+
+#: gtk/gtktoolbutton.c:307
+msgid "Spacing in pixels between the icon and label"
+msgstr ""
+
+#: gtk/gtktoolitem.c:209
+msgid ""
+"Whether the toolbar item is considered important. When TRUE, toolbar buttons "
+"show text in GTK_TOOLBAR_BOTH_HORIZ mode"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1594
+msgid "The human-readable title of this item group"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1601
+msgid "A widget to display in place of the usual label"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1607
+msgid "Collapsed"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1608
+msgid "Whether the group has been collapsed and items are hidden"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1614
+msgid "ellipsize"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1615
+msgid "Ellipsize for item group headers"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1621
+msgid "Header Relief"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1622
+msgid "Relief of the group header button"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1637
+msgid "Header Spacing"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1638
+msgid "Spacing between expander arrow and caption"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1654
+msgid "Whether the item should receive extra space when the group grows"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1661
+msgid "Whether the item should fill the available space"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1667
+msgid "New Row"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1668
+msgid "Whether the item should start a new row"
+msgstr ""
+
+#: gtk/gtktoolitemgroup.c:1675
+msgid "Position of the item within this group"
+msgstr ""
+
+#: gtk/gtktoolpalette.c:943
+msgid "Size of icons in this tool palette"
+msgstr ""
+
+#: gtk/gtktoolpalette.c:973
+msgid "Style of items in the tool palette"
+msgstr ""
+
+#: gtk/gtktoolpalette.c:989
+msgid "Exclusive"
+msgstr ""
+
+#: gtk/gtktoolpalette.c:990
+msgid "Whether the item group should be the only expanded at a given time"
+msgstr ""
+
+#: gtk/gtktoolpalette.c:1005
+msgid ""
+"Whether the item group should receive extra space when the palette grows"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:136
+msgid "Foreground color for symbolic icons"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:143
+msgid "Error color"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:144
+msgid "Error color for symbolic icons"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:151
+msgid "Warning color"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:152
+msgid "Warning color for symbolic icons"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:159
+msgid "Success color"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:160
+msgid "Success color for symbolic icons"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:168
+msgid "Padding that should be put around icons in the tray"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:177
+msgid "Icon Size"
+msgstr ""
+
+#: gtk/gtktrayicon-x11.c:178
+msgid "The pixel size that icons should be forced to, or zero"
+msgstr ""
+
+#: gtk/gtktreemenu.c:262
+msgid "TreeMenu model"
+msgstr ""
+
+#: gtk/gtktreemenu.c:263
+msgid "The model for the tree menu"
+msgstr ""
+
+#: gtk/gtktreemenu.c:285
+msgid "TreeMenu root row"
+msgstr ""
+
+#: gtk/gtktreemenu.c:286
+msgid "The TreeMenu will display children of the specified root"
+msgstr ""
+
+#: gtk/gtktreemenu.c:319
+msgid "Tearoff"
+msgstr ""
+
+#: gtk/gtktreemenu.c:320
+msgid "Whether the menu has a tearoff item"
+msgstr ""
+
+#: gtk/gtktreemenu.c:336
+msgid "Wrap Width"
+msgstr ""
+
+#: gtk/gtktreemenu.c:337
+msgid "Wrap width for laying out items in a grid"
+msgstr ""
+
+#: gtk/gtktreemodelsort.c:488
+msgid "TreeModelSort Model"
+msgstr ""
+
+#: gtk/gtktreemodelsort.c:489
+msgid "The model for the TreeModelSort to sort"
+msgstr ""
+
+#: gtk/gtktreeview.c:989
+msgid "TreeView Model"
+msgstr ""
+
+#: gtk/gtktreeview.c:990
+msgid "The model for the tree view"
+msgstr ""
+
+#: gtk/gtktreeview.c:1002
+msgid "Headers Visible"
+msgstr ""
+
+#: gtk/gtktreeview.c:1003
+msgid "Show the column header buttons"
+msgstr ""
+
+#: gtk/gtktreeview.c:1010
+msgid "Headers Clickable"
+msgstr ""
+
+#: gtk/gtktreeview.c:1011
+msgid "Column headers respond to click events"
+msgstr ""
+
+#: gtk/gtktreeview.c:1018
+msgid "Expander Column"
+msgstr ""
+
+#: gtk/gtktreeview.c:1019
+msgid "Set the column for the expander column"
+msgstr ""
+
+#: gtk/gtktreeview.c:1034
+msgid "Rules Hint"
+msgstr ""
+
+#: gtk/gtktreeview.c:1035
+msgid "Set a hint to the theme engine to draw rows in alternating colors"
+msgstr ""
+
+#: gtk/gtktreeview.c:1042
+msgid "Enable Search"
+msgstr ""
+
+#: gtk/gtktreeview.c:1043
+msgid "View allows user to search through columns interactively"
+msgstr ""
+
+#: gtk/gtktreeview.c:1050
+msgid "Search Column"
+msgstr ""
+
+#: gtk/gtktreeview.c:1051
+msgid "Model column to search through during interactive search"
+msgstr ""
+
+#: gtk/gtktreeview.c:1071
+msgid "Fixed Height Mode"
+msgstr ""
+
+#: gtk/gtktreeview.c:1072
+msgid "Speeds up GtkTreeView by assuming that all rows have the same height"
+msgstr ""
+
+#: gtk/gtktreeview.c:1092
+msgid "Hover Selection"
+msgstr ""
+
+#: gtk/gtktreeview.c:1093
+msgid "Whether the selection should follow the pointer"
+msgstr ""
+
+#: gtk/gtktreeview.c:1112
+msgid "Hover Expand"
+msgstr ""
+
+#: gtk/gtktreeview.c:1113
+msgid ""
+"Whether rows should be expanded/collapsed when the pointer moves over them"
+msgstr ""
+
+#: gtk/gtktreeview.c:1127
+msgid "Show Expanders"
+msgstr ""
+
+#: gtk/gtktreeview.c:1128
+msgid "View has expanders"
+msgstr ""
+
+#: gtk/gtktreeview.c:1142
+msgid "Level Indentation"
+msgstr ""
+
+#: gtk/gtktreeview.c:1143
+msgid "Extra indentation for each level"
+msgstr ""
+
+#: gtk/gtktreeview.c:1152
+msgid "Rubber Banding"
+msgstr ""
+
+#: gtk/gtktreeview.c:1153
+msgid ""
+"Whether to enable selection of multiple items by dragging the mouse pointer"
+msgstr ""
+
+#: gtk/gtktreeview.c:1160
+msgid "Enable Grid Lines"
+msgstr ""
+
+#: gtk/gtktreeview.c:1161
+msgid "Whether grid lines should be drawn in the tree view"
+msgstr ""
+
+#: gtk/gtktreeview.c:1169
+msgid "Enable Tree Lines"
+msgstr ""
+
+#: gtk/gtktreeview.c:1170
+msgid "Whether tree lines should be drawn in the tree view"
+msgstr ""
+
+#: gtk/gtktreeview.c:1178
+msgid "The column in the model containing the tooltip texts for the rows"
+msgstr ""
+
+#: gtk/gtktreeview.c:1216
+msgid "Vertical Separator Width"
+msgstr ""
+
+#: gtk/gtktreeview.c:1217
+msgid "Vertical space between cells.  Must be an even number"
+msgstr ""
+
+#: gtk/gtktreeview.c:1225
+msgid "Horizontal Separator Width"
+msgstr ""
+
+#: gtk/gtktreeview.c:1226
+msgid "Horizontal space between cells.  Must be an even number"
+msgstr ""
+
+#: gtk/gtktreeview.c:1234
+msgid "Allow Rules"
+msgstr ""
+
+#: gtk/gtktreeview.c:1235
+msgid "Allow drawing of alternating color rows"
+msgstr ""
+
+#: gtk/gtktreeview.c:1241
+msgid "Indent Expanders"
+msgstr ""
+
+#: gtk/gtktreeview.c:1242
+msgid "Make the expanders indented"
+msgstr ""
+
+#: gtk/gtktreeview.c:1248
+msgid "Even Row Color"
+msgstr ""
+
+#: gtk/gtktreeview.c:1249
+msgid "Color to use for even rows"
+msgstr ""
+
+#: gtk/gtktreeview.c:1255
+msgid "Odd Row Color"
+msgstr ""
+
+#: gtk/gtktreeview.c:1256
+msgid "Color to use for odd rows"
+msgstr ""
+
+#: gtk/gtktreeview.c:1262
+msgid "Grid line width"
+msgstr ""
+
+#: gtk/gtktreeview.c:1263
+msgid "Width, in pixels, of the tree view grid lines"
+msgstr ""
+
+#: gtk/gtktreeview.c:1269
+msgid "Tree line width"
+msgstr ""
+
+#: gtk/gtktreeview.c:1270
+msgid "Width, in pixels, of the tree view lines"
+msgstr ""
+
+#: gtk/gtktreeview.c:1276
+msgid "Grid line pattern"
+msgstr ""
+
+#: gtk/gtktreeview.c:1277
+msgid "Dash pattern used to draw the tree view grid lines"
+msgstr ""
+
+#: gtk/gtktreeview.c:1283
+msgid "Tree line pattern"
+msgstr ""
+
+#: gtk/gtktreeview.c:1284
+msgid "Dash pattern used to draw the tree view lines"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:247
+msgid "Whether to display the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:254 gtk/gtkwindow.c:727
+msgid "Resizable"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:255
+msgid "Column is user-resizable"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:263
+msgid "Current X position of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:273
+msgid "Current width of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:290
+msgid "Sizing"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:291
+msgid "Resize mode of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:299
+msgid "Fixed Width"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:300
+msgid "Current fixed width of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:310
+msgid "Minimum allowed width of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:319
+msgid "Maximum Width"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:320
+msgid "Maximum allowed width of the column"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:330
+msgid "Title to appear in column header"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:338
+msgid "Column gets share of extra width allocated to the widget"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:345
+msgid "Clickable"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:346
+msgid "Whether the header can be clicked"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:355
+msgid "Widget to put in column header button instead of column title"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:363
+msgid "X Alignment of the column header text or widget"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:373
+msgid "Whether the column can be reordered around the headers"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:380
+msgid "Sort indicator"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:381
+msgid "Whether to show a sort indicator"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:388
+msgid "Sort order"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:389
+msgid "Sort direction the sort indicator should indicate"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:405
+msgid "Sort column ID"
+msgstr ""
+
+#: gtk/gtktreeviewcolumn.c:406
+msgid "Logical sort column ID this column sorts on when selected for sorting"
+msgstr ""
+
+#: gtk/gtkviewport.c:164
+msgid "Determines how the shadowed box around the viewport is drawn"
+msgstr ""
+
+#: gtk/gtkvolumebutton.c:156
+msgid "Use symbolic icons"
+msgstr ""
+
+#: gtk/gtkvolumebutton.c:157
+msgid "Whether to use symbolic icons"
+msgstr ""
+
+#: gtk/gtkwidget.c:1151
+msgid "Widget name"
+msgstr ""
+
+#: gtk/gtkwidget.c:1152
+msgid "The name of the widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1159
+msgid "The parent widget of this widget. Must be a Container widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1166
+msgid "Width request"
+msgstr ""
+
+#: gtk/gtkwidget.c:1167
+msgid ""
+"Override for width request of the widget, or -1 if natural request should be "
+"used"
+msgstr ""
+
+#: gtk/gtkwidget.c:1175
+msgid "Height request"
+msgstr ""
+
+#: gtk/gtkwidget.c:1176
+msgid ""
+"Override for height request of the widget, or -1 if natural request should "
+"be used"
+msgstr ""
+
+#: gtk/gtkwidget.c:1185
+msgid "Whether the widget is visible"
+msgstr ""
+
+#: gtk/gtkwidget.c:1192
+msgid "Whether the widget responds to input"
+msgstr ""
+
+#: gtk/gtkwidget.c:1198
+msgid "Application paintable"
+msgstr ""
+
+#: gtk/gtkwidget.c:1199
+msgid "Whether the application will paint directly on the widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1205
+msgid "Can focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:1206
+msgid "Whether the widget can accept the input focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:1212
+msgid "Has focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:1213
+msgid "Whether the widget has the input focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:1219
+msgid "Is focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:1220
+msgid "Whether the widget is the focus widget within the toplevel"
+msgstr ""
+
+#: gtk/gtkwidget.c:1226
+msgid "Can default"
+msgstr ""
+
+#: gtk/gtkwidget.c:1227
+msgid "Whether the widget can be the default widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1233
+msgid "Has default"
+msgstr ""
+
+#: gtk/gtkwidget.c:1234
+msgid "Whether the widget is the default widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1240
+msgid "Receives default"
+msgstr ""
+
+#: gtk/gtkwidget.c:1241
+msgid "If TRUE, the widget will receive the default action when it is focused"
+msgstr ""
+
+#: gtk/gtkwidget.c:1247
+msgid "Composite child"
+msgstr ""
+
+#: gtk/gtkwidget.c:1248
+msgid "Whether the widget is part of a composite widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1257
+msgid "Style"
+msgstr ""
+
+#: gtk/gtkwidget.c:1258
+msgid ""
+"The style of the widget, which contains information about how it will look "
+"(colors etc)"
+msgstr ""
+
+#: gtk/gtkwidget.c:1267
+msgid "Events"
+msgstr ""
+
+#: gtk/gtkwidget.c:1268
+msgid "The event mask that decides what kind of GdkEvents this widget gets"
+msgstr ""
+
+#: gtk/gtkwidget.c:1275
+msgid "No show all"
+msgstr ""
+
+#: gtk/gtkwidget.c:1276
+msgid "Whether gtk_widget_show_all() should not affect this widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1299
+msgid "Whether this widget has a tooltip"
+msgstr ""
+
+#: gtk/gtkwidget.c:1356
+msgid "The widget's window if it is realized"
+msgstr ""
+
+#: gtk/gtkwidget.c:1370
+msgid "Double Buffered"
+msgstr ""
+
+#: gtk/gtkwidget.c:1371
+msgid "Whether the widget is double buffered"
+msgstr ""
+
+#: gtk/gtkwidget.c:1386
+msgid "How to position in extra horizontal space"
+msgstr ""
+
+#: gtk/gtkwidget.c:1402
+msgid "How to position in extra vertical space"
+msgstr ""
+
+#: gtk/gtkwidget.c:1421
+msgid "Margin on Left"
+msgstr ""
+
+#: gtk/gtkwidget.c:1422
+msgid "Pixels of extra space on the left side"
+msgstr ""
+
+#: gtk/gtkwidget.c:1442
+msgid "Margin on Right"
+msgstr ""
+
+#: gtk/gtkwidget.c:1443
+msgid "Pixels of extra space on the right side"
+msgstr ""
+
+#: gtk/gtkwidget.c:1463
+msgid "Margin on Top"
+msgstr ""
+
+#: gtk/gtkwidget.c:1464
+msgid "Pixels of extra space on the top side"
+msgstr ""
+
+#: gtk/gtkwidget.c:1484
+msgid "Margin on Bottom"
+msgstr ""
+
+#: gtk/gtkwidget.c:1485
+msgid "Pixels of extra space on the bottom side"
+msgstr ""
+
+#: gtk/gtkwidget.c:1502
+msgid "All Margins"
+msgstr ""
+
+#: gtk/gtkwidget.c:1503
+msgid "Pixels of extra space on all four sides"
+msgstr ""
+
+#: gtk/gtkwidget.c:1536
+msgid "Horizontal Expand"
+msgstr ""
+
+#: gtk/gtkwidget.c:1537
+msgid "Whether widget wants more horizontal space"
+msgstr ""
+
+#: gtk/gtkwidget.c:1551
+msgid "Horizontal Expand Set"
+msgstr ""
+
+#: gtk/gtkwidget.c:1552
+msgid "Whether to use the hexpand property"
+msgstr ""
+
+#: gtk/gtkwidget.c:1566
+msgid "Vertical Expand"
+msgstr ""
+
+#: gtk/gtkwidget.c:1567
+msgid "Whether widget wants more vertical space"
+msgstr ""
+
+#: gtk/gtkwidget.c:1581
+msgid "Vertical Expand Set"
+msgstr ""
+
+#: gtk/gtkwidget.c:1582
+msgid "Whether to use the vexpand property"
+msgstr ""
+
+#: gtk/gtkwidget.c:1596
+msgid "Expand Both"
+msgstr ""
+
+#: gtk/gtkwidget.c:1597
+msgid "Whether widget wants to expand in both directions"
+msgstr ""
+
+#: gtk/gtkwidget.c:1614
+msgid "Opacity for Widget"
+msgstr ""
+
+#: gtk/gtkwidget.c:1615
+msgid "The opacity of the widget, from 0 to 1"
+msgstr ""
+
+#: gtk/gtkwidget.c:1632
+msgid "Scale factor"
+msgstr ""
+
+#: gtk/gtkwidget.c:1633
+msgid "The scaling factor of the window"
+msgstr ""
+
+#: gtk/gtkwidget.c:3408
+msgid "Interior Focus"
+msgstr ""
+
+#: gtk/gtkwidget.c:3409
+msgid "Whether to draw the focus indicator inside widgets"
+msgstr ""
+
+#: gtk/gtkwidget.c:3415
+msgid "Focus linewidth"
+msgstr ""
+
+#: gtk/gtkwidget.c:3416
+msgid "Width, in pixels, of the focus indicator line"
+msgstr ""
+
+#: gtk/gtkwidget.c:3422
+msgid "Focus line dash pattern"
+msgstr ""
+
+#: gtk/gtkwidget.c:3423
+msgid "Dash pattern used to draw the focus indicator"
+msgstr ""
+
+#: gtk/gtkwidget.c:3428
+msgid "Focus padding"
+msgstr ""
+
+#: gtk/gtkwidget.c:3429
+msgid "Width, in pixels, between focus indicator and the widget 'box'"
+msgstr ""
+
+#: gtk/gtkwidget.c:3434
+msgid "Cursor color"
+msgstr ""
+
+#: gtk/gtkwidget.c:3435
+msgid "Color with which to draw insertion cursor"
+msgstr ""
+
+#: gtk/gtkwidget.c:3440
+msgid "Secondary cursor color"
+msgstr ""
+
+#: gtk/gtkwidget.c:3441
+msgid ""
+"Color with which to draw the secondary insertion cursor when editing mixed "
+"right-to-left and left-to-right text"
+msgstr ""
+
+#: gtk/gtkwidget.c:3446
+msgid "Cursor line aspect ratio"
+msgstr ""
+
+#: gtk/gtkwidget.c:3447
+msgid "Aspect ratio with which to draw insertion cursor"
+msgstr ""
+
+#: gtk/gtkwidget.c:3453
+msgid "Window dragging"
+msgstr ""
+
+#: gtk/gtkwidget.c:3454
+msgid "Whether windows can be dragged by clicking on empty areas"
+msgstr ""
+
+#: gtk/gtkwidget.c:3467
+msgid "Unvisited Link Color"
+msgstr ""
+
+#: gtk/gtkwidget.c:3468
+msgid "Color of unvisited links"
+msgstr ""
+
+#: gtk/gtkwidget.c:3481
+msgid "Visited Link Color"
+msgstr ""
+
+#: gtk/gtkwidget.c:3482
+msgid "Color of visited links"
+msgstr ""
+
+#: gtk/gtkwidget.c:3496
+msgid "Wide Separators"
+msgstr ""
+
+#: gtk/gtkwidget.c:3497
+msgid ""
+"Whether separators have configurable width and should be drawn using a box "
+"instead of a line"
+msgstr ""
+
+#: gtk/gtkwidget.c:3511
+msgid "Separator Width"
+msgstr ""
+
+#: gtk/gtkwidget.c:3512
+msgid "The width of separators if wide-separators is TRUE"
+msgstr ""
+
+#: gtk/gtkwidget.c:3526
+msgid "Separator Height"
+msgstr ""
+
+#: gtk/gtkwidget.c:3527
+msgid "The height of separators if \"wide-separators\" is TRUE"
+msgstr ""
+
+#: gtk/gtkwidget.c:3541
+msgid "Horizontal Scroll Arrow Length"
+msgstr ""
+
+#: gtk/gtkwidget.c:3542
+msgid "The length of horizontal scroll arrows"
+msgstr ""
+
+#: gtk/gtkwidget.c:3556
+msgid "Vertical Scroll Arrow Length"
+msgstr ""
+
+#: gtk/gtkwidget.c:3557
+msgid "The length of vertical scroll arrows"
+msgstr ""
+
+#: gtk/gtkwidget.c:3563 gtk/gtkwidget.c:3564
+msgid "Width of text selection handles"
+msgstr ""
+
+#: gtk/gtkwidget.c:3569 gtk/gtkwidget.c:3570
+msgid "Height of text selection handles"
+msgstr ""
+
+#: gtk/gtkwindow.c:685
+msgid "Window Type"
+msgstr ""
+
+#: gtk/gtkwindow.c:686
+msgid "The type of the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:694
+msgid "Window Title"
+msgstr ""
+
+#: gtk/gtkwindow.c:695
+msgid "The title of the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:702
+msgid "Window Role"
+msgstr ""
+
+#: gtk/gtkwindow.c:703
+msgid "Unique identifier for the window to be used when restoring a session"
+msgstr ""
+
+#: gtk/gtkwindow.c:719
+msgid "Startup ID"
+msgstr ""
+
+#: gtk/gtkwindow.c:720
+msgid "Unique startup identifier for the window used by startup-notification"
+msgstr ""
+
+#: gtk/gtkwindow.c:728
+msgid "If TRUE, users can resize the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:735
+msgid "Modal"
+msgstr ""
+
+#: gtk/gtkwindow.c:736
+msgid ""
+"If TRUE, the window is modal (other windows are not usable while this one is "
+"up)"
+msgstr ""
+
+#: gtk/gtkwindow.c:743
+msgid "Window Position"
+msgstr ""
+
+#: gtk/gtkwindow.c:744
+msgid "The initial position of the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:752
+msgid "Default Width"
+msgstr ""
+
+#: gtk/gtkwindow.c:753
+msgid "The default width of the window, used when initially showing the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:762
+msgid "Default Height"
+msgstr ""
+
+#: gtk/gtkwindow.c:763
+msgid ""
+"The default height of the window, used when initially showing the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:772
+msgid "Destroy with Parent"
+msgstr ""
+
+#: gtk/gtkwindow.c:773
+msgid "If this window should be destroyed when the parent is destroyed"
+msgstr ""
+
+#: gtk/gtkwindow.c:787
+msgid "Hide the titlebar during maximization"
+msgstr ""
+
+#: gtk/gtkwindow.c:788
+msgid "If this window's titlebar should be hidden when the window is maximized"
+msgstr ""
+
+#: gtk/gtkwindow.c:796
+msgid "Icon for this window"
+msgstr ""
+
+#: gtk/gtkwindow.c:813
+msgid "Mnemonics Visible"
+msgstr ""
+
+#: gtk/gtkwindow.c:814
+msgid "Whether mnemonics are currently visible in this window"
+msgstr ""
+
+#: gtk/gtkwindow.c:831
+msgid "Focus Visible"
+msgstr ""
+
+#: gtk/gtkwindow.c:832
+msgid "Whether focus rectangles are currently visible in this window"
+msgstr ""
+
+#: gtk/gtkwindow.c:848
+msgid "Name of the themed icon for this window"
+msgstr ""
+
+#: gtk/gtkwindow.c:863
+msgid "Is Active"
+msgstr ""
+
+#: gtk/gtkwindow.c:864
+msgid "Whether the toplevel is the current active window"
+msgstr ""
+
+#: gtk/gtkwindow.c:871
+msgid "Focus in Toplevel"
+msgstr ""
+
+#: gtk/gtkwindow.c:872
+msgid "Whether the input focus is within this GtkWindow"
+msgstr ""
+
+#: gtk/gtkwindow.c:879
+msgid "Type hint"
+msgstr ""
+
+#: gtk/gtkwindow.c:880
+msgid ""
+"Hint to help the desktop environment understand what kind of window this is "
+"and how to treat it."
+msgstr ""
+
+#: gtk/gtkwindow.c:888
+msgid "Skip taskbar"
+msgstr ""
+
+#: gtk/gtkwindow.c:889
+msgid "TRUE if the window should not be in the task bar."
+msgstr ""
+
+#: gtk/gtkwindow.c:896
+msgid "Skip pager"
+msgstr ""
+
+#: gtk/gtkwindow.c:897
+msgid "TRUE if the window should not be in the pager."
+msgstr ""
+
+#: gtk/gtkwindow.c:904
+msgid "Urgent"
+msgstr ""
+
+#: gtk/gtkwindow.c:905
+msgid "TRUE if the window should be brought to the user's attention."
+msgstr ""
+
+#: gtk/gtkwindow.c:919
+msgid "Accept focus"
+msgstr ""
+
+#: gtk/gtkwindow.c:920
+msgid "TRUE if the window should receive the input focus."
+msgstr ""
+
+#: gtk/gtkwindow.c:934
+msgid "Focus on map"
+msgstr ""
+
+#: gtk/gtkwindow.c:935
+msgid "TRUE if the window should receive the input focus when mapped."
+msgstr ""
+
+#: gtk/gtkwindow.c:949
+msgid "Decorated"
+msgstr ""
+
+#: gtk/gtkwindow.c:950
+msgid "Whether the window should be decorated by the window manager"
+msgstr ""
+
+#: gtk/gtkwindow.c:964
+msgid "Deletable"
+msgstr ""
+
+#: gtk/gtkwindow.c:965
+msgid "Whether the window frame should have a close button"
+msgstr ""
+
+#: gtk/gtkwindow.c:984
+msgid "Resize grip"
+msgstr ""
+
+#: gtk/gtkwindow.c:985
+msgid "Specifies whether the window should have a resize grip"
+msgstr ""
+
+#: gtk/gtkwindow.c:999
+msgid "Resize grip is visible"
+msgstr ""
+
+#: gtk/gtkwindow.c:1000
+msgid "Specifies whether the window's resize grip is visible."
+msgstr ""
+
+#: gtk/gtkwindow.c:1016
+msgid "Gravity"
+msgstr ""
+
+#: gtk/gtkwindow.c:1017
+msgid "The window gravity of the window"
+msgstr ""
+
+#: gtk/gtkwindow.c:1034
+msgid "Transient for Window"
+msgstr ""
+
+#: gtk/gtkwindow.c:1035
+msgid "The transient parent of the dialog"
+msgstr ""
+
+#: gtk/gtkwindow.c:1055
+msgid "Attached to Widget"
+msgstr ""
+
+#: gtk/gtkwindow.c:1056
+msgid "The widget where the window is attached"
+msgstr ""
+
+#: gtk/gtkwindow.c:1064 gtk/gtkwindow.c:1065
+msgid "Decorated button layout"
+msgstr ""
+
+#: gtk/gtkwindow.c:1071 gtk/gtkwindow.c:1072
+msgid "Decoration resize handle size"
+msgstr ""
+
+#: gtk/gtkwindow.c:1078 gtk/gtkwindow.c:1079
+msgid "Width of resize grip"
+msgstr ""
+
+#: gtk/gtkwindow.c:1084 gtk/gtkwindow.c:1085
+msgid "Height of resize grip"
+msgstr ""
+
+#: gtk/gtkwindow.c:1107
+msgid "GtkApplication"
+msgstr ""
+
+#: gtk/gtkwindow.c:1108
+msgid "The GtkApplication for the window"
+msgstr ""
+
+#: modules/printbackends/cups/gtkprintercups.c:93
+msgid "Color Profile Title"
+msgstr ""
+
+#: modules/printbackends/cups/gtkprintercups.c:94
+msgid "The title of the color profile to use"
+msgstr ""
diff --git a/tests/autotestkeywords.log b/tests/autotestkeywords.log
new file mode 100644
index 0000000..e69de29
diff --git a/tests/autotestkeywords.trs b/tests/autotestkeywords.trs
new file mode 100644
index 0000000..3f0f396
--- /dev/null
+++ b/tests/autotestkeywords.trs
@@ -0,0 +1,4 @@
+:test-result: PASS
+:global-test-result: PASS
+:recheck: no
+:copy-in-global-log: no
diff --git a/tests/test-suite.log b/tests/test-suite.log
new file mode 100644
index 0000000..6851a1c
--- /dev/null
+++ b/tests/test-suite.log
@@ -0,0 +1,14 @@
+=======================================
+   gtk+ 3.10.3: tests/test-suite.log
+=======================================
+
+# TOTAL: 1
+# PASS:  1
+# SKIP:  0
+# XFAIL: 0
+# FAIL:  0
+# XPASS: 0
+# ERROR: 0
+
+.. contents:: :depth: 2
+


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]